@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Lobster);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,greek-ext);

/* *********** COMMON *********** */
* {
    box-sizing: border-box;
}

html {
}

body {
    font-family: 'Roboto', sans-serif;
    background: #eff3f4;
    font-size: 16px;
    line-height: 1.15;
}

a,a:hover {
    color: #b06d11;
}

a, a:visited, a:hover, a:active {
    text-decoration:none !important;
}


/* *********** HEADER *********** */
header {
    background-color: #222438;
}

#navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
    margin: 0 auto;
}

.logo-and-like {
    text-align: center;
    padding-bottom: 0.5em;
}

a#logo {
    color: #b06d11;
    font-family: 'Lobster', cursive;
    font-size: 2.5em;
    margin: 0.2em 0;
}

a#logo:hover, a#logo:active, a#logo:focus {
    color: #f79f25;
}

.fb-like {
    display: inline-block;
    display: none;
    width: 99px;
}

ul#nav-wide {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

ul#nav-wide li {
    margin: 0em 0.3em;
}

ul#nav-wide li a {
    font-size: 1.125em;
    color: #fff;
    padding:0.5em 1em;
    border: 1px solid transparent;

}

ul#nav-wide li a:hover,
ul#nav-wide li a:active,
ul#nav-wide li a:focus,
ul#nav-wide li a.active
{
    background: #f79f25;
    border-color: #b06d11;
    border-radius: 0.5em;
    color: #000;
}

#select-box-wrapper {
    align-self: flex-start;
}

#select-box {
    background-color: #b06d11;
    border-bottom-right-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
    padding: 0.5em;
}

#select-box select {
    /*margin: 1em;*/
}

.flag-icon {
    margin-right: 0.5em;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto;
}




/* *********** MENU *********** */
:root {
    --screen-width: 320px;
    --screen-height: 260px;
    --header-bg-color: #673AB7;
    --splash-bg-color: #777996;
}

.nav__toggle {
    display: inline-block;
    position: absolute;
    z-index: 10;
    padding: 0;
    border: 0;
    background: transparent;
    outline: 0;
    right: 20px;
    top: 12px;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: background-color .15s linear;
    transition: background-color .15s linear;
}
.nav__toggle:hover, .nav__toggle:focus {
    background-color: rgba(0, 0, 0, 0.5);
}
.nav__menu {
    display: -webkit-box;
    display: flex;
    position: absolute;
    top:0;
    left:0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    height: var(--screen-height);
    /*position: relative;*/
    z-index: 5;
    visibility: hidden;
    width:100%;
    list-style-type: none;
    margin-top: 20vh;
    padding-left: 0;
}
.nav__item {
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0, 0.995, 0.99, 1) 0.3s;
    transition: all 0.3s cubic-bezier(0, 0.995, 0.99, 1) 0.3s;
}
.nav__item:nth-child(1) {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
}
.nav__item:nth-child(2) {
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
}
.nav__item:nth-child(3) {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
}
.nav__item:nth-child(4) {
    -webkit-transform: translateY(-160px);
    transform: translateY(-160px);
}
.nav__item:nth-child(5) {
    -webkit-transform: translateY(-200px);
    transform: translateY(-200px);
}
.nav__link {
    color: white;
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 2em;
    text-decoration: none;
    padding: 1rem;
}
.nav__link:hover, .nav__link:focus, .nav__link.active:hover {
    outline: 0;
    background-color: rgba(94,97,126, 0.7);
    color:rgba(198,194,177, 1);
}
.nav__link.active {
    background-color: rgba(94,97,126, 1);
    color:rgba(198,194,177, 1);

}

.menuicon {
    display: block;
    cursor: pointer;
    color: white;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menuicon__bar, .menuicon__circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
}
.menuicon__bar {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}
.menuicon__circle {
    -webkit-transition: stroke-dashoffset .3s linear .1s;
    transition: stroke-dashoffset .3s linear .1s;
    stroke-dashoffset: 144.513262038;
    stroke-dasharray: 144.513262038;
}

.splash {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 1px;
    height: 1px;
    z-index: 4;
}
.splash::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
    background-color: var(--splash-bg-color);
    width: 284vmax;
    height: 220vmax;
    top: -142vmax;
    left: -142vmax;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: -webkit-transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition: transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06), -webkit-transform 0.5s cubic-bezier(0.755, 0.05, 0.855, 0.06);
    will-change: transform;
}

.nav:target > .splash::after,
.nav--open > .splash::after {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.nav:target .menuicon,
.nav--open .menuicon {
    color: white;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.nav:target .menuicon__circle,
.nav--open .menuicon__circle {
    stroke-dashoffset: 0;
}
.nav:target .menuicon__bar:nth-child(1), .nav:target .menuicon__bar:nth-child(4),
.nav--open .menuicon__bar:nth-child(1),
.nav--open .menuicon__bar:nth-child(4) {
    opacity: 0;
}
.nav:target .menuicon__bar:nth-child(2),
.nav--open .menuicon__bar:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav:target .menuicon__bar:nth-child(3),
.nav--open .menuicon__bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav:target .nav__menu,
.nav--open .nav__menu {
    visibility: visible;
}
.nav:target .nav__item,
.nav--open .nav__item {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* *********** MAIN *********** */
main {
    margin: 0 auto;
    padding: 1em 0;
    text-align: center;
}

main > *:not(img) {
    /* margin-left:1em; */
    /* margin-right:1em; */
}

main h1 {
    font-weight: bold;
    margin: 0;
    margin-bottom: 2rem;
    padding: 0.2em 0em;
    color: #f79f25;
    color: #6d7091;
    color: #222438;
    color: #4b4e6d;
    color: #b06b13;
    /*color: #f79f25;*/
    /*color: #fff;*/
    border-radius: 0em;
    display:inline-block;
    background-color: #eff3f4;
    margin: 0 auto;
    margin-bottom: 2rem;
    font-size: 3em;
    -webkit-text-stroke: 1px #222438;
    text-shadow: 2px 3px 6px rgba(109,112,145,0.5);
}

.main-title {
    display: flex;
}

.main-text1 {
    display: flex;
    text-align: center;
    background-color: #d4d8dc;
    color: #000;
    padding: 1em;
    margin-bottom: 1em;
    justify-content: center;
}

.main-text1 p {
    /*background-color: #0d6632;*/
    font-weight: bold;
    line-height: 1.5em;
    font-size: 2em;
    margin-bottom: 0;
}



#answers {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5em;
}

#answers.image-answers {
    flex-direction: row;
    flex-wrap: wrap;
}

#answers a {
    margin: 0.2em 0;
    background-color: #d4e2e6;
    border-radius: 0.5em;
    padding: 0.5em 1em;
    display: inline;
    font-size: 2em;
    color: #000;
    box-shadow: 2px 3px 6px rgba(109,112,145,0.5);
    font-weight: bold;
    border: 2px solid #d4e2e6;
}

#answers.image-answers a {
    margin: 0.2em;
}

#answers a:hover, #answers a:active {
    background-color: #f79f25;
    outline: 2px #000;
    box-shadow: 0 0 0;
    box-shadow: 0px 0px 6px rgba(109,112,145,0.5);
    border: 2px solid #000;
}


/* *********** CONTACT *********** */
#frm-contactForm table {
    margin: 0 auto;
}

div.flash {
    color: black;
    background: #FFF9D7;
    border: 1px solid #E2C822;
    padding: 1em;
    margin: 1em 0.5em;
}



/* *********** APPLICATION LIST *********** */
#application-list {
    display: flex;
    flex-wrap: wrap;
    /*background-color: gray;*/
    justify-content: space-around;
}

#application-list a {
    flex-grow: 0;
    flex-basis: 24%;
    /*padding: 0.2em;*/
    /*background-color: #fff;*/
    position: relative;
    /*color: white;*/
    /*display: block;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5em;
    /*margin: 0.5em 0 0 0.5em;*/
    border: 1px solid #222438;
}

#application-list a img {
    width: 100%;
    /*max-height: 100%;*/
    /*max-width: 100%;*/
    /*max-height: 5em;*/
}

#application-list h2 {
    /*position: absolute;*/
    /*bottom:0;*/
    /*background-color: #2b2d44;*/
    background-color: #d3d6d7;
    font-size: 1.5em;
    font-weight: bold;
    /*display: block;*/
    /*text-align: center;*/
    /*margin-top: auto;*/
    color: #000;
    padding: 0.5em 0.5em;
    line-height: 130%;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /*box-shadow: 0 0 0.6em rgba(33,33,33,0.7);*/
    box-shadow: 0 -11px 15px -15px black;
    justify-content: center;
    border-top: 1px solid #a9acac;
}

#application-list a:hover, #application-list a:active, #application-list a:focus {
    border-color: #777996;
    box-shadow: 0 0 0.6em rgba(33,33,33,0.7);
}


#application-list a:hover h2 {
    border-top-color: #545656;
    background-color: #fff;
}

#application-list a:focus h2 {
    border-top-color: #744b11;
    background-color: #f79002;
    color: #000;
}

#application-list a:active h2 {
    border-top-color: #bd7a1c;
    background-color: #cb831e;
    color: #000;
}


.application-image {
    vert-align: middle;
    display: inline-block;
    margin-top: 1em;
    box-shadow: 0 0 1.0em rgba(33,33,33,0.5);
}

/* *********** APPLICATION RESULT *********** */
#application-result {
    text-align: center;

}

main #application-result h1 {
    margin-bottom: 0em;
}

.result-value-circle {
    background: #b06d11;
    /*background: #37840d;*/
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 0;
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    width: 100%;
    border: 1em dashed #222438;
    box-sizing: content-box;
    margin-left: -1em;
    /*outline: 1em solid black;*/

}

.result-value-circle-content {

    -webkit-text-stroke: 2px #222438;
    font-weight: bold;
    align-items: stretch;
    display: flex;
    height: 100%;
    hyphens: auto;
    justify-content: center;
    left: 50%;
    padding: 0.2em;
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 100%;
    font-size: 4em;
    text-shadow:
            1px 0px 15px rgba(255,255,255,0.2),
            0px 1px 15px rgba(255,255,255,0.2),
            -1px 0px 15px rgba(255,255,255,0.2),
            0px -1px 15px rgba(255,255,255,0.2);
    flex-direction: column;
}

.result-value-circle-content span {
    font-size: 3rem;
    display: block;
    /*max-width: 80%;*/
    margin: 0 auto;
    -webkit-text-stroke: 1px #222438;
    text-align: center;
    display: none;
}

.result-value-container {
    /*max-width: 66vmin;*/
    max-width: 10em;
    /*width: 66%;*/
    margin: 0 auto;
}

/*.result-value {
    width: 4em;
    height: 4em;
    border-radius: 50%;
    display: inline-block;
    background-color: #0e90d2;

}*/

.result-info {
    /*width: 15em;*/
    border-radius: 1rem;
    background-color: #ccc;
    background-color: #d3d6d7;
    border: 5px solid #999;
    border-color: #222438;
    border-color: #74a68a;
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    margin: 1em auto;
}

.result-info-no {
    border-color: #caa7a1;
}

.result-info div:first-child {
    padding: 0.3em 0;
    /*box-shadow: 0px 2px 10px rgba(0,0,0,1);*/
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    border-radius: 0.5rem 0.5rem 0 0;
    padding-left: 2.2em;
}

.result-info-yes div:first-child {
    background: url(../images/layout/like-yes2.png) 0.4em 50% no-repeat
, url(../images/layout/icon-applaud2.png) right 0.4em top 50% no-repeat;
    background-color: #0d6632;
    background-size: 1em;
    padding-right: 2.2em;

}

.result-info-no div:first-child {
    background: url(../images/layout/like-no2.png) 0.4em 50% no-repeat
    , url(../images/layout/icon-sad.png) right 0.4em top 50% no-repeat;
    background-color: #882311;
    background-size: 1em;
    padding-right: 2.2em;

}

.result-info div:last-child {
    /*background-color: #ccc;*/
    padding: 0.2em 0;
    font-size: 1.5em;
    font-weight: bold;
}

.result-info div.medal {
    background:  0.65em 50% no-repeat;
    background-size: 1.1em;
    padding-left: 1.75em;
}

.result-info div.medal-1 {
    background-image: url(../images/layout/medal-1.png);
}
.result-info div.medal-2 {
    background-image: url(../images/layout/medal-2.png);
}

.result-info div.medal-3 {
    background-image: url(../images/layout/medal-3.png);
}

.result-info div.no-medal {
    padding-left: 0;
}

main #application-result .image {
    display: block;
    margin: 1em auto;
    /* margin-bottom: 0.5em; */
    box-shadow: 0 0 0.6em rgba(33,33,33,0.7);
    max-width: 800px;
}



/************ BUTTONS ************************/
.buttons-wrapper {
    display: inline-flex;
    flex-direction: column;
    margin-top: 1em;
}

.buttons-wrapper span:first-child {
    text-align: left;
    display: inline-block;
    padding-left: 2.3em;
    /*text-transform: uppercase;*/
    background: url(../images/layout/icon-share.png) 1.1em 50% no-repeat;
    background-size: 0.8em;
}
.buttons {
    display: inline-flex;
    flex-direction: column;
    margin: 1em 0;
    margin-top: 0.3rem;
    align-items: center;
    background-color: #e6eaec;
    padding: 0 1em;
    border-radius: 1em;
    border: 2px dashed #c2c6cb;
}
.buttons2 {
    display: inline-block;
    margin: 1em 0;
    margin-top: 0.3rem;
    align-items: center;
    background-color: #e6eaec;
    padding: 0 1em;
    border-radius: 1em;
    border: 2px dashed #c2c6cb;
}

a.button {
    padding: 0.3em 0.4em;
    border-radius: 0.3em;
    display: inline-block;
    border-width: 0.1em;
    border-style: solid;
    border-color: #cacdd2;
    color: #fff;
    font-weight: bold;
    font-size: 1.8em;
    margin-top: 1rem;

}

a.button:last-child {
    margin-bottom: 1rem;
}

a.button:hover, a.button:active, a.button:visited, a.button:focus {
    color: #fff;
    box-shadow: 0px 0px 10px rgba(109,112,145,0.5);
    text-decoration: none;
}

/* FB */
a.button-share-fb {
    background: #1877f2 url(../images/layout/fb.png) 0.5em 50% no-repeat;
    background-size: 1em;
    padding-left: 2em;
}

a.button-share-fb:hover, a.button-share-fb:active, a.button-share-fb:focus {
    /*color: #fff;*/
    /*outline: 2px #000;*/
    /*text-shadow: 2px 2px 6px rgba(109,112,145,0.7);*/
    /*box-shadow: 0px 0px 6px rgba(109,112,145,0.5);*/
    /*box-shadow: 0px 0px 6px rgba(109,112,145,0.5);*/
    background-color: #1154ab;
}

/* TRY AGAIN */
a.button-try-again {
    background: #0d6632 url(../images/layout/icon-try-again.png) 0.5em 50% no-repeat;
    background-size: 1em;
    padding-left: 2em;
    font-size: 1.7em;
    /*border-width: 3px;*/
    /*font-weight: normal;*/

}

a.button-try-again:hover, a.button-try-again:active {
    background-color: #094823;
}

/* CONTINUE */
a.button-continue {
    background: #780f38 url(../images/layout/icon-continue.png) 0.5em 50% no-repeat;
    background-size: 1em;
    padding-left: 2em;
    font-size: 1.7em;
    /*border-width: 3px;*/
    /*font-weight: normal;*/

}

a.button-continue:hover, a.button-continue:active {
    background-color: #5c0b2b;
}

/* MESSENGER */
a.button-messenger {
    background: #0084ff url(../images/layout/messenger2.png) 0.5em 50% no-repeat;
    /*background-color: #9b9d9e;*/
    background-size: 1em;
    padding-left: 2em;
    font-size: 1.2em;
    color: #fff;
    font-weight: normal;
    /*border-width: 3px;*/
}

a.button-messenger:hover, a.button-messenger:active {
    background-color: #1462c7;
}

/* TWITTER */
a.button-twitter {
    background: #1da1f2 url(../images/layout/twitter.png) 0.5em 50% no-repeat;
    background-size: 1em;
    padding-left: 2em;
    color: #fff;
    /*font-weight: normal;*/
    /*border-width: 3px;*/
}

a.button-twitter:hover, a.button-twitter:active, a.button-twitter:focus {
    background-color: #1da1f2;
}





/* *********** FOOTER *********** */
footer{
    background: url('../images/layout/bg.png');
}

#footer {
    margin: 0 auto;
    padding: 0.5em 0px;
    font-size: 1.2em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#footer a{
    color: #333;
}

#footer a:hover{
    color: #f79f25;
}

#footer p{
    /*margin-top: 30px;*/
    text-align: center;
}


/* *********** PAGINATION *********** */
.pagination{
    display: block;
    margin: auto;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0em;
    /* margin-top: 30px; */
}

.pagination:after {
    content: '';
    clear: both;
}

.pagination>li.active>a{
    background: #f79f25 !important;
    border-color: #fff;

}

.pagination>li.active>a:hover, .pagination>li.active>a:active {
    border-color: #222438 !important;
}

.pagination>li>a{
    background: #222438 !important;
    border-color: #222438 !important;
    color: white !important;
}

.pagination>li>a:hover, .pagination>li>a:active{
    background: #3b5998 !important;
    background: #f79f25 !important;
    border-color: #171826;
    border-color: #fff !important;
    color: #fff;
    box-shadow: 0 0 0.4em rgba(33,33,33,0.5);
}

.pagination>li{
    display: none;

}

.pagination>li>a:hover{
    /*background: #222438;*/
}

.pagination>li:first-of-type{
    float: left;
}

.pagination>li:last-of-type{
    float: right;
}

.pagination>li:first-of-type,
.pagination>li:last-of-type{
    display: inline-block;
}

.pagination>li>a{
    background: transparent;
    color: #f79f25;
    font-size: 18px;
}

.pagination>li>a>span{
    font-size: 16px;
}

.pagination>li>a>i{
    margin:0px 10px;
}

.pagination>li>a:hover{
    color: #b06d11;
}

.pagination>li:first-child>a, .pagination>li:first-child>span{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.pagination>li:last-child>a, .pagination>li:last-child>span{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
/*/PAGINATOR*/



/* *********** ARROW *********** */
.arrow {
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.arrow-right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.arrow-left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.arrow-up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.arrow-down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


/* *********** MIN 1200 *********** */
@media (min-width: 1170px) {
    #navigation {
        width: 1170px;
    }

    main {
        width: 1170px;
    }

    #footer {
        width: 1170px;
    }
}

/* *********** MOBILES & TABLETS ***********  */
@media (max-width: 700px) {
    ul#nav-wide {
     display: none;
    }
    nav#nav {
        /*margin: 0 auto;*/
        width: 50px;
    }

    #select-box-wrapper {
        /*margin: 0 auto;*/
    }

    #navigation {
        justify-content: space-between;
    }

    #application-list {
        justify-content: space-between;
        padding: 0 0.0em;
    }
    #application-list a {
        flex-basis: 31.5%;
    }

    #frm-contactForm-message {
        width: 90%;
    }

    .application-image {
        width: 100%;
        /*margin: 0 -1em 0 -1em;*/
    }

    #application-list a:hover h2 {
        border-top-color: #744b11;
        background-color: #f79002;
        color: #000;
    }
}

/* *********** MOBILES ONLY ***********  */
@media (max-width: 479px) {
    a#logo {
        font-size: 1.9em;
        margin: 0em 0;
    }
    #navigation {
        padding: 0 0.0em;
    }

    .btn {
        padding: 3px 12px;
    }
    #select-box-wrapper {
        margin: 0;
    }

    .nav__toggle {
        top: 5px;
        right: 10px;
    }

    #application-list a {
        flex-basis: 49%;
    }

    #application-list {
        justify-content: space-between;
    }


    main #application-result .image {
        width: 100%;
    }

    #navigation {
        justify-content: space-between;
    }

    .logo-and-like {
        margin-left: 0.5em;
        margin-top: 0.3em;
    }

    #footer {
        flex-direction: column;
    }

    #footer p {
        margin-top: 1em;
    }



    .buttons {
        width: 100%;
        /* margin: 1em -2em; */
    }

    .button {
        margin-top: 1.5rem;
    }

    .button:last-child {
        margin-bottom: 1.5rem;
    }

    .button-share-fb {
        font-size: 1.5em;
    }

    .button-twitter {
        font-size: 1.5em;
    }

    .button-messenger {
        font-size: 1em;
    }


}


/* *********** DESKTOP ***********  */
@media (min-width: 701px) {
    nav#nav {
        display: none;
    }

    .pagination>li{
        display: inline-block;
    }
}



