body {
    background: #fff;
    color: #000;
    font-family: "Open Sans", sans-serif;
}

html, body {
    overflow-x: hidden;
}

a {
    color: #1b4552;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #000000;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    transition: background 0.5s;
    z-index: 11;
    bottom: 40px;
}

.back-to-top i {
    padding-top: 12px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader img {
    position: fixed;
    width: 70px;
    height: 60px;
    right: 0;
    bottom: 0;
    top: calc(50% - 30px);
    left: calc(50% - 35px);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #8a45ce;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5767b6;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2b85a1;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 10px 0 0 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    padding-right: 20px;
    margin: 0;
    transition: all 0.5s;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #2b85a1;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 18px 10px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

#mobile-nav-toggle.header-scrolled i {
    color: #000;
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
    color: #2b85a1;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #2b85a1;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #2b85a1;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #2b85a1;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

@media (max-width: 700px) {

    #mobile-nav-toggle i {
        color: #000;
    }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 32px;
    color: #2b85a1;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.section-bg-dark {
    background: #d6d6d6;
}

@media (max-width: 1450px) {

    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
}

@media (max-width: 900px) {

    .section-header h3 {
        font-size: 22px;
    }
}

@media (max-width: 700px) {
    #mobile-nav-toggle {
        margin: 8px 10px 0 0;
        font-size: 22px;
    }

    #mobile-nav {
        padding-top: 50px;
        left: -260px;
        width: 260px;
    }

    .section-header h3 {
        font-size: 18px;
        padding-bottom: 0;
    }
}


/*----------------------------------------
 Header
--------------------------------------------*/

#header {
    padding: 0;
    height: 72px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(255, 255, 255, 0.9);
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 1);
    padding: 5px 0;
    height: 72px;
    transition: all 0.5s;
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

#header #logo {
    width: 50%;
    float: left;
    transition: all 0.5s;
}

#header.header-scrolled #logo {
    /*padding: 0 100px;*/
    transition: all 0.5s;
}

#header.header-scrolled a {
    color: #000000;
}

#header.header-scrolled .nav-menu li:hover > a,
#header.header-scrolled .nav-menu > .menu-active > a {
    color: #2b85a1;
}

#header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
}

#header #logo img {
    height: auto;
    padding-top: 10%;
    padding-left: 25%;
    padding-right: 30%;
    width: 100%;
    transition: all 0.5s;
}

#header.header-scrolled #logo img {
    padding-top: 2px;
    padding-left: 0;
    padding-right: 0;
    width: 272px;
    height: auto;
    transition: all 0.5s;
}

.language {
    padding-bottom: 2px;
    color: #2b85a1;
}

@media (max-width: 1450px) {

    #header {
        background: rgba(255, 255, 255, 0);
    }
}

@media (max-width: 1050px) {

    #header #logo h1 {
        font-size: 28px;
    }
}

@media (max-width: 700px) {

    #header {
        height: 50px;
    }

    #header #logo {
        width: 100%;
    }

    #header.header-scrolled {
        padding: 0 0;
        height: 50px;
    }

    #header #logo img {
        max-height: none;
        max-width: none;
        height: auto;
        padding-top: 15%;
        padding-right: 10%;
        padding-left: 10%;
        width: 100%;
        object-fit: contain;
    }

    #header.header-scrolled #logo img {
        padding-top: 7px;
        padding-left: 0;
        padding-right: 0;
        width: 181px;
        height: auto;
    }
}


/*----------------------------------------
 Intro
--------------------------------------------*/

#intro {
    background-size: cover;
    position: relative;
}

#intro .desktop-img {
    position: relative;
    width: 100%;
}

#drone-vid-mobile-iphone {
    display: none;
    position: relative;
    width: 100%;
}

#intro .scroll-container {
    position: absolute;
    margin-top: -320px;
    display: none;
}

#intro .scroll-icon {
    margin-top: 100px;
    width: 24px;
    height: 50px;
}

#intro .scroll-desktop {
    top: 0;
    right: 0;
    z-index: 3;
    margin-top: 38%;
    position: absolute;
}

#intro .scroll-desktop-title {
    margin-right: 20%;
}

#intro .scroll-desktop h2 {
    font-size: 38px;
}

#intro .scroll-desktop h3 {
    font-size: 30px;
}

#intro h3 {
    font-size: 22px;
    font-weight: 600;
    background: -webkit-linear-gradient(360deg, #2b85a1 30%, #8a45ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

#intro h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    background: -webkit-linear-gradient(360deg, #2b85a1 35%, #8a45ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

#intro .scroll-mobile-icon {
    width: 16px;
    height: 36px;
    margin-top: 30px;
    margin-bottom: 20px;
}

#intro:before {
    content: "";
    background: rgba(0, 0, 0, 0);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .intro-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

#clouds {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    margin-top: 25%;
}

#clouds img {
    width: 100%;

}

#drone-vid {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    margin-top: 15%;
    margin-left: 20%;
    width: 37%
}

#drone-mobile-vid {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    margin-top: 15%;
    margin-left: 20%;
    width: 37%
}

#static-drone {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    margin-top: 15%;
    margin-left: 20%;
    width: 37%
}

#static-drone img {
    width: 37%
}

.drone {
    position: absolute;
    left: 0;
    margin-top: 110px;
    margin-left: 200px;
    z-index: 3;
}

#expo {
    display: block;
    margin-left: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    margin-top: 100px;
    width: 85vw;
}

#expo-banner {
    display: block;
    margin-left: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 100%;
}

.animate-expo {
    -webkit-animation: ease;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: expo-run;
    -webkit-animation-duration: 1s;
    -webkit-animation-delay: 1s;
}

.animate-expo-reverse {
    -webkit-animation: ease;
    -webkit-animation-fill-mode: both;
    -webkit-animation-name: expo-run-reverse;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes expo-run {
    0% {
        right: -100%;
    }
    50% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

@-webkit-keyframes expo-run-reverse {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}

.closeBtn {
    display: block;
    margin-left: auto;
    position: absolute;
    cursor: pointer;
    width: 101px;
    height: 90px;
    top: 0;
    right: 0;
    z-index: 3;
    margin-top: 1%;
    margin-right: 1%;
    outline: none;
    content: url(../img/expo/close_icon.png);
}

.closeBtn:hover {
    content: url(../img/expo/close_icon_ON.png);
}

@media (max-width: 1300px) {

    .drone img {
        width: 80%;
    }

    #intro .scroll-container {
        position: absolute;
        margin-top: -220px;
    }

    #intro .scroll-desktop h2 {
        font-size: 32px;
    }

    #intro .scroll-desktop h3 {
        font-size: 24px;
    }
}

@media (max-width: 1600px) {
    .drone {
        margin-top: 40px;
        margin-left: 100px;
    }
}

@media (max-width: 1300px) {
    .drone {
        margin-top: 50px;
        margin-left: 150px;
    }
}

@media (max-width: 1050px) {

    .drone {
        margin-top: 50px;
        margin-left: 120px;
    }

    #intro .scroll-desktop h2 {
        font-size: 26px;
    }

    #intro .scroll-desktop h3 {
        font-size: 24px;
    }
}

@media (max-width: 900px) {

    #intro .scroll-desktop h2 {
        font-size: 22px;
    }

    #intro .scroll-desktop h3 {
        font-size: 18px;
    }

    .drone {
        display: none;
    }

    #intro .scroll-container {
        position: absolute;
        margin-top: -120px;
    }

    #intro .scroll-icon {
        display: none;
    }
}

@media (max-width: 700px) {

    #drone-vid {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        margin-top: 30%;
        margin-left: 10%;
        width: 80%
    }

    #clouds {
        display: none;
    }

    #intro .scroll-desktop-title {
        display: none;
    }

    #intro .scroll-container {
        margin-top: -25%;
        display: block;
    }

    .services-header {
        margin-top: 20px;
    }

    #static-drone {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        margin-top: 30%;
        margin-left: 10%;
        width: 80%
    }
}

/*----------------------------------------
 Text animation
--------------------------------------------*/

.intro-headline {
    margin-left: 30px;
    position: relative;
}

.heading-1 {
    opacity: 1;
    animation: headings-1-anim 7s infinite;
    text-align: right;
}

.heading-2 {
    opacity: 0;
    top: 0;
    position: absolute;
    animation: headings-2-anim 7s infinite;
    text-align: right;
}

.heading-3 {
    top: 0;
    opacity: 0;
    position: absolute;
    animation: headings-3-anim 7s infinite;
    text-align: right;
}

@keyframes headings-1-anim {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }
    3% {
        opacity: 1;
        transform: translateY(0)
    }
    30.3% {
        opacity: 1;
        transform: translateY(0)
    }
    33.3% {
        opacity: 0;
        transform: translateY(-100%)
    }
    100% {
        opacity: 0;
        transform: translateY(-100%)
    }
}

@keyframes headings-2-anim {
    0% {
        opacity: 0;
        top: 50%
    }
    33.3% {
        opacity: 0;
        top: 50%
    }
    36.3% {
        opacity: 1;
        top: 0
    }
    63.6% {
        opacity: 1;
        top: 0
    }
    66.6% {
        opacity: 0;
        top: -50%
    }
    100% {
        top: -50%;
        opacity: 0
    }
}

@keyframes headings-3-anim {
    0% {
        opacity: 0;
        top: 50%
    }
    66.6% {
        opacity: 0;
        top: 50%
    }
    69.6% {
        opacity: 1;
        top: 0
    }
    97% {
        opacity: 1;
        top: 0
    }
    100% {
        opacity: 0;
        top: -50%
    }
}

@media (max-width: 1500px) {
    .intro-headline {
        margin-left: 25px;
    }
}

@media (max-width: 1300px) {
    .intro-headline {
        margin-left: 15px;
    }

    .intro-headline h2 {
        font-size: 16px;
    }
}

@media (max-width: 1050px) {
    .intro-headline {
        margin-left: 10px;
    }

    .intro-headline h2 {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .intro-headline {
        display: none;
    }
}

/*----------------------------------------
 Services
--------------------------------------------*/

#services {
    background: #fff;
    background-size: cover;
    margin-top: -3%;
}

#services .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
}

.services-header h2 {
    color: #2b85a1;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
    position: relative;
    font-size: 36px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 0;
    padding-bottom: 0;
}

.services-header p {
    font-size: 16px;
    text-align: left;
    max-width: 500px;
}

.service-title {
    padding-bottom: 15px;
    display: flex;
}

.service-icon {
    width: 20%;
    height: 20%;
    object-fit: contain;
}

.service-icon-title {
    width: 80%;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.content-img-wrapper {
    width: 100%;
    position: relative;
}

.content-img {
    width: 100%;
    position: relative;
}

.first-image, .second-image, .first-image-left, .second-image-left {
    width: 100%;
    min-height: 700px;
    position: relative;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.first-image-left, .second-image-left {
    background-position: left;
}

.second-image, .second-image-left {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 1s 0.3s;
    opacity: 0;
    z-index: -1
}

.second-image-left {
    right: 0;
}

.visible {
    opacity: 1;
    z-index: 2
}

.service-text {
    min-width: 500px;
    position: absolute;
    z-index: 3;
}

.culture-heritage-text {
    left: 0;
    margin-top: 1%;
    margin-left: 15%;
}

.real-estate-text {
    right: 0;
    margin-top: 7%;
    margin-right: 10%;
}

.inspections-text {
    right: 0;
    margin-top: 10%;
    margin-right: 10%;
}

.smart-city-text {
    left: 0;
    margin-top: 5%;
    margin-left: 15%;
}

.vr-ar-text {
    left: 0;
    margin-top: 10%;
    margin-left: 15%;
}

.solution-text {
    right: 0;
    margin-top: 10%;
    margin-right: 10%;
}

.culture-heritage-first-img {
    background-image: url(../img/services/culturalHeritage_OFF.jpg);
}

.culture-heritage-second-img {
    background-image: url(../img/services/culturalHeritage_ON.jpg);
}

.real-estate-first-img {
    background-image: url(../img/services/realEstate_OFF.jpg);
}

.real-estate-second-img {
    background-image: url(../img/services/realEstate_ON.jpg);
}

.smart-city-first-img {
    background-image: url(../img/services/smartCity_OFF.jpg);
}

.smart-city-second-img {
    background-image: url(../img/services/smartCity_ON.jpg);
}

.inspections-first-img {
    background-image: url(../img/services/inspections_OFF.jpg);
}

.inspections-second-img {
    background-image: url(../img/services/inspections_ON.jpg);
}

.vr-ar-first-img {
    background-image: url(../img/services/vR_OFF.jpg);
}

.vr-ar-second-img {
    background-image: url(../img/services/vR_ON.jpg);
}

.solution-first-img {
    background-image: url(../img/services/solutions_OFF.jpg);
}

.solution-second-img {
    background-image: url(../img/services/solutions_ON.jpg);
}


/*Mobile backgrounds*/

.culture-heritage-mobile-first-img {
    background-image: url(../img/services/culturalHeritage_OFF.jpg);
}

.culture-heritage-mobile-second-img {
    background-image: url(../img/services/culturalHeritage_ON.jpg);
}

.real-estate-mobile-first-img {
    background-image: url(../img/services/realEstate_OFF.jpg);
}

.real-estate-mobile-second-img {
    background-image: url(../img/services/realEstate_ON.jpg);
}

.smart-city-mobile-first-img {
    background-image: url(../img/services/smartCity_OFF.jpg);
}

.smart-city-mobile-second-img {
    background-image: url(../img/services/smartCity_ON.jpg);
}

.inspections-mobile-first-img {
    background-image: url(../img/services/inspections_OFF.jpg);
}

.inspections-mobile-second-img {
    background-image: url(../img/services/inspections_ON.jpg);
}

.vr-ar-mobile-first-img {
    background-image: url(../img/services/vR_OFF.jpg);
}

.vr-ar-mobile-second-img {
    background-image: url(../img/services/vR_ON.jpg);
}

.solution-mobile-first-img {
    background-image: url(../img/services/mobile_Solutions_OFF.jpg);
}

.solution-mobile-second-img {
    background-image: url(../img/services/mobile_Solutions_ON.jpg);
}

@media (max-width: 1600px) {

    .services-header h2 {
        font-size: 34px;
    }

    .services-header p {
        font-size: 14px;
        max-width: 400px;
    }

    .first-image, .second-image, .first-image-left, .second-image-left {
        min-height: 550px;
    }
}

@media (max-width: 1500px) {
    #services {
        margin-top: 0;
    }
}

@media (max-width: 1300px) {

    .services-header h2 {
        padding-bottom: 15px;
        font-size: 30px;
    }

    .services-header p {
        font-size: 12px;
        max-width: 400px;
    }

    .service-text {
        min-width: 500px;
    }

    .culture-heritage-text {
        margin-left: 5%;
    }

    .real-estate-text {
        min-width: 400px;
        margin-right: 5%;
    }

    .smart-city-text {
        margin-left: 5%;
    }

    .inspections-text {
        min-width: 400px;
        margin-right: 5%;
    }

    .vr-ar-text {
        margin-left: 5%;
    }

    .solution-text {
        min-width: 400px;
        margin-right: 5%;
    }
}

@media (max-width: 900px) {

    .services-header h2 {
        padding-bottom: 0;
        font-size: 22px;
    }

    .services-header p {
        font-size: 10px;
        max-width: 350px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .first-image, .second-image, .first-image-left, .second-image-left {
        min-height: 420px;
    }

    .service-text {
        position: relative;
        min-width: 400px;
    }

    .culture-heritage-text {
        margin-left: auto;
        margin-right: auto;
    }

    .real-estate-text {
        margin-left: auto;
        margin-right: auto;
    }

    .smart-city-text {
        margin-left: auto;
        margin-right: auto;
    }

    .inspections-text {
        margin-left: auto;
        margin-right: auto;
    }

    .vr-ar-text {
        margin-left: auto;
        margin-right: auto;
    }

    .solution-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    #services {
        margin-top: 80px;
    }
}

@media (max-width: 500px) {

    .services-header h2 {
        padding-bottom: 0;
        font-size: 16px;
    }

    .services-header p {
        font-size: 10px;
        max-width: 250px;
        padding-bottom: 0;
        margin-bottom: 10px;
    }

    .first-image, .second-image, .first-image-left, .second-image-left {
        min-height: 280px;
    }

    .service-text {
        min-width: 300px;
    }

    .culture-heritage-mobile-first-img {
        background-image: url(../img/services/mobile_culturalHeritage_OFF.jpg);
    }

    .culture-heritage-mobile-second-img {
        background-image: url(../img/services/mobile_culturalHeritage_ON.jpg);
    }

    .smart-city-mobile-first-img {
        min-height: 320px;
        background-image: url(../img/services/mobile_smartCity_OFF.jpg);
    }

    .smart-city-mobile-second-img {
        min-height: 320px;
        background-image: url(../img/services/mobile_smartCity_ON.jpg);
    }

    .real-estate-mobile-first-img {
        min-height: 310px;
        background-image: url(../img/services/mobile_realEstate_OFF.jpg);
    }

    .real-estate-mobile-second-img {
        min-height: 310px;
        background-image: url(../img/services/mobile_realEstate_ON.jpg);
    }

    .inspections-mobile-first-img {
        background-image: url(../img/services/mobile_inspections_OFF.jpg);
    }

    .inspections-mobile-second-img {
        background-image: url(../img/services/mobile_inspections_ON.jpg);
    }

    .vr-ar-mobile-first-img {
        min-height: 350px;
        background-image: url(../img/services/mobile_VR_OFF.jpg);
    }

    .vr-ar-mobile-second-img {
        min-height: 350px;
        background-image: url(../img/services/mobile_VR_ON.jpg);
    }

    .real-estate-container {
        margin-top: 30px;
    }

    .inspections-container {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .inspections-container-text {
        margin-top: 20px;
    }

    .vr-container {
        margin-top: 30px;
    }

    .solution-container {
        margin-top: 30px;
    }

    .solution-container-text {
        margin-top: 20px;
    }
}

/*----------------------------------------
 Advice
--------------------------------------------*/

#advice {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url(../img/bacground/bcg_slogan.jpg) fixed center center;
    background-size: cover;
    padding: 100px 0;
}

#advice h3 {
    color: #fff;
    margin: 0 0 5px 0;
}

#advice .cta-text-padding {
    padding-bottom: 160px;
}

#advice .wave:after {
    content: ' ';
    border-bottom: 100px solid #d6d6d6;
    border-right: 100vw solid transparent;
    width: 0;
    position: absolute;
    z-index: 3;
    margin-top: -118px;
}

@media (max-width: 900px) {

    #advice h3 {
        font-size: 16px;
    }

    #advice .cta-text-padding {
        padding-bottom: 140px;
    }

    #advice .wave:after {
        border-bottom: 50px solid #d6d6d6;
        margin-top: -69px;
    }
}

@media (max-width: 500px) {

    #advice {
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url(../img/bacground/bcg_slogan_mobile.jpg) fixed center center;
        padding: 50px 0;
    }

    #advice h3 {
        font-size: 10px;
    }

    #advice .cta-text-padding {
        padding-bottom: 120px;
    }

    #advice .wave:after {
        border-bottom: 25px solid #d6d6d6;
        margin-top: -94.5px;
    }
}

/*----------------------------------------
 Projects
--------------------------------------------*/

#projects {
    padding: 60px 0;
    z-index: 1;
    position: relative;
    margin-top: -120px;
}

#projects .projects-item {
    position: relative;
    overflow: hidden;
}

#projects .projects-item img {
    background: #2b85a1;
    overflow: hidden;
    max-width: 100%;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin-top: 30px;
}

#projects .projects-item img:hover {
    opacity: 0.4;
    transition: 0.3s;
}

#projects .projects-item .projects-info {
    text-align: left;
    padding: 30px;
    height: 120px;
}

#projects .projects-item .projects-info h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2b85a1;
}

#projects .projects-item .projects-info p {
    padding: 0;
    margin: 0;
    color: #000000;
    font-weight: 500;
    font-size: 12px;
}

.owl-carousel .nav-btn {
    height: 67px;
    width: 35px;
    position: absolute;
    cursor: pointer;
    top: 220px
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}

.owl-carousel .prev-slide {
    background: url("../img/icons/Arrow_Left.png") no-repeat scroll 0 0;
    left: -10%;
}

.owl-carousel .next-slide {
    background: url("../img/icons/Arrow_Right.png") no-repeat scroll 0 0;
    right: -10%;
}

@media (max-width: 1300px) {

    .owl-carousel .nav-btn {
        top: 230px;
    }

    .owl-carousel .prev-slide {
        left: -5%;
    }

    .owl-carousel .next-slide {
        right: -5%;
    }
}

@media (max-width: 1100px) {

    .owl-carousel .nav-btn {
        display: none;
    }

    .owl-nav,
    .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #fff;
    }

    .owl-dot.active {
        background-color: #2b85a1;
    }
}

@media (max-width: 900px) {

    #projects {
        padding: 20px 0;
    }

    #projects .projects-item .projects-info {
        padding: 10px;
        height: 60px;
    }

    #projects .projects-item .projects-info h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    #projects .projects-item .projects-info p {
        font-weight: 500;
        font-size: 12px;
    }
}

@media (max-width: 500px) {

    #projects {
        padding: 20px 0;
    }

    #projects .projects-item .projects-info {
        padding: 10px;
        margin-left: 10px;
        height: 40px;
    }

    #projects .projects-item .projects-info h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    #projects .projects-item .projects-info p {
        font-size: 10px;
    }

    #projects .projects-item img {
        margin-left: 20px;
    }

    #projects .projects-item img:hover {
        opacity: 1;
    }
}

/*----------------------------------------
 Technologies
--------------------------------------------*/

#technologies .section-header {
    margin-top: 40px;
}

#technologies .reference-item h3 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #2b85a1;
}

#technologies img {
    max-width: 150px;
    max-height: 107px;
}

.mobile-technology-img {
    display: none;
}

.technology-img-wrapper {
    width: 100%;
    position: relative;
}

.technology-img {
    margin-top: 3%;
    margin-bottom: 6%;
    width: 100%;
    position: relative;
}

.technology-base-image, .technology-other-image {
    width: 100%;
    min-height: 700px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.technology-other-image {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.2s 0.2s;
    opacity: 0.7;
    z-index: -1
}

.technology-row {
    width: 100%;
    position: absolute;
    top: 0;
    margin-top: -30px;
    z-index: 3
}

.technology-empty-row {
    min-width: 30%
}

.tech-visible {
    opacity: 1;
    z-index: 2
}

.technology-base {
    background-image: url(../img/technology/PIC_00_Base.jpg);
}

.technology-phone {
    background-image: url(../img/technology/PIC_01_Photogrammetry.jpg);
}

.technology-laser {
    background-image: url(../img/technology/PIC_02_Laser.jpg);
}

.technology-dtm {
    background-image: url(../img/technology/PIC_03_DTM.jpg);
}

.technology-aerial {
    background-image: url(../img/technology/PIC_04_Aerial.jpg);
}

.technology-training {
    background-image: url(../img/technology/PIC_05_Training.jpg);
}

.technology-optimisation {
    background-image: url(../img/technology/PIC_06_Optimisation.jpg);
}

.technology-bim {
    background-image: url(../img/technology/PIC_07_BIM.jpg);
}

.technology-dprint {
    background-image: url(../img/technology/PIC_08_Dprint.jpg);
}

.technology-ortho {
    background-image: url(../img/technology/PIC_09_Ortho.jpg);
}

.technology-game {
    background-image: url(../img/technology/PIC_10_Game.jpg);
}

@media (max-width: 900px) {

    .technologies-background {
        background-image: none;
        min-height: 600px;
    }

    #technologies .section-header {
        margin-top: 40px;
    }

    #technologies .reference-item h3 {
        font-size: 12px;
    }

    #technologies img {
        max-width: 120px;
    }
}

@media (max-width: 500px) {
    .technology-empty-row {
        min-width: 25%
    }

    .technologies-background {
        min-height: 420px;
    }

    #technologies .section-header {
        margin-top: 40px;
    }

    #technologies .reference-item h3 {
        font-size: 10px;
    }

    #technologies img {
        max-width: 80px;
        max-height: 57px;
    }

    .mobile-technology-img {
        display: block;
    }

    #technologies .mobile-technology-img img {
        min-width: 80%;
        max-height: 100%;
        margin-bottom: 50px;
        margin-top: 20px;
    }

    .technology-img {
        margin-bottom: 15%;
    }
}

/*----------------------------------------
 Clients
--------------------------------------------*/

#clients {
    background: url(../img/clients/Clients_Bcg.jpg) fixed center center;
    background-size: cover;
    padding: 40px 0;
}

#clients .cta-text {
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
    position: relative;
}

#clients .clients-icons img {
    max-width: 250px;
    max-height: 80px;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 10px;
}

#clients .clients-icons {
    margin: auto;
    width: 70%;
    padding-bottom: 30px;
    padding-top: 30px;
}

#clients .clients-padding {
    padding-bottom: 100px;
}

#clients .partners {
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 20px;
    margin-left: 20px;
}

#clients .partners {
    max-height: 150px;
}

#clients .partner-info h6 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0;
}

#clients .partner-info p {
    font-size: 12px;
    color: #fff;
}

#clients .partner-info-padding {
    padding-top: 8px;
}

#clients .split-line {
    height: 2px;
}

#clients .triangle:after {
    content: ' ';
    margin-top: -59px;
    border-bottom: 100px solid #fff;
    border-left: 100vw solid transparent;
    width: 0;
    position: absolute;
}

@media (max-width: 900px) {

    #clients .cta-text {
        font-size: 22px;
    }

    #clients h3 {
        margin-bottom: 0;
    }

    #clients .partners {
        padding-left: 10px;
        padding-right: 10px;
    }

    #clients .partners {
        max-height: 120px;
    }

    #clients .clients-icons img {
        max-height: 80px;
    }

    #clients .clients-padding {
        padding-bottom: 30px;
    }

    #clients .triangle:after {
        margin-top: -9px;
        border-bottom: 50px solid #fff;
    }

    #clients .partner-info h6 {
        font-size: 12px;
    }
}

@media (max-width: 500px) {

    #clients {
        background: url(../img/clients/bcg_clients_mobile.jpg) fixed center center;
    }

    @media not all and (min-resolution: .001dpcm) {
        #clients {
            background: url(../img/clients/bcg_clients_mobile.jpg) scroll center center;
        }
    }

    #clients .cta-text {
        font-size: 16px;
    }

    #clients h3 {
        margin-bottom: 0;
    }

    #clients .partners {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #clients .partners {
        max-height: 100px;
    }

    #clients .clients-icons img {
        max-height: 40px;
    }

    #clients .clients-padding {
        padding-bottom: 30px;
    }

    #clients .triangle:after {
        margin-top: -9px;
        border-bottom: 50px solid #fff;
    }

    #clients .partner-info h6 {
        font-size: 9px;
    }

    #clients .partner-info p {
        font-size: 9px;
    }
}

/*----------------------------------------
 References
--------------------------------------------*/

#reference {
    margin: 60px;
}

#reference .reference-item {
    padding: 0 30px 0 30px;
    margin: 15px 15px;
    text-align: center;
    align-items: center;
    min-height: 350px;
}

#reference .reference-item .reference-img {
    width: auto;
    height: 114px;
    border: 4px solid #fff;
    margin: 0 auto;
}

#reference .reference-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #2b85a1;
}

#reference .reference-item h4 {
    font-size: 18px;
    color: #2b85a1;
    margin: 0;
}

#reference .reference-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

#reference .owl-nav,
#reference .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#reference .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #aedcea;
}

#reference .owl-dot.active {
    background-color: #2b85a1;
}

@media (max-width: 900px) {

    #reference {
        margin: 20px;
    }

    #reference .reference-item {
        padding: 0 10px 0 10px;
        margin: 0 0;
    }

    #reference .reference-item .reference-img {
        height: 100px;
    }

    #reference .reference-item h3 {
        font-size: 16px;
    }

    #reference .reference-item h4 {
        font-size: 14px;
    }

    #reference .reference-item p {
        margin: 5px auto 5px auto;
    }

    #reference .owl-dot {
        width: 8px;
        height: 8px;
    }

    .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #fff;
    }
}

@media (max-width: 500px) {

    #reference {
        margin: 20px;
    }

    #reference .reference-item {
        padding: 0 10px 0 10px;
        margin: 0 0;
        min-height: 250px;
    }

    #reference .reference-item .reference-img {
        height: 70px;
    }

    #reference .reference-item h3 {
        font-size: 12px;
    }

    #reference .reference-item h4 {
        font-size: 10px;
    }

    #reference .reference-item p {
        font-size: 10px;
        margin: 5px auto 5px auto;
    }

    #reference .owl-dot {
        width: 8px;
        height: 8px;
    }

    .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #fff;
    }
}

/*----------------------------------------
 Footer
--------------------------------------------*/

#footer {
    background: #d6d6d6;
    padding: 0 0 30px 30px;
    color: #eee;
    font-size: 14px;
}

#footer img {
    height: 400px;
}

#footer .map-img {
    margin-bottom: 20px;
    margin-top: 20px;
}

#footer .footer-top {
    background: #d6d6d6;
    padding: 60px 0 30px 0;
}

#footer .footer-top p {
    font-size: 12px;
    margin-bottom: 0;
    padding-bottom: 20px;
    color: #000
}

#footer .address-col1 {
    max-width: 200px;
}

#footer .address-col2 {
    max-width: 230px;
}

#footer .left-col {
    max-width: 430px
}

#footer .footer-top .address {
    margin-left: 30px;
}

#footer .footer-top .address-title {
    color: #000000;
    text-transform: uppercase;
    font-size: 12px;
    padding-bottom: 0;
    margin-bottom: 0;
}

#footer .footer-top .address-bottom {
    margin-left: 15px;
}

#footer .footer-top .address-middle {
    margin-left: 20px;
}

#footer .footer-top .address-top {
    margin-left: 10px;
}

#footer .footer-top .address-column2 {
    margin-top: 177px
}

#footer a {
    color: #000;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b85a1;
    color: #fff;
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #1b4552;
    color: #fff;
}

#footer .footer-top .location-marker {
    width: 24px;
    height: 31px;
    margin-right: 10px;
}

#footer .footer-top .box-marker {
    display: flex;
    align-items: center;
}

#footer .footer-top span {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #000;
    position: relative;
}

#footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: #2b85a1;
    text-transform: uppercase;
    position: relative;
}

#footer .footer-top h5 {
    font-size: 16px;
    font-weight: bold;
    color: #2b85a1;
    position: relative;
}

#footer .copyright {
    font-size: 10px;
    text-align: left;
    color: #000;
    padding-top: 20px;
}

/* The side navigation menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    padding-top: 100px;
    transition: all 0.5s;
}

.rotate {
    display: none;
    background-image: url("../img/icons/ContactUs.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto 100%;
    height: 200px;
    right: 0;
    bottom: 0;
    margin-bottom: 40vh;
    position: fixed;
    z-index: 10;
}

.rotate-text {
    transform: rotate(-90deg);
    font-size: 15px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 80px;
    margin-right: -20px;
}

#contact-contact-us {
    display: block;
}

#contact-contact-us-mobile {
    display: none;
}

.address-desktop {
    margin-top: 10px;
}

@media (max-width: 1600px) {
    .rotate {
        height: 160px;
    }

    .rotate-text {
        font-size: 13px;
        margin-top: 68px;
    }
}

@media (max-width: 1250px) {
    #footer img {
        height: 340px;
    }
}

@media (max-width: 900px) {

    #footer img {
        height: 260px;
    }

    .rotate {
        height: 120px;
    }

    .rotate-text {
        font-size: 11px;
        margin-top: 50px;
    }

    #contact-contact-us {
        display: none;
    }

    #contact-contact-us-mobile {
        display: block;
    }
}

@media (max-width: 700px) {
    #footer a {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    #footer {
        padding: 0 0 30px 10px;
    }

    #footer img {
        height: 200px;
    }

    #footer .footer-top {
        padding: 30px 0 30px 0;
    }

    #footer .footer-top p {
        font-size: 8px;
        padding-bottom: 10px;
    }

    #footer .address-col1 {
        max-width: 150px;
    }

    #footer .address-col2 {
        max-width: 160px;
    }

    #footer .footer-top .address-middle {
        margin-left: 5px;
    }

    #footer .footer-top .address-top {
        margin-left: 10px;
    }

    #footer .footer-top .address-column2 {
        margin-top: 110px
    }

    #footer .footer-top .social-links a {
        font-size: 12px;
        width: 28px;
        height: 28px;
    }

    #footer .footer-top .social-links a:hover {
        background: #1b4552;
        color: #fff;
    }

    #footer .footer-top span {
        font-size: 10px;
    }

    #footer .footer-top h4 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    #footer .footer-top h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    #footer .copyright {
        font-size: 10px;
        padding-top: 20px;
    }

    #footer .copyright a {
        font-size: 8px;
    }

    #footer .footer-top .location-marker {
        width: 12px;
        height: 15px;
        margin-right: 10px;
    }

    .address-desktop {
        display: block;
    }

    #footer .footer-top .address {
        margin-left: 10px;
    }

    #footer .footer-top .address-bottom {
        margin-left: 15%;
    }

    .rotate {
        display: none;
    }

    #footer .footer-top .address-title {
        font-size: 8px;
    }
}


/*----------------------------------------
 Contact form
--------------------------------------------*/

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .gdpr {
    padding: 0;
    font-size: 16px;
    color: #2b85a1;
    display: inline;
    margin-bottom: 20px;
}

.sidenav .info {
    margin-bottom: 20px;
}

.sidenav .closebtn {
    right: 0;
    font-size: 36px;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

#contact {
    padding: 30px 0;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #2b85a1;
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}

#contact .form #sendmessage {
    color: #2b85a1;
    border: 1px solid #2b85a1;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

#contact .form button[type="submit"] {
    background: #2b85a1;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    min-width: 200px;
    cursor: pointer;
}

#contact .form button[type="submit"]:hover {
    background: #2b85a1;
}

#contact .form input[type="checkbox"]{
    border-radius:5px;
    background: #2b85a1;
}

/*----------------------------------------
 Sketchfab
--------------------------------------------*/

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?5hr16q');
    src: url('../fonts/icomoon.eot?5hr16q#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?5hr16q') format('truetype'),
    url('../fonts/icomoon.woff?5hr16q') format('woff'),
    url('../fonts/icomoon.svg?5hr16q#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-sketchfab:before {
    content: "\e900";
}

/*----------------------------------------
 Cookie
--------------------------------------------*/

.cookie-bar {
    bottom: 0;
    background: rgba(43,133,161, 0.8);
    clip-path: polygon(45px 0%, calc(100% - 45px) 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.2);
    margin-left: 200px;
    margin-right: 200px;
}

.tag-wrap {
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.4));
}

.cookie-table a {
    color: white;
    font-weight: 700;
}

.cookie-bar table {
    color: white;
    width: 100%;
}

.cookie-bar .info {
    font-size: 12px;
    padding-right: 20px;
    padding-left: 50px;
    width: 100vw;
}

.cookie-bar .cookie-inner {
    padding: 10px 20px;
    /*border-top: 1px #25292d solid;*/
}

.cookie-ok span {
    background: white;
    padding: 5px 45px;
    margin-right: 60px;
    display: inline-block;
    text-align: center;
    color: #2b85a1;
    box-shadow: 0 0 2px 2.5px rgba(0, 0, 0, 0.2);
}

.cookie-ok:hover span {
    background: #3E454C;
}

.cookie-desktop {
    display: table-cell;
}

.cookie-mobile {
    display: none;
}

@media screen and (max-width: 1700px) {
    .cookie-bar {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media screen and (max-width: 800px) {
    .cookie-bar {
        clip-path: polygon(45px 0%, calc(100% - 45px) 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
        margin-left: 80px;
        margin-right: 80px;
    }
}

@media screen and (max-width: 750px) {
    .cookie-ok span {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .cookie-bar {
        clip-path: polygon(45px 0%, calc(100% - 45px) 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
        margin-left: 0;
        margin-right: 0;
    }

    .cookie-desktop {
        display: none;
    }

    .cookie-mobile {
        display: table-row;
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    #expo {
        margin-top: 50%;
        width: 120%;
    }

    @-webkit-keyframes expo-run-reverse {
        0% {
            right: 0;
        }
        100% {
            right: -120%;
        }
    }

    .closeBtn {
        width: 50px;
        height: 45px;
        margin-top: 1%;
        margin-right: 1%;
    }
}

@media screen and (max-width: 400px) {
    .cookie-bar .cookie-inner {
        min-height: 100px;
    }
}

.cookie-table {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    border-collapse: collapse;
    width: auto;
}

.cookie-table td {
    margin: 0;
    padding: 0;
    font-weight: 300;
}

/*----------------------------------------
 Privacy policy
--------------------------------------------*/
#privacy-policy {
    margin-top: 100px;
    margin-bottom: 100px;
}

#privacy-policy a {
    color: #2b85a1;
}

#privacy-policy h2 {
    margin-top: 50px;
    color: #2b85a1;
}

#privacy-policy p {
    margin-bottom: 15px;
    margin-left: 20px;
}

#privacy-policy ul {
    list-style: none;
}

#privacy-policy ul li::before {
    content: "\2022";
    color: black;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

#privacy-policy .center {
    text-align: center;
}

#privacy-policy .topNull {
    margin-bottom: 10px;
}

#privacy-policy .tab {
    margin-left: 20px;
}