@import url('https://fonts.googleapis.com/css2?family=Gideon+Roman&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Gill Sans', 'Gill Sans MT', Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: auto;
}

header {
    background-color: #000000;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    transition: 1s ease-in-out;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
}

section#nav-left {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section#nav-left img {
    pointer-events: none;
}

header#nav section#nav-left div.toogle-button #active-icon, #desactive-icon {
    display: none;
}

nav#nav-right {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

nav#nav-right img, input {
    cursor: pointer;
    padding: 0;
    margin: 0;
    vertical-align: middle;
}

nav#nav-right input {
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 1em;
}

nav#nav-right a {
    text-decoration: none;
    color: #ffffff;
}

nav#nav-right div.nav-option a:hover {
    color: rgb(240, 0, 0);
    border-bottom: 1px solid rgb(240, 0, 0);
}

nav#nav-right div.nav-option a:active {
    border-bottom: 1px solid rgb(240, 0, 0);
}

nav#nav-right div.nav-option-lang a:hover > input {
    color: rgba(240, 0, 0, 1);
}

section#call-us-main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('photos/call-us-background.jpg');
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

section#call-us-topic {
    text-align: center;
    color: #ffffff;
    padding: 25px;
    text-shadow: 0px 3px 25px rgb(255, 35, 6);
}

section#call-us-topic h1 {
    font-size: 3em;
    margin: auto;
}

section#call-us-topic h2 {
    font-size: 2em;
}

section#call-us-topic p {
    font-size: 1.2em;
}

section#call-us-telephones {
    display: flex;
    justify-content: center;
    flex-direction: row;
    color: #000000;
}

section#call-us-telephones div.telephones {
    padding: 0 50px 0 50px;
    font-size: 24px;
}

section#call-us-telephones a {
    text-decoration: none;
    color: #ffffff;
    border-bottom: 2px solid rgb(240, 0, 0);
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

section#call-us-telephones a:hover {
    transform: scale(1.1);
}

section#slider {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

section#slider figure img {
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    pointer-events: none;
}

section#slider h1 {
    font-size: 2em;
    display: flex;
    flex-direction: row;
}

section#slider h1:before, 
section#slider h1:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgb(240, 0, 0);
    margin: auto 5% auto 5%;
}

section#slider h1:before {
    margin-right: 20px;
}

section#slider h1:after {
    margin-left: 20px;
}

section#slider figure.slider-element {
    display: flex;
    justify-content: center;
}

.slider-element img {
    box-shadow: 0 0 1em #000000;
    border-radius: 10px;
    max-width: 100%;
    height: 400px;
}

.slider-element a {
    width: 50px;
    background: none;
    border: none;
    font-size: 3em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
}

section#about-us {
    margin-top: 100px;
    scroll-margin-top: 100px;
}

section#about-us h1 {
    display: flex;
    flex-direction: row;
    font-size: 2em;
}

section#about-us h1:before, 
section#about-us h1:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgb(240, 0, 0);
    margin: auto 5% auto 5%;
}

section#about-us h1:before {
    margin-right: 20px;
}

section#about-us h1:after {
    margin-left: 20px;
}

section#about-us p {
    font-size: 20px;
    font-weight: 300;
    word-spacing: 5px;
    text-align: justify;
    font-family: 'Gideon Roman', cursive;
}

section#about-us div.about-us-text {
    margin: 50px 10% 0 10%;
}

section#about-us div.about-us-text h2 {
    font-size: 1.8em;
    font-family: 'Gideon Roman', cursive;
    font-weight: 500;
}

section#limiter {
    /*background: rgb(215,251,64);
    background: linear-gradient(0deg, rgba(215,251,64,1) 0%, rgba(255,33,13,1) 100%);*/
    background: rgb(255,33,13);
    background: linear-gradient(0deg, rgba(255,33,13,1) 0%, rgba(10,5,3,1) 100%);
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

section#limiter div.limiter-option {
    padding: 30px;
    width: 33.33%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@keyframes floating-elem {
    0% {
		transform: translatey(0px);
	}
    50% {
		transform: translatey(-5px);
	}
    0% {
		transform: translatey(0px);
	}
}

section#limiter div.limiter-option div.limiter-option-text {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    text-shadow: 6px 3px #000000;
    animation: floating-elem 2s infinite ease-in-out 0s;
    -webkit-animation: floating-elem 2s infinite ease-in-out 0s;
    -moz-animation: floating-elem 2s infinite ease-in-out 0s;
    -o-animation: floating-elem 2s infinite ease-in-out 0s;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
}

section#limiter div.limiter-option p {
    font-size: 1.2em;
    margin: auto;
}

section#offer {
    margin-top: 100px;
    scroll-margin-top: 100px;
}

section#offer h1 {
    display: flex;
    flex-direction: row;
    font-size: 2em;
}

section#offer h1:before, 
section#offer h1:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgb(240, 0, 0);
    margin: auto 5% auto 5%;
}

section#offer h1:before {
    margin-right: 20px;
}

section#offer h1:after {
    margin-left: 20px;
}

section#offer p {
    font-size: 20px;
    word-spacing: 5px;
    font-family: 'Gideon Roman', cursive;
}

section#offer div.offer-text div.offer-text-right h2 {
    font-size: 20px;
    word-spacing: 5px;
    font-family: 'Gideon Roman', cursive;
    font-weight: 500;
}

section#offer div.offer-text div.offer-text-right h2 span {
    border-bottom: 1px solid #000000;
    font-family: 'Gideon Roman', cursive;
}

section#offer div.offer-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 50px 10% 0 10%;
}

section#offer div.offer-text div.offer-text-left {
    width: 50%;
    padding-right: 100px;
}

section#offer div.offer-text div.offer-text-right {
    width: 50%;
    padding-left: 100px;
}

section#offer div.offer-text-right p::before {
    content: "-";
}

section#contact {
    margin-top: 100px;
    scroll-margin-top: 100px;
}

section#contact h1 {
    display: flex;
    flex-direction: row;
    font-size: 2em;
}

section#contact h1:before, 
section#contact h1:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgb(240, 0, 0);
    margin: auto 5% auto 5%;
}

section#contact h1:before {
    margin-right: 20px;
}

section#contact h1:after {
    margin-left: 20px;
}

section#contact div.contact-main {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin: 50px 10% 0 10%;
}

section#contact div.contact-main div.contact-main-left {
    width: 50%;
}

section#contact div.contact-main div.contact-main-right {
    width: 50%;
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-text {
    display: flex;
    flex-direction: row;
    align-items: center;
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-socials img {
    transition: all .8s ease-in-out;
    cursor: pointer;
    vertical-align: middle;
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-socials img:hover {
    transform: rotate(360deg);
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-socials div.socials-nav {
    padding-left: 30px;
    padding-right: 30px;
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-text img {
    margin-right: 20px;
}

section#contact div.contact-main div.contact-main-left 
h2#contact-company-data {
    font-size: 1.8em;
    word-spacing: 5px;
    font-family: 'Gideon Roman', cursive;
    font-weight: 500;
    margin-top: auto;
    text-align: center;
}

section#contact div.contact-main div.contact-main-left 
h2#contact-company-socials {
    font-size: 1.8em;
    word-spacing: 5px;
    font-family: 'Gideon Roman', cursive;
    font-weight: 500;
    text-align: center;
}

section#contact div.contact-main div.contact-main-left h2 span {
    border-bottom: 1px solid #000000;
    font-family: 'Gideon Roman', cursive;
}

section#contact div.contact-main div.contact-main-left 
div.contact-main-left-text p {
    font-family: 'Gideon Roman', cursive;
    word-spacing: 3px;
    font-size: 20px;
}

section#cookies-info {
    /*margin-top: 100px;
    border-bottom: 1px solid rgb(109, 108, 108);*/
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    position: fixed;
    bottom: 0;
    opacity: 0.8;
    width: 100%;
}

section#cookies-info p {
    margin: auto;
    padding: 15px 10% 15px 10%;
}

section#cookies-info p a {
    color: #ffffff;
}

section#cookies-info p a:hover {
    color: #bdbdbd;
}

section#cookies-info img {
    position: absolute;
    right: 30px;
    top: 10px;
    cursor: pointer;
}

footer {
    margin-top: 100px;
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

footer div#footer-menu {
    border-bottom: 1px solid rgb(109, 108, 108);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer div#footer-menu ol {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding-inline-start: 0;
}

footer div#footer-menu ol div.footer-menu-option {
    padding-left: 30px;
    padding-right: 30px;
}

footer div#footer-menu ol a {
    text-decoration: none;
    color: #ffffff;
}

footer div#footer-menu ol a li span:hover {
    color: rgb(240, 0, 0);
    border-bottom: 1px solid rgb(240, 0, 0);
}

footer div#footer-author p a {
    text-decoration: none;
    color: #ffffff;
}

footer div#footer-author p a:hover {
    color: #fadc05;
    text-shadow: -6px 4px 40px rgb(155, 255, 0);
}

/*MEDIA QUERY*/

@media only screen and (max-width: 1100px) {
    section#slider figure.slider-element img {
        max-width: 90%;
        height: 400px;
    }
    figure.slider-element a {
        padding: 10px;
    }
    section#contact div.contact-main {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    section#contact div.contact-main div.contact-main-left {
        width: 100%;
    }
    section#contact div.contact-main div.contact-main-right {
        margin-top: 50px;
        width: 100%;
        height: 400px;
    }
}

@media only screen and (max-width: 900px) {
    section#slider figure.slider-element img {
        max-width: 90%;
        height: 350px;
    }
    figure.slider-element a {
        padding: 20px;
    }
    section#about-us p {
        font-size: 19px;
        word-spacing: 4px;
    }
    section#about-us div.about-us-text h2 {
        font-size: 1.6em;
    }
    section#offer p {
        font-size: 19px;
        word-spacing: 4px;
    }
    section#offer div.offer-text div.offer-text-right h2 {
        font-size: 19px;
        word-spacing: 4px;
    }
    section#offer div.offer-text div.offer-text-left {
        padding-right: 80px;
    }
    section#offer div.offer-text div.offer-text-right {
        padding-left: 80px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-data {
        font-size: 1.6em;
        word-spacing: 4px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-socials {
        font-size: 1.6em;
        word-spacing: 4px;
    }
    section#contact div.contact-main div.contact-main-left 
    div.contact-main-left-text p {
        font-size: 19px;
    }
    section#limiter {
        display: flex;
        flex-direction: column;
    }
    section#limiter div.limiter-option {
        padding: 20px;
        width: 100%;
        border-bottom: 1px solid #000000;
        background: rgb(255,33,13);
        background: linear-gradient(0deg, rgba(255,33,13,1) 0%, rgba(10,5,3,1) 100%);
    }
    section#limiter div.limiter-option:last-child {
        border-bottom: none;
    }
    section#cookies-info p {
        padding: 15px 10% 15px 10%;
        font-size: 15px;
    }
}

@media only screen and (max-width: 800px) {
    section#slider figure.slider-element img {
        max-width: 90%;
        height: 300px;
    }
    figure.slider-element a {
        padding: 15px;
    }
    section#slider h1 {
        font-size: 1.7em;
    }
    section#about-us h1 {
        font-size: 1.7em;
    }
    section#offer h1 {
        font-size: 1.7em;
    }
    section#contact h1 {
        font-size: 1.7em;
    }
    section#offer div.offer-text div.offer-text-left {
        padding-right: 60px;
    }
    section#offer div.offer-text div.offer-text-right {
        padding-left: 60px;
    }
    section#limiter div.limiter-option div.limiter-option-text {
        font-size: 2.3em;
        text-shadow: 5px 3px #000000;
    }
    section#limiter div.limiter-option p {
        font-size: 1.1em;
    }
    section#cookies-info img {
        right: 20px;
        top: 10px;
    }
}

@media only screen and (max-width: 700px) {
    /*----------NAVIGATION HEADER----------*/
    header#nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    header#nav div.toogle-button {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        /*position: absolute;
        right: 50px;*/
    }
    header#nav nav#nav-right {
        /*display: none;*/
        /*position: absolute;
        right: -300px;
        top: 100px;*/
        margin-right: -300px;
        transition: all 0.6s ease-in-out;
        flex-direction: column;
        background-color: #000000;
        width: 40%;
    }
    header#nav nav#nav-right div.nav-option, div.nav-option-lang {
        padding: 10px;
        border-bottom: 1px solid rgb(26, 26, 26);
        width: 100%;
        text-align: center;
    }
    header#nav nav#nav-right div.nav-option:first-child {
        border-top: 1px solid rgb(26, 26, 26);
    }
    header#nav section#nav-left {
        width: 100%;
        height: 100%;
        padding: 20px 50px 20px 50px;
        display: flex;
        justify-content: space-between;
    }
    nav#nav-right div.nav-option a:hover {
        color: rgb(240, 0, 0);
        border: none;
    }
    nav#nav-right div.nav-option a:active {
        border: none;
    }
    header#nav section#nav-left div.toogle-button #active-icon {
        display: block;
    }
    header#nav section#nav-left div.toogle-button #desactive-icon {
        display: none;
    }
    /*----------NAVIGATION HEADER END----------*/
    section#call-us-topic h1 {
        font-size: 2.8em;
    }
    section#call-us-topic h2 {
        font-size: 1.8em;
    }
    figure.slider-element a {
        font-size: 2.3em;
        padding: 15px;
    }
}

/*----------NAVIGATION HEADER CONTINUED----------*/

@media only screen and (min-width: 701px) {
    header#nav div.toogle-button {
        display: none;
    }
}

/*----------NAVIGATION HEADER CONTINUED END----------*/

@media only screen and (max-width: 600px) {
    section#call-us-topic h1 {
        font-size: 2.5em;
    }
    section#call-us-topic h2 {
        font-size: 1.5em;
    }
    section#call-us-topic p {
        font-size: 1.1em;
    }
    section#call-us-telephones {
        display: flex;
        flex-direction: column;
    }
    section#call-us-telephones div.telephones {
        padding: 20px 0 20px 0;
        font-size: 24px;
    }
    section#call-us-telephones div.telephones:first-child {
        padding-top: 0;
    }
    section#slider figure.slider-element img {
        max-width: 90%;
        height: 270px;
    }
    figure.slider-element a {
        font-size: 2.3em;
        padding: 15px;
    }
    section#about-us p {
        font-size: 18px;
        word-spacing: 3px;
    }
    section#about-us div.about-us-text h2 {
        font-size: 1.4em;
    }
    section#offer p {
        font-size: 18px;
        word-spacing: 3px;
    }
    section#offer p:first-child {
        margin-top: auto;
    }
    section#offer div.offer-text div.offer-text-right h2 {
        font-size: 18px;
        word-spacing: 3px;
    }
    section#offer div.offer-text div.offer-text-left {
        padding-right: 0;
        width: auto;
    }
    section#offer div.offer-text div.offer-text-right {
        padding-left: 0;
        width: auto;
    }
    section#offer div.offer-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 50px 10% 0 10%;
    }
    footer div#footer-menu ol a li span {
        font-size: 15px;
    }
    footer div#footer-menu ol {
        padding-inline-start: 0;
    }
    footer div#footer-menu ol div.footer-menu-option {
        padding-left: 20px;
        padding-right: 20px;
    }
    footer div#footer-copyrights p {
        font-size: 15px;
    }
    footer div#footer-author p {
        font-size: 15px;
    }
    section#cookies-info img {
        right: 15px;
        top: 10px;
    }
    section#call-us-main {
        height: 100vh;
        background-size: 130%;
        background-position: left;
    }
}

@media only screen and (max-width: 500px) {
    section#call-us-main {
        height: 100vh;
        background-size: 150%;
        background-position: left;
    }
    section#call-us-topic h1 {
        font-size: 2.2em;
    }
    section#call-us-topic h2 {
        font-size: 1.4em;
    }
    section#call-us-topic p {
        font-size: 1.05em;
    }
    section#slider figure.slider-element img {
        max-width: 90%;
        height: 240px;
    }
    figure.slider-element a {
        font-size: 2.1em;
        padding: 15px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-data {
        font-size: 1.5em;
        word-spacing: 4px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-socials {
        font-size: 1.5em;
        word-spacing: 4px;
    }
    section#contact div.contact-main div.contact-main-left 
    div.contact-main-left-text p {
        font-size: 18px;
    }
    footer div#footer-menu ol a li span {
        font-size: 14px;
    }
    footer div#footer-menu ol div.footer-menu-option {
        padding-left: 15px;
        padding-right: 15px;
    }
    footer div#footer-copyrights p span::before {
        content: "\a";
        white-space: pre;
    }
    header#nav nav#nav-right div.nav-option a {
        font-size: 14px;
    }
    header#nav nav#nav-right div.nav-option-lang a {
        font-size: 14px;
    }
    section#cookies-info p {
        font-size: 14px;
        padding: 15px 20% 15px 10%;
        text-align: left;
    }
}

@media only screen and (max-width: 400px) {
    section#call-us-main {
        height: 100vh;
        background-size: 190%;
        background-position: left;
    }
    header#nav section#nav-left {
        width: 100%;
        height: 100%;
        padding: 20px 50px 20px 20px;
        display: flex;
        justify-content: space-between;
    }
    section#call-us-topic h1 {
        font-size: 2.3em;
    }
    section#call-us-topic h2 {
        font-size: 1.3em;
    }
    section#call-us-topic p {
        font-size: 1.05em;
    }
    section#call-us-telephones div.telephones {
        font-size: 22px;
    }
    section#slider figure.slider-element img {
        max-width: 80%;
        height: 220px;
    }
    section#slider figure.slider-element {
        margin: 20px auto auto auto;
    }
    figure.slider-element a {
        font-size: 1.8em;
        padding: 5px;
    }
    section#about-us p {
        font-size: 17px;
        word-spacing: 2px;
    }
    section#about-us div.about-us-text h2 {
        font-size: 1.3em;
    }
    section#offer p {
        font-size: 17px;
        word-spacing: 2px;
    }
    section#offer div.offer-text div.offer-text-right h2 {
        font-size: 17px;
        word-spacing: 2px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-data {
        font-size: 1.4em;
        word-spacing: 3px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-socials {
        font-size: 1.4em;
        word-spacing: 3px;
    }
    footer div#footer-menu ol {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    footer div#footer-menu ol div.footer-menu-option {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #000000;
        width: 100%;
    }
    footer div#footer-menu {
        background: rgb(0,0,0);
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,33,13,1) 100%);
        border: none;
    }
    footer div#footer-menu ol a li span:hover {
        color: #ffffff;
        border: none;
    }    
    footer div#footer-menu ol div.footer-menu-option:last-child {
        border: none;
        padding-bottom: 0;
    }
    footer div#footer-menu ol div.footer-menu-option:first-child {
        padding-top: 0;
    }
}

@media only screen and (max-width: 380px) {
    section#slider figure.slider-element img {
        max-width: 80%;
        height: 200px;
    }
    section#call-us-topic h2 {
        font-size: 1.25em;
    }
    section#call-us-topic h1 {
        font-size: 2.2em;
    }
    section#call-us-topic p {
        font-size: 1em;
    }
    section#cookies-info p {
        margin: auto;
        font-size: 13px;
        padding: 10px 20% 10px 5%;
    }
}

@media only screen and (min-height: 800px) {
    section#call-us-main {
        height: 100vh;
        background-size: 210%;
        background-position: left;
    }
}

@media only screen and (max-height: 450px) {
    section#call-us-topic h2 {
        font-size: 1.1em;
    }
    section#call-us-topic h1 {
        font-size: 2em;
    }
    section#call-us-topic p {
        font-size: 0.9em;
    }
    section#call-us-topic {
        margin-top: 60px;
    }
    section#slider figure.slider-element img {
        max-width: 80%;
        height: 220px;
    }
    section#about-us p {
        font-size: 15.5px;
    }
    section#about-us div.about-us-text h2 {
        font-size: 1.15em;
    }
    section#offer p {
        font-size: 15.5px;
    }
    section#offer div.offer-text div.offer-text-right h2 {
        font-size: 15.5px;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-data {
        font-size: 1.3em;
    }
    section#contact div.contact-main div.contact-main-left 
    h2#contact-company-socials {
        font-size: 1.3em;
    }
    section#contact div.contact-main div.contact-main-left 
    div.contact-main-left-text p {
        font-size: 16.5px;
    }
}

@media only screen and (max-height: 350px) {
    section#call-us-topic h2 {
        font-size: 1em;
    }
    section#call-us-topic h1 {
        font-size: 1.9em;
    }
    section#call-us-topic p {
        font-size: 0.85em;
    }
    section#call-us-topic {
        margin-top: 80px;
        padding-bottom: 0;
    }
    section#call-us-telephones div.telephones {
        font-size: 18px;
    }
    header#nav nav#nav-right div.nav-option a {
        font-size: 12px;
    }
    header#nav nav#nav-right div.nav-option-lang a {
        font-size: 12px;
    }
    header#nav nav#nav-right div.nav-option, div.nav-option-lang {
        padding: 6px;
    }
    section#slider figure.slider-element img {
        max-width: 80%;
        height: 180px;
    }
}

@media only screen and (max-width: 310px) {
    section#call-us-main {
        height: 100vh;
        background-size: 250%;
        background-position: left;
    }
    header#nav section#nav-left {
        padding: 20px 20px 20px 20px;
    }
    section#cookies-info p {
        padding: 10px 15% 10px 5%;
    }
    section#cookies-info img {
        right: 5px;
        top: 10px;
    }
}