﻿@charset "UTF-8";
/** Owl Carousel v2.2.1 Copyright 2013-2017 David Deutsch Licensed under  () */
/* Owl Carousel - Core */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    /* z-index: 1; */
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: pan-Y;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* fix firefox animation glitch */
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        /* fix for flashing background */
        -webkit-transform: translate3d(0px, 0px, 0px);
        transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -transform: translate3d(0, 0, 0);
        position: relative;
        min-height: 1px;
        float: left;
        backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        /*&.current { opacity: .5; }*/
    }

        .owl-carousel .owl-item img {
            display: block;
            position: inherit;
        }

    .owl-carousel .owl-nav.disabled,
    .owl-carousel .owl-dots.disabled {
        display: none;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel .owl-dot {
        cursor: pointer;
        cursor: hand;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab;
    }

    .owl-carousel.owl-rtl {
        direction: rtl;
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right;
        }

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.owl-carousel .scaleOut {
    -webkit-animation-name: scaleOut;
    animation-name: scaleOut;
}

.owl-carousel .scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scaleOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes scaleOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

/* Owl Carousel - Auto Height Plugin */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: default;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/* Owl Carousel - Video Plugin */
/** Owl Carousel v2.2.1 Copyright 2013-2017 David Deutsch Licensed under  () */
/* Default theme - Owl Carousel CSS File */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

    .owl-theme .owl-nav [class*='owl-'] {
        color: #fff;
        background: #d6d6d6;
        display: inline-block;
        cursor: pointer;
    }

        .owl-theme .owl-nav [class*='owl-']:hover {
            background: #869791;
            color: #FFF;
            text-decoration: none;
        }

    .owl-theme .owl-nav .disabled {
        opacity: 0.5;
        cursor: default;
    }

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

    .owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 13px;
            height: 13px;
            margin-left: 5px;
            margin-right: 5px;
            background: #fff;
            display: block;
            -webkit-backface-visibility: visible;
            backface-visibility: visible;
            -webkit-transition: .1s;
            transition: .1s;
            opacity: .4;
            border-radius: 30px;
        }

        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            opacity: 1;
        }

/** Owl Default Nav */
.owl-nav__style .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -80px;
}

.owl-nav__style .owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: none;
    -webkit-transition: .2s;
    transition: .2s;
}

    .owl-nav__style .owl-theme .owl-nav [class*='owl-'] .icon {
        font-size: 14px;
        color: #222;
        background: #fff;
        border: 2px solid #d7d7d7;
        width: 50px;
        height: 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 100%;
    }

.owl-nav__style .owl-theme .owl-nav .owl-prev {
    left: -60px;
}

.owl-nav__style .owl-theme .owl-nav .owl-next {
    right: -60px;
}

.owl-nav__style.services-nav__carousel .owl-nav {
    top: -100px;
    margin-top: 0;
    z-index: 2;
}

.owl-nav__style.services-nav__carousel .owl-theme .owl-nav .owl-prev {
    left: 20px;
}

.owl-nav__style.services-nav__carousel .owl-theme .owl-nav .owl-next {
    right: 20px;
}

.owl-nav__style-2 .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -15px;
    z-index: 2;
}

.owl-nav__style-2 .owl-theme .owl-nav [class*='owl-'] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: none;
    position: absolute;
}

    .owl-nav__style-2 .owl-theme .owl-nav [class*='owl-']:last-child {
        margin-right: 0;
    }

@media (max-width: 1279px) {
    .owl-nav__style-2 .owl-theme .owl-nav [class*='owl-'] {
        background: #fff;
        width: 40px;
        height: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 50%;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }
}

.owl-nav__style-2 .owl-theme .owl-nav [class*='owl-'] .arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    opacity: 1;
}

@media (max-width: 1279px) {
    .owl-nav__style-2 .owl-theme .owl-nav [class*='owl-'] .arrow {
        width: 12px !important;
        height: 12px !important;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
    }
}

.owl-nav__style-2 .owl-theme .owl-nav [class*='owl-'] .arrow.left {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.owl-nav__style-2 .owl-theme .owl-nav [class*='owl-'] .arrow.right {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.owl-nav__style-2 .owl-theme .owl-nav .owl-prev {
    left: 25px;
}

@media (max-width: 1279px) {
    .owl-nav__style-2 .owl-theme .owl-nav .owl-prev {
        left: 15px;
        padding-left: 6px;
    }
}

.owl-nav__style-2 .owl-theme .owl-nav .owl-next {
    right: 25px;
}

@media (max-width: 1279px) {
    .owl-nav__style-2 .owl-theme .owl-nav .owl-next {
        right: 15px;
        padding-right: 6px;
    }
}

.owl-nav__style-2.personnel-carousel .owl-theme .owl-nav [class*='owl-'] .arrow {
    border-top: 2px solid #222;
    border-right: 2px solid #222;
}

.owl-nav__style-2.personnel-carousel .owl-theme .owl-nav .owl-prev {
    left: -40px;
}

.owl-nav__style-2.personnel-carousel .owl-theme .owl-nav .owl-next {
    right: -40px;
}

.owl-nav__style-3 .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -15px;
}

.owl-nav__style-3 .owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: none;
    -webkit-transition: .2s;
    transition: .2s;
    background: #fff;
    width: 60px;
    height: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

    .owl-nav__style-3 .owl-theme .owl-nav [class*='owl-'] .arrow {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 15px;
        height: 15px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
    }

        .owl-nav__style-3 .owl-theme .owl-nav [class*='owl-'] .arrow.left {
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
        }

        .owl-nav__style-3 .owl-theme .owl-nav [class*='owl-'] .arrow.right {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.owl-nav__style-3 .owl-theme .owl-nav .owl-prev {
    left: 50px;
    padding-left: 8px;
}

.owl-nav__style-3 .owl-theme .owl-nav .owl-next {
    right: 50px;
    padding-right: 8px;
}

.owl-nav__style-3.services-carousel .owl-nav {
    position: absolute;
    text-align: left;
    margin-left: 70px;
    margin-top: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .owl-nav__style-3.services-carousel .owl-nav {
        margin-left: 10px;
        margin-top: 120px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .owl-nav__style-3.services-carousel .owl-nav {
        margin-left: 10px;
        margin-top: 120px;
    }
}

@media (max-width: 767px) {
    .owl-nav__style-3.services-carousel .owl-nav {
        position: relative;
        text-align: center;
        margin-left: 0;
        top: inherit;
        margin-top: 55px;
    }
}

.owl-nav__style-3.services-carousel .owl-theme .owl-nav [class*='owl-'] {
    position: relative;
    margin-right: 15px;
}

    .owl-nav__style-3.services-carousel .owl-theme .owl-nav [class*='owl-']:last-child {
        margin-right: 0;
    }

.owl-nav__style-3.services-carousel .owl-theme .owl-nav .owl-prev {
    left: inherit;
}

.owl-nav__style-3.services-carousel .owl-theme .owl-nav .owl-next {
    right: inherit;
}

/** Owl Default Dots */
.owl-dots__style .owl-theme .owl-dots {
    margin-top: 20px;
}

    .owl-dots__style .owl-theme .owl-dots .owl-dot span {
        margin-left: 4px;
        margin-right: 4px;
        width: 14px;
        height: 14px;
        border: 2px solid #222;
        background: none;
        opacity: 1;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    .owl-dots__style .owl-theme .owl-dots .owl-dot.active span,
    .owl-dots__style .owl-theme .owl-dots .owl-dot:hover span {
        background: #222;
        -webkit-transform: scale(1);
        transform: scale(1);
    }



.small-title {
    color: #999;
    font-size: 13px;
    letter-spacing: 3px;
}

.border {
    display: inline-block;
    background: #e0b582;
    width: 70px;
    height: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.components-row {
    margin-left: -40px;
    margin-right: -40px;
}

.components-col {
    padding-left: 40px;
    padding-right: 40px;
}

.components-title {
    font-size: 48px;
    font-weight: 200;
    color: #222;
    line-height: 1.25;
    margin-top: 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .components-title {
        font-size: 36px;
    }
}

@media (max-width: 479px) {
    .components-title {
        font-size: 36px;
    }
}

.components-title span {
    font-weight: 600;
    font-size: 60px;
    letter-spacing: -2px;
    color: #e0b582;
}

@media (min-width: 768px) and (max-width: 991px) {
    .components-title span {
        font-size: 48px;
    }
}

@media (max-width: 479px) {
    .components-title span {
        font-size: 48px;
    }
}

.components-spot {
    color: #222;
    font-size: 20px;
    margin-bottom: 15px;
}

@media (min-width: 1280px) {
    .components-spot {
        padding-right: 50px;
    }
}

.components-text {
    font-size: 16px;
    color: #6f6f6f;
    font-weight: 300;
    margin-bottom: 30px;
}

@media (min-width: 1280px) {
    .components-text {
        padding-right: 70px;
    }
}

.components-photo {
    height: 600px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .components-photo {
        height: auto;
    }
}

.components-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-header.center {
    text-align: center;
}

    .section-header.center .title:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .section-header.center .text {
        max-width: 700px;
        margin: 0 auto;
    }

        .section-header.center .text.large {
            font-size: 18px;
            color: #fff;
        }

.section-header.small .title {
    font-size: 36px;
}

.section-header .title {
    font-size: 42px;
    color: #222;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media (max-width: 479px) {
    .section-header .title {
        font-size: 36px;
    }
}

.section-header .text {
    font-size: 16px;
    color: #6f6f6f;
    font-weight: 300;
}

.video-circle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fcc30a;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    position: relative;
}

@media (max-width: 479px) {
    .video-circle {
        width: 80px;
        height: 80px;
    }
}

.video-circle.style-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-circle:before,
.video-circle:after {
    content: "";
    position: absolute;
    background: rgba(252, 195, 10, 0.2);
    border-radius: 100%;
    -webkit-animation: pulsate 1.5s ease-out;
    animation: pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
}

.video-circle:before {
    width: 150px;
    height: 150px;
}

.video-circle:after {
    width: 180px;
    height: 180px;
}

.video-circle .icon {
    font-size: 32px;
    color: #222;
    position: relative;
    left: 2px;
    top: 2px;
}

@media (max-width: 479px) {
    .video-circle .icon {
        font-size: 24px;
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

.app-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #03031e;
    height: 100%;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
}

    .app-overlay.is-visible {
        opacity: .95;
        visibility: visible;
    }

.app-scroll {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e0b582;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    color: #222;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    z-index: 10000;
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 991px) {
    .app-scroll {
        bottom: 75px;
    }
}

.app-scroll .icon {
    font-size: 16px;
}

.app-scroll.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.app-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background: rgba(255, 255, 255, 0.7);
}

    .app-loading.style-1 {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 30px;
    }

    .app-loading.small {
        background: none;
    }

        .app-loading.small:before {
            width: 35px;
            height: 35px;
        }

    .app-loading.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .app-loading:before {
        content: "";
        position: absolute;
        border: 4px solid #fff;
        border-top: 4px solid #fcc30a;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: spin .8s linear infinite;
        animation: spin .8s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.header-nav__wrapper {
    /* display: -webkit-box; 
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-flex: 1; 
  -ms-flex: 1; 
  flex: 1;
  -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end;
  padding-right: 40px; */
}

.header-nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: -16px;
    margin-right: -16px;
}

@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-nav {
        margin-left: -10px;
        margin-right: -10px;
    }
}

.header-nav__item {
    padding-right: 13px;
    padding-left: 13px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-nav__item {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.header-nav__item > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #1C2539;
    font-size: 16px;
    font-weight: 600;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}

    .header-nav__item > a:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 23px;
        left: 0;
        height: 2px;
        background: #df0a0a;
        width: 0;
        margin: 0 auto;
        -webkit-transition: width .3s;
        transition: width .3s;
    }

.header-nav__item:hover > a:before {
    width: 100%;
}

.header-nav__item:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .3s;
    transition: .3s;
}

.header-nav__item:hover > .header-nav__dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s;
    transition: .3s;
}

.header-nav__links {
    position: absolute;
    background: #fff;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    margin: 0;
    padding: 0;
    border-top: 4px solid var(--color-primary);
}

/* Alt menülerin yanında açılması */
.sub-droupdown {
    position: relative;
}

    .sub-droupdown > a::after {
        content: "\f054";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        right: 10px;
    }

.submenu li.sub-droupdown > a::after {
    content: "\f054";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    right: 10px;
}

.submenu {
    display: none;
    position: absolute;
    min-width: 250px;
    top: -5px;
    left: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
}

    .sub-droupdown:hover > .submenu,
    .submenu li:hover > .submenu {
        display: block;
    }

    .header-nav__links a,
    .submenu a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
        white-space: nowrap;
    }

        .header-nav__links a:hover,
        .submenu a:hover {
            color: var(--color-primary);
        }

    .submenu li {
        position: relative;
    }

    .submenu .submenu {
        left: 100%;
        top: -5px;
    }

.header-nav__links:before {
    content: "";
    position: absolute;
    left: 30px;
    top: -20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    border-color: transparent transparent var(--color-primary) transparent;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 10px;
}

.header-nav__links li {
    display: block;
    border-bottom: 1px solid #C4C4C426;
    margin-top: 5px;
    margin-bottom: 5px;
}

    .header-nav__links li:last-child {
        border-bottom: 0 none;
    }

    .header-nav__links li > a {
        display: block;
        font-size: 14px;
        padding: 5px 15px;
        color: #222;
        -webkit-transition: .3s;
        transition: .3s;
        border-radius: 0;
        font-weight: 600;
    }

        .header-nav__links li > a:hover {
            color: var(--color-primary);
            border-radius: 0;
        }

.header-nav__dropdown {
    background: #F7F7F7;
    position: absolute;
    left: 0;
    right: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
}

.header-nav__dropdown-bg {
    z-index: 1;
}

    .header-nav__dropdown-bg:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        left: 0;
        background-repeat: no-repeat;
        height: 100%;
    }

.header-nav__dropdown.cover-1:before {
    background-position: center bottom;
}

.header-nav__dropdown.cover-2:before {
    background-image: url("../images/cover-1.png");
    background-position: right 50px;
}

.mobile-nav {
    background-color: #f7f7f7;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    display: block;
    height: 100%;
    left: 0;
    overflow: hidden;
    padding-bottom: 55px;
    position: fixed;
    top: 0;
    width: 400px;
    z-index: 10010;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

    .mobile-nav.is-visible {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

@media (min-width: 320px) and (max-width: 479px) {
    .mobile-nav {
        width: 320px;
    }
}

.mobile-nav__header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 7px;
}

    .mobile-nav__header .title,
    .mobile-nav__header .close {
        font-size: 13px;
    }

    .mobile-nav__header .title {
        color: rgba(0, 0, 0, 0.4);
        font-weight: 700;
    }

    .mobile-nav__header .close {
        color: rgba(0, 0, 0, 0.7);
        font-weight: 500;
    }

.mobile-nav__wrapper {
    bottom: 0;
    height: 1px;
    left: 0;
    margin: auto;
    min-height: calc(100% - 110px);
    overflow: auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.mobile-nav__content > ul > li {
    display: block;
}

    .mobile-nav__content > ul > li > a {
        color: #222;
        position: relative;
        display: block;
        font-size: 18px;
        font-weight: 700;
        padding: 15px 20px;
        -webkit-transition: .3s;
        transition: .3s;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

@media (max-width: 767px) {
    .mobile-nav__content > ul > li > a {
        font-size: 16px;
    }
}

.mobile-nav__content > ul > li > a:hover {
    background: #fff;
    color: #fcc30a;
}

.mobile-nav__content > ul > li.is-open > a {
    background: #fff;
    color: #fcc30a;
    border-bottom: 0 none;
}

.mobile-nav__plus {
    position: absolute;
    right: 20px;
    font-size: 16px;
    margin-right: 0;
    color: #999;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile-nav__sub {
    background: #fff none repeat scroll 0 0;
    padding-bottom: 15px;
    display: none;
}

    .mobile-nav__sub > li {
        display: block;
    }

        .mobile-nav__sub > li:last-child a {
            border-bottom: 0 none;
        }

        .mobile-nav__sub > li > a {
            color: #6f6f6f;
            display: block;
            font-size: 14px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            padding: 6px 20px;
            -webkit-transition: .3s;
            transition: .3s;
        }

            .mobile-nav__sub > li > a:hover {
                color: #fcc30a;
            }

.mobile-nav__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    bottom: 0;
    height: 55px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

    .mobile-nav__social a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #666 none repeat scroll 0 0;
        border-radius: 100%;
        color: #fff;
        font-size: 18px;
        height: 40px;
        margin-left: 5px;
        margin-right: 5px;
        width: 40px;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .mobile-nav__social a:hover {
            background: #03031e;
        }

.header-sub {
    position: relative;
}

    .header-sub .slide,
    .slide-material,
    .header-sub {
        height: 84vh;
    }

@media (max-width: 479px) {

    .header-sub .slide,
    .slide-material,
    .header-sub {
        height: 450px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .header-sub .slide,
    .slide-material,
    .header-sub {
        height: 600px;
    }
}

@media (min-width: 1824px) {

    .header-sub .slide,
    .slide-material,
    .header-sub {
        height: 84vh;
    }
}

.header-sub .slide {
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide-list {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    padding-inline-start: 0;
}

    .slide-list li {
        display: none;
        margin: 0;
    }

        .slide-list li.is-active .slide-material img {
            -webkit-transform: scale(1.15, 1.15);
            transform: scale(1.15, 1.15);
        }

        .slide-list li.is-active .heading,
        .slide-list li.is-active .text,
        .slide-list li.is-active .buttons-container {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

.slide-material {
    overflow: hidden;
    position: relative;
}

    .slide-material a {
        display: block;
    }

    .slide-material img,
    .slide-material video {
        width: 100%;
        height: 100vh;
        -o-object-fit: cover;
        object-fit: cover;
        opacity: .75;
    }

    .slide-material img {
        -webkit-transition: all 10s ease-in 0s;
        transition: all 10s ease-in 0s;
    }

.slide-video {
    display: block;
}

@media (max-width: 991px) {
    .slide-photo {
        display: block;
    }
}

.slide-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

    .slide-wrapper .container {
        height: 70%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 135px;
        padding-bottom: 140px;
    }

@media (min-width: 992px) and (max-width: 1200px) {
    .slide-wrapper .container {
        padding-left: 120px;
    }
}


.slide-content {
    max-width: 720px;
    width: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .slide-content {
        text-align: center;
    }
}

.slide-content .heading,
.slide-content .text,
.slide-content .buttons-container {
    opacity: 0;
    visibility: hidden;
}

.slide-content .heading {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    position: relative;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: .8s .1s;
    transition: .8s .1s;
}


    .slide-content .heading span {
        font-weight: 200;
        font-size: 60px;
    }


.slide-content .text {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    -webkit-transition: .8s .2s;
    transition: .8s .2s;
}


.slide-content .buttons-container {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
    -webkit-transition: .8s .3s;
    transition: .8s .3s;
}

.slide-pagination {
    bottom: 20px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    text-align: center;
    display: none;
}


    .slide-pagination li {
        display: inline-block;
    }

        .slide-pagination li a {
            width: 14px;
            height: 14px;
            cursor: pointer;
            display: inline-block;
            font-size: 0;
            opacity: .3;
            margin: 0 3px;
            border-radius: 50%;
            -webkit-transform: scale(0.7);
            transform: scale(0.7);
            background: #fcc30a;
            -webkit-transition: .2s;
            transition: .2s;
        }

        .slide-pagination li.is-active a {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

.slide-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    display: block;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .slide-arrows {
        display: none;
    }
}

.slide-arrows a {
    position: absolute;
    z-index: 2;
    font-size: 28px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: #fff;
    padding-top: 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .slide-arrows a::before {
        content: "";
        position: absolute;
        top: -30px;
        right: 0;
        bottom: -30px;
        left: 0;
        z-index: -1;
        border: 1px solid rgba(255, 255, 255, 0.4);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .slide-arrows a:hover::before {
        border: 1px solid #fff;
    }


    .slide-arrows a.prev {
        left: calc(30px* -1);
        padding-right: 14px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

        .slide-arrows a.prev::before {
            border-top-right-radius: 99px;
            border-bottom-right-radius: 99px;
        }

    .slide-arrows a.next {
        right: calc((40px - 10px)* -1);
        padding-left: 14px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        .slide-arrows a.next::before {
            border-top-left-radius: 99px;
            border-bottom-left-radius: 99px;
        }

    .slide-arrows a .arrow {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 20px;
        height: 20px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        opacity: .8;
    }

        .slide-arrows a .arrow.left {
            -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
        }

        .slide-arrows a .arrow.right {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.buttons-container .rts-btn {
    border-radius: 30px;
}

    .buttons-container .rts-btn i {
        font-size: 14px;
        margin-left: 26px;
        top: -1px;
        position: relative;
        color: #fff;
        transition: all 0.3s ease-in-out;
    }

.shortcut-cards {
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
}

.shortcut-card a {
    background-color: rgba(242, 108, 79, 0.7);
    display: block;
    position: relative;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    height: 130px;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    border-radius: 10px;
}


.owl-item:nth-child(2) .shortcut-card a {
    background-color: rgba(172, 211, 115, 0.7);
}

    .owl-item:nth-child(2) .shortcut-card a:hover {
        background-color: rgba(0, 0, 0, .7);
    }

.owl-item:nth-child(3) .shortcut-card a {
    background-color: rgba(0, 118, 163, 0.7);
}

    .owl-item:nth-child(3) .shortcut-card a:hover {
        background-color: rgba(0, 0, 0, .7);
    }

.owl-item:nth-child(4) .shortcut-card a {
    background-color: rgba(240, 110, 170, 0.7);
}

    .owl-item:nth-child(4) .shortcut-card a:hover {
        background-color: rgba(0, 0, 0, .7);
    }


.shortcut-card .icon {
    margin-right: 25px;
    font-size: 40px;
}

.shortcut-card .description .title {
    font-weight: 700;
    font-size: 16px;
}

.shortcut-card .description .text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 10px;
}

.shortcut-card__bg {
    position: absolute;
    left: 0;
    z-index: -1;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

    .shortcut-card__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
        transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
        transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
        transition: transform 1s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    }

.shortcut-card a:hover {
    background-color: rgba(0, 0, 0, .7);
}

    .shortcut-card a:hover .shortcut-card__bg img {
        -webkit-transform: scale3d(1.15, 1.15, 1.15);
        transform: scale3d(1.15, 1.15, 1.15);
    }


.buttons-container.center {
    text-align: center;
}

.buttons-container a.read_more {
    padding: 20px 37px 22px;
    color: var(--e-global-color-primary);
    background: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}

    .buttons-container a.read_more:hover {
        color: var(--e-global-color-white);
        background: var(--e-global-color-very-dark-black-blue);
    }

    .buttons-container a.read_more i {
        font-size: 14px;
        margin-left: 26px;
        top: -1px;
        position: relative;
        color: var(--e-global-color-primary);
        transition: all 0.3s ease-in-out;
    }

    .buttons-container a.read_more:hover i {
        color: var(--e-global-color-white);
    }

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 140px;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-right: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    background: #e0b582;
    color: #fff;
    border: 2px solid transparent;
}

@media (max-width: 479px) {
    .button {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.button:last-child {
    margin-right: 0;
}

.button .icon {
    margin-left: 10px;
    font-size: 16px;
}

.button.style-1:hover {
    background: #fff;
    color: #222;
    border: 2px solid transparent;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.button.style-2 {
    color: #fff;
}

    .button.style-2:hover {
        background: #fff;
        color: #222;
        border: 2px solid transparent;
    }

.button.width {
    min-width: 200px;
}

.button.light {
    background: #fff;
    color: #e0b582;
}

    .button.light:hover {
        border: 2px solid #fff;
        color: #fff;
    }

.button.dark {
    background: #222;
    color: #fff;
}

    .button.dark:hover {
        border: 2px solid #222;
        color: #222;
    }

.button:hover {
    border: 2px solid #e0b582;
    color: #e0b582;
    background: none;
}

.button-border {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-width: 140px;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-right: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    border: 2px solid #fff;
    color: #fff;
}

@media (max-width: 479px) {
    .button-border {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.button-border:last-child {
    margin-right: 0;
}

.button-border .icon {
    margin-left: 10px;
    font-size: 16px;
}

.button-border:hover {
    background: #03031e;
    color: #fff;
}

.button-border.style-1 {
    border: 2px solid #e0b582;
    color: #e0b582;
}

    .button-border.style-1:hover {
        border: 2px solid #fff;
        color: #fff;
        background: none;
    }

.button-border.light {
    border: 2px solid #fff;
    color: #fff;
}

    .button-border.light:hover {
        background: #fff;
        color: #03031e;
    }

.button-line {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    color: #222;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    border-radius: 0;
}

    .button-line .icon {
        margin-left: 12px;
        font-size: 13px;
    }

    .button-line:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: -2px;
        left: 0;
        height: 2px;
        width: 0;
        -webkit-transition: width .3s;
        transition: width .3s;
    }

    .button-line:hover:before {
        width: 100%;
    }

.cards-row {
    margin-left: -1px;
    margin-right: -1px;
    margin-top: 2px;
}

.cards-col {
    padding-left: 1px;
    padding-right: 1px;
}

.cards.list ul li {
    margin-bottom: 30px;
}

.cards .card a {
    position: relative;
    display: block;
}

    .cards .card a:hover .cards-photo img {
        -webkit-transform: scale3d(1.15, 1.15, 1.15);
        transform: scale3d(1.15, 1.15, 1.15);
    }

    .cards .card a:hover .cards-cover img {
        -webkit-transform: scale3d(1.15, 1.15, 1.15);
        transform: scale3d(1.15, 1.15, 1.15);
    }

.cards-header {
    position: relative;
}

.cards-photo {
    overflow: hidden;
    height: 175px;
}

@media (max-width: 479px) {
    .cards-photo {
        height: auto;
    }
}

.cards-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}

.cards-footer {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 200px;
}

    .cards-footer .title {
        font-size: 18px;
        font-weight: 900;
        color: #03031e;
        line-height: 1.4;
        overflow: hidden;
        max-height: 49px;
    }

    .cards-footer .date {
        color: #999;
        font-size: 13px;
        margin-top: 5px;
    }

    .cards-footer .text {
        margin-top: 5px;
        color: #6f6f6f;
        font-size: 14px;
        font-weight: 300;
        overflow: hidden;
        max-height: 67px;
    }

.cards-cover {
    height: 250px;
    background: #000;
    overflow: hidden;
}

    .cards-cover img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
        transition: all 1s cubic-bezier(0, 0, 0.2, 1);
        opacity: .5;
    }

.cards-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .cards-body .title {
        font-size: 32px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
    }

@media (min-width: 1280px) {
    .gallery.column-5 .gallery-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.gallery.list .gallery-card {
    margin-bottom: 20px;
}

@media (max-width: 479px) {
    .gallery.list .gallery-card {
        margin-bottom: 10px;
    }

        .gallery.list .gallery-card:last-child {
            margin-bottom: 0;
        }
}

.gallery-card a {
    position: relative;
    display: block;
}

    .gallery-card a:hover .gallery-cover img {
        -webkit-transform: scale3d(1.15, 1.15, 1.15);
        transform: scale3d(1.15, 1.15, 1.15);
    }

    .gallery-card a:hover .gallery-photo img {
        -webkit-transform: scale3d(1.15, 1.15, 1.15);
        transform: scale3d(1.15, 1.15, 1.15);
    }

    .gallery-card a:hover .gallery-overlay .icon {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.gallery-header {
    position: relative;
}

.gallery-photo {
    overflow: hidden;
    height: 150px;
}

@media (max-width: 479px) {
    .gallery-photo {
        height: auto;
    }
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
}

.gallery-footer {
    text-align: center;
    background: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

    .gallery-footer .title {
        font-size: 16px;
        color: #222;
        line-height: normal;
        margin-bottom: 0;
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
}

    .gallery-overlay .icon {
        font-size: 18px;
        color: #fff;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 2px solid #fff;
        border-radius: 100%;
        color: #fff;
        position: absolute;
        top: 10px;
        right: 10px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transition: .3s;
        transition: .3s;
    }

.gallery-body {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .gallery-body .title {
        color: #fff;
        font-size: 24px;
        line-height: 1.3;
        position: relative;
    }

        .gallery-body .title:before {
            content: "";
            position: absolute;
            left: -25px;
            top: 0;
            background: #fcc30a;
            width: 4px;
            height: 30px;
        }

    .gallery-body .date {
        color: #fff;
        font-size: 13px;
        margin-top: 5px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        opacity: .8;
    }

        .gallery-body .date .icon {
            font-size: 13px;
            margin-right: 7px;
        }

    .gallery-body > .icon {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 45px;
        height: 45px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #fcc30a;
        border-radius: 50%;
        color: #222;
        font-size: 16px;
        position: absolute;
        right: 15px;
        top: 15px;
    }

@media (max-width: 479px) {
    .gallery-body > .icon {
        display: none;
    }
}

.gallery-cover {
    overflow: hidden;
    height: 220px;
}

@media (max-width: 767px) {
    .gallery-cover {
        height: auto;
    }
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
    transition: all 1s cubic-bezier(0, 0, 0.2, 1);
}

.card-single__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .card-single__row:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

        .card-single__row:nth-child(even) .card-single__description {
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

        .card-single__row:nth-child(even) .card-single__description-wrapper {
            padding-right: 90px;
            padding-left: 0;
        }

@media (min-width: 992px) and (max-width: 1200px) {
    .card-single__row:nth-child(even) .card-single__description-wrapper {
        padding-left: 10px;
        padding-right: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-single__row:nth-child(even) .card-single__description-wrapper {
        padding-left: 10px;
        padding-right: 30px;
    }
}

.card-single__photo {
    overflow: hidden;
    height: 600px;
}

@media (max-width: 767px) {
    .card-single__photo {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-single__photo {
        height: 400px;
    }
}

.card-single__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-single__description {
    height: 600px;
    padding: 70px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 991px) {
    .card-single__description {
        padding: 30px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-single__description {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .card-single__description {
        height: auto;
    }
}

.card-single__description-wrapper {
    width: 590px;
    max-width: 100%;
    padding-left: 90px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .card-single__description-wrapper {
        padding-left: 50px;
        width: 480px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .card-single__description-wrapper {
        padding-left: 30px;
        width: 375px;
    }
}

@media (max-width: 767px) {
    .card-single__description-wrapper {
        margin: 0 auto;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .card-single__description-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 479px) {
    .card-single__description-wrapper {
        max-width: 390px;
    }
}

.card-single__description .title {
    color: #fcc30a;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .card-single__description .title {
        font-size: 36px;
    }
}

.card-single__description .text {
    font-size: 16px;
    color: #6f6f6f;
    font-weight: 300;
    margin-bottom: 35px;
    margin-top: 20px;
}

.projects-carousel .projects-card {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}

@media (max-width: 479px) {
    .projects-carousel .projects-card {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 1280px) {
    .projects.list ul {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.projects.list ul li {
    margin-bottom: 70px;
}

@media (min-width: 1280px) {
    .projects.list ul li {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* .projects.small .projects-photo { height: 250px; } */

.projects.small .projects-footer {
    margin-top: -55px;
}

.projects.small .projects-footer__content {
    height: 160px;
    width: 300px;
}

    .projects.small .projects-footer__content .title {
        font-size: 20px;
        max-height: 55px;
    }

.projects.view-1 .projects-footer {
    margin-top: 0;
}

.projects.view-1 .projects-footer__content {
    width: 100%;
    padding: 25px;
    height: 80px;
}

.projects.view-1 .projects-card {
    margin-bottom: 30px;
}

.projects-card {
    position: relative;
}

    .projects-card:hover .projects-photo img {
        -webkit-transform: scale3d(1.15, 1.15, 1.15);
        transform: scale3d(1.15, 1.15, 1.15);
    }

.projects-photo {
    height: 395px;
    overflow: hidden;
}

@media (min-width: 1824px) {
    .projects-photo {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .projects-photo {
        height: 300px;
    }
}

.projects-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
    transition: transform 1s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
}

.projects-footer {
    margin-top: -130px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (min-width: 768px) and (max-width: 991px) {
    .projects-footer {
        margin-top: -100px;
    }
}

@media (max-width: 479px) {
    .projects-footer {
        margin-top: -50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.projects-footer__content {
    background: #fff;
    width: 330px;
    height: 200px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 35px;
    position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
    .projects-footer__content {
        width: 290px;
    }
}

@media (max-width: 479px) {
    .projects-footer__content {
        width: 255px;
        height: 160px;
        padding: 25px;
    }
}

.projects-footer__content .title {
    color: #222;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    overflow: hidden;
    max-height: 71px;
}

@media (max-width: 479px) {
    .projects-footer__content .title {
        font-size: 20px;
        max-height: 55px;
    }
}

.projects-more {
    position: absolute;
    right: 25px;
    bottom: 25px;
}

.services-carousel .services-card {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}

@media (min-width: 1280px) {
    .services.large ul {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (min-width: 1280px) {
    .services.large ul li {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.services.large .services-photo {
    height: 230px;
}

.services.large .services-footer .title {
    font-size: 24px;
}

.services.list .services-card {
    margin-bottom: 40px;
}

.services-card:hover .services-photo img {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
}

.services-photo {
    height: 175px;
    overflow: hidden;
}

    .services-photo img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
        transition: -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
        transition: transform 1s cubic-bezier(0, 0, 0.2, 1);
        transition: transform 1s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0, 0.2, 1);
    }

.services-footer {
    background: #fff;
    height: 175px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 25px;
}

    .services-footer .title {
        font-size: 16px;
        font-weight: 600;
        color: #222;
        line-height: normal;
        margin-bottom: 5px;
    }

    .services-footer .text {
        font-size: 14px;
        margin-bottom: 10px;
        margin-top: 5px;
    }

.references-photo {
    height: 125px;
    overflow: hidden;
    padding: 25px;
    background: #fff;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}

    .references-photo img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.references-footer {
    background: #f7f7f7;
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
}

    .references-footer .title {
        color: #6f6f6f;
        font-size: 14px;
        font-weight: 500;
    }

.header {
    position: relative;
    z-index: 4;
}

.header-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100px;
}

@media (max-width: 991px) {
    .header-container {
        position: relative;
    }
}

@media (max-width: 767px) {
    .header-container {
        height: 90px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: space-around;
    }
}

.header-bar {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-family: inherit;
    position: absolute;
    left: 10px;
}

@media (max-width: 991px) {
    .header-bar {
    }
}

.header-bar .icon {
    font-size: 28px;
}

.header-bar .text {
    font-weight: 200;
    font-size: 16px;
    margin-left: 20px;
}

    .header-bar .text strong {
        font-weight: 700;
    }

.header-logo a {
    display: block;
    position: relative;
}

.header-logo img {
    width: 220px;
}

@media (max-width: 767px) {
    .header-logo img {
        width: 100%;
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .header-buttons {
        display: none;
    }
}

.header-language {
    margin-right: 20px;
}

    .header-language a {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 13px;
        position: relative;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .header-language a:first-child {
            margin-left: 0;
        }

        .header-language a:hover {
            color: #e0b582;
        }

            .header-language a:hover:before {
                width: 100%;
            }

.header-social a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 35px;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-left: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 11px;
}

    .header-social a:hover {
        border: 1px solid #fcc30a;
        color: #222;
        background: #e0b582;
    }

    .header-social a:first-child {
        margin-left: 0;
    }

.footer {
    background: #222;
}

.footer-top {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 767px) {
    .footer-card {
        margin-bottom: 50px;
    }

        .footer-card:last-child {
            margin-bottom: 0;
        }
}

.footer-logo a {
    display: block;
    position: relative;
}

.footer-logo img {
    width: 230px;
}

.footer-text {
    font-size: 14px;
    color: #6f6f6f;
    margin-top: 20px;
}

@media (min-width: 1280px) {
    .footer-text {
        padding-right: 50px;
    }
}

.footer-heading {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-heading {
        font-size: 18px;
    }
}

.footer-social {
    margin-top: 30px;
}

    .footer-social a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 50px;
        height: 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid rgba(221, 221, 221, 0.16);
        color: #fff;
        border-radius: 50%;
        margin-left: 10px;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .footer-social a:first-child {
            margin-left: 0;
        }

        .footer-social a:hover {
            background: #fff;
            color: #222;
        }

        .footer-social a .icon {
            font-size: 18px;
        }

@media (max-width: 479px) {
    .footer-links {
        width: 50%;
    }
}

.footer-links ul li a {
    color: #6f6f6f;
    font-size: 14px;
    display: block;
    padding: 5px 0;
    -webkit-transition: .3s;
    transition: .3s;
}

    .footer-links ul li a:hover {
        color: #e0b582;
    }

.footer-form {
    margin-bottom: 30px;
    position: relative;
}

    .footer-form ul li input {
        border-top: none;
        border-right: none;
        border-bottom: 2px solid #e0b582;
        border-left: none;
        height: 50px;
        font-family: inherit;
        background: none;
        color: #6f6f6f;
        width: 100%;
        font-size: 14px;
    }

    .footer-form .send {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .footer-form .send .icon {
            color: #fff;
            font-size: 14px;
        }

    .footer-form .form-error {
        top: inherit;
        right: inherit;
        bottom: -55px;
        left: 0;
        background: #fff;
        color: #222;
        height: 30px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 10px;
        padding-right: 20px;
    }

@media (max-width: 767px) {
    .footer-form .form-error {
        position: relative;
        bottom: 0;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

.footer-form .form-error:before {
    content: "";
    position: absolute;
    left: 13px;
    top: 17px;
    -webkit-transform: translateX(-50%) translateY(-30px);
    transform: translateX(-50%) translateY(-30px);
    width: 0;
    border-color: transparent transparent #fff;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 7px;
    display: block;
}

.footer-bottom .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

    .footer-bottom .container:before {
        content: "";
        position: absolute;
        top: 0;
        right: 10px;
        left: 10px;
        background: rgba(255, 255, 255, 0.1);
        height: 1px;
    }

.footer-bottom .text {
    color: #6f6f6f;
    font-size: 13px;
}

    .footer-bottom .text strong {
        font-weight: 700;
    }

.section.cover {
    position: relative;
    z-index: 1;
}

    .section.cover:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        left: 0;
        background-repeat: no-repeat;
    }

.section.cover-1:before {
    background-image: url("../../assets/img/cover-1.png");
    height: 440px;
    background-position: right 50px;
}

.section.cover-2:before {
    background-image: url("../../assets/img/cover-2.jpg");
    height: 1000px;
    background-position: center bottom;
}

.section.cover-3:before {
    background-image: url("../../assets/img/cover-3.png");
    height: 876px;
    background-position: left center;
}

@media (max-width: 1279px) {
    .section.cover-3:before {
        display: none;
    }
}

.section.bg {
    background: #f7f7f7;
}

.abouts-content {
    padding-top: 100px;
    padding-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    border-left: 1px solid #eee;
    padding-left: 35px;
}

    .abouts-content .components-text {
        overflow: hidden;
        max-height: 123px;
    }

@media (max-width: 767px) {
    .abouts-content {
        padding-left: 0;
        border-left: 0;
        padding-top: 50px;
        padding-bottom: 0;
    }
}

.services-nav .owl-item.current .services-nav__item {
    color: #222;
}

    .services-nav .owl-item.current .services-nav__item:before,
    .services-nav .owl-item.current .services-nav__item:after {
        opacity: 1;
        visibility: visible;
    }

.services-nav__wrapper {
    padding-left: 90px;
    padding-right: 90px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.services-nav__item {
    background: #fff;
    height: 145px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    color: #6f6f6f;
    cursor: pointer;
    margin-bottom: 30px;
}

@media (max-width: 1279px) {
    .services-nav__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.services-nav__item:before {
    content: "";
    background: #fcc30a;
    position: absolute;
    top: 0;
    right: 0;
    bottom: -15px;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
}

.services-nav__item:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fcc30a;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
}

.services-nav__item .icon {
    font-size: 42px;
    margin-right: 25px;
}

@media (max-width: 1279px) {
    .services-nav__item .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 479px) {
    .services-nav__item .icon {
        font-size: 36px;
    }
}

.services-nav__item .title {
    font-size: 20px;
    font-weight: 500;
    max-width: 150px;
    width: 100%;
    line-height: 1.3;
}

@media (min-width: 480px) and (max-width: 767px) {
    .services-nav__item .title {
        font-size: 18px;
    }
}

@media (max-width: 479px) {
    .services-nav__item .title {
        font-size: 16px;
    }
}

.services-cover {
    overflow: hidden;
}

    .services-cover img {
        width: 100%;
        height: 720px;
        -o-object-fit: cover;
        object-fit: cover;
    }

@media (min-width: 1824px) {
    .services-cover img {
        height: 850px;
    }
}

@media (max-width: 479px) {
    .services-cover img {
        height: 500px;
    }
}

.services-slide {
    margin-top: -30px;
}

.services-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.services-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media (max-width: 991px) {
    .services-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.services-content {
    background: #fff;
    max-width: 420px;
    width: 100%;
    height: auto;
    padding: 40px 50px;
}

    .services-content .border {
        margin-top: 10px;
        margin-bottom: 5px;
    }

@media (max-width: 479px) {
    .services-content {
        height: auto;
    }
}

.services-content .title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.services-content .text {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
}

@media (max-width: 479px) {
    .services-content .text {
        display: none;
    }
}

.projects-container {
    padding-top: 70px;
    padding-bottom: 70px;
}

.projects-carousel {
    margin-top: 70px;
}

@media (min-width: 480px) and (max-width: 767px) {
    .production > div:nth-child(2) {
        margin-top: 50px;
    }
}

.production-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .production-container {
        padding-top: 30px;
        padding-bottom: 70px;
    }
}

@media (max-width: 479px) {
    .production-col:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.production-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.production-card {
    background: #e0b582;
}

    .production-card a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        color: #fff;
        height: 355px;
        padding: 40px;
        position: relative;
    }

@media (min-width: 1824px) {
    .production-card a {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .production-card a {
        height: 300px;
    }
}

@media (max-width: 479px) {
    .production-card a {
        height: auto;
    }
}

.production-card.color-1 {
    background: #222;
}

.production-card .icon {
    font-size: 48px;
}

@media (max-width: 479px) {
    .production-card .icon {
        margin-bottom: 30px;
    }
}

.production-card .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.production-card .icon-arrow {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.production-photo {
    height: 355px;
    overflow: hidden;
}

@media (min-width: 1824px) {
    .production-photo {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .production-photo {
        height: 300px;
    }
}

@media (max-width: 479px) {
    .production-photo {
        height: auto;
    }
}

.production-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.support-card {
    position: relative;
}

.support-photo {
    overflow: hidden;
    height: 600px;
}

@media (max-width: 991px) {
    .support-photo {
        height: 500px;
    }
}

@media (max-width: 479px) {
    .support-photo {
        height: 400px;
    }
}

.support-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.support-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding-left: 120px;
    padding-right: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .support-body {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .support-body {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 767px) {
    .support-body {
        padding: 30px;
    }
}

.support-body .small-title {
    color: #e0b582;
    margin-bottom: 5px;
}

.support-body .title {
    font-weight: 300;
    font-size: 48px;
    line-height: 1.3;
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .support-body .title {
        font-size: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .support-body .title {
        font-size: 30px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .support-body .title {
        font-size: 42px;
    }
}

@media (max-width: 479px) {
    .support-body .title {
        font-size: 28px;
    }
}

.support-body .title strong {
    font-weight: 700;
}

.support-body .text {
    font-size: 16px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 40px;
    max-width: 475px;
    width: 100%;
}

@media (max-width: 479px) {
    .support-body .text {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

.references-carousel {
    margin-top: 30px;
}

    .references-carousel .references-card {
        margin: 10px;
    }

.references-container {
    padding-top: 70px;
    padding-bottom: 50px;
}

.inner-page__header {
    position: relative;
    overflow: hidden;
}

.inner-page__photo {
    overflow: hidden;
    height: 500px;
    background: #000;
}

@media (max-width: 767px) {
    .inner-page__photo {
        height: 350px;
    }
}

.inner-page__photo.large {
    height: 100vh;
}

.inner-page__photo img {
    width: 100%;
    height: calc(100% + 100px);
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
}

.inner-page__heading {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
}

    .inner-page__heading.center .container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .inner-page__heading.center .text {
        text-align: center;
    }

    .inner-page__heading.style-1 {
        position: relative;
        height: 250px;
        background: #f7f7f7;
    }

        .inner-page__heading.style-1 .container {
            padding-top: 0;
        }

            .inner-page__heading.style-1 .container .sm-title {
                color: #999;
            }

            .inner-page__heading.style-1 .container .title {
                color: #222;
            }

    .inner-page__heading .container {
        height: 100%;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 135px;
    }

    .inner-page__heading .sm-title {
        color: #e0b582;
        letter-spacing: 3px;
        font-size: 13px;
        font-weight: 300;
    }

    .inner-page__heading .title {
        font-size: 48px;
        color: #fff;
        font-weight: 700;
        line-height: 1.4;
    }

@media (max-width: 479px) {
    .inner-page__heading .title {
        font-size: 32px;
    }
}

.inner-page__heading .border {
    margin-top: 20px;
}

.inner-page__wrapper {
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.inner-page__wrapper-bg:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
}

.inner-page__wrapper-bg.cover-1:before {
    background-image: url("../../assets/img/cover-1.png");
    height: 440px;
    background-position: right 50px;
}

.inner-page__wrapper.margin-top-0 {
    margin-top: 0;
}

.inner-page__wrapper.margin-bottom-0 {
    margin-bottom: 0;
}

.inner-page__content {
    min-height: auto;
    margin-top: 40px;
}

    .inner-page__content.no-height {
        min-height: inherit;
    }

@media (min-width: 1280px) {
    .col-article {
        padding-right: 20px;
    }
}

.col-sidebar > div {
    margin-bottom: 10px;
}

    .col-sidebar > div:last-child {
        margin-bottom: 0;
    }

.col-sidebar__nav {
    margin-top: -50px;
}

@media (max-width: 767px) {
    .col-sidebar__nav {
        margin-top: 10px;
    }
}

.col-sidebar__nav ul {
    background: #e0b582;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .col-sidebar__nav ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 16px;
        font-weight: 300;
        padding: 15px 20px;
        color: #222;
        position: relative;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .col-sidebar__nav ul li a:before {
            content: "";
            position: absolute;
            left: 20px;
            top: 50%;
            -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
            background: #222;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            -webkit-transition: .2s;
            transition: .2s;
            display: none;
        }

        .col-sidebar__nav ul li a:after {
            content: "";
            position: absolute;
            z-index: 12;
            top: 50%;
            right: 20px;
            width: 7px;
            height: 7px;
            -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
            border-top: 2px solid currentColor;
            border-right: 2px solid currentColor;
            -webkit-transition: .3s;
            transition: .3s;
        }

        .col-sidebar__nav ul li a:hover {
            padding-left: 25px;
            /*&:before { transform: translateY(-50%) scale(1); }*/
        }

            .col-sidebar__nav ul li a:hover:after {
                -webkit-transform: translateY(-50%) rotate(45deg) scale(1.3);
                transform: translateY(-50%) rotate(45deg) scale(1.3);
            }

.col-sidebar__box {
    position: relative;
}

.col-sidebar__box-cover {
    height: 310px;
}

    .col-sidebar__box-cover img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.col-sidebar__box-body {
    padding: 30px;
    background: #222;
}

    .col-sidebar__box-body.style-1 {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: none;
    }

    .col-sidebar__box-body .sm-title {
        font-size: 12px;
        color: #fcc30a;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .col-sidebar__box-body .title {
        color: #fff;
        font-size: 20px;
        line-height: 1.3;
        margin-top: 10px;
        font-weight: 300;
    }

@media (min-width: 992px) and (max-width: 1200px) {
    .col-sidebar__box-body .title {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-sidebar__box-body .title {
        font-size: 16px;
    }
}

.col-sidebar__box-body .title strong {
    font-weight: 700;
    font-size: 24px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .col-sidebar__box-body .title strong {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-sidebar__box-body .title strong {
        font-size: 19px;
    }
}

.col-sidebar__box-body .text {
    color: #fff;
    opacity: .7;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.col-sidebar__items ul li {
    margin-bottom: 10px;
}

    .col-sidebar__items ul li:last-child {
        margin-bottom: 0;
    }

    .col-sidebar__items ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        background: #f7f7f7;
        padding: 7px;
        -webkit-transition: .3s;
        transition: .3s;
    }

        .col-sidebar__items ul li a:hover {
            background: #fff;
            -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
        }

.col-sidebar__items .item-photo {
    width: 100px;
    height: 70px;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-sidebar__items .item-photo {
        width: 80px;
        height: 60px;
    }
}

.col-sidebar__items .item-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.col-sidebar__items .item-desc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .3s;
    transition: .3s;
    padding-left: 15px;
    padding-right: 15px;
}

    .col-sidebar__items .item-desc .title {
        color: #222;
        font-weight: 600;
        font-size: 14px;
        overflow: hidden;
        max-height: 40px;
        line-height: 1.4;
    }

.col-sidebar__items .button-border {
    width: 100%;
}

.col-sidebar__categories {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.col-sidebar__category {
    margin-bottom: 20px;
}

    .col-sidebar__category .heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #222;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

        .col-sidebar__category .heading:before {
            content: "";
            position: absolute;
            bottom: -1px;
            width: 30px;
            height: 1px;
            background: #fcc30a;
        }

    .col-sidebar__category:last-child {
        margin-bottom: 0;
    }

    .col-sidebar__category ul li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

        .col-sidebar__category ul li:last-child {
            border-bottom: 0 none;
        }

        .col-sidebar__category ul li a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            color: #6f6f6f;
            text-transform: capitalize;
            font-size: 14px;
            font-weight: 300;
            padding-top: 7px;
            padding-bottom: 7px;
            -webkit-transition: .2s;
            transition: .2s;
            position: relative;
        }

            .col-sidebar__category ul li a:hover {
                background: #f7f7f7;
                padding-left: 5px;
            }

.page-content__header {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

    .page-content__header .title {
        color: #222;
        font-size: 28px;
        line-height: 1.3;
        text-transform: capitalize;
    }

    .page-content__header .date {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #999;
        font-size: 14px;
    }

        .page-content__header .date .icon {
            margin-right: 10px;
            font-size: 14px;
        }

.page-content__heading {
    color: #fcc30a;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .5px;
    padding-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.page-content__photo {
    overflow: hidden;
    height: 470px;
    margin-bottom: 25px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-content__photo {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .page-content__photo {
        height: auto;
    }
}

.page-content__photo img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-content__photo.small {
    max-height: 250px;
}

.page-content__spot {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    color: #222;
}

.page-content__description {
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

    .page-content__description.style-1 {
        padding-left: 100px;
        padding-right: 100px;
        text-align: center;
        margin-top: 20px;
    }

    .page-content__description strong {
        font-weight: 700;
    }

    .page-content__description img {
        max-width: 100%;
    }

.page-content__gallery {
    margin-top: 50px;
}

.page-content__summary {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .page-content__summary {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.page-content__summary .title {
    font-size: 32px;
    font-weight: 600;
    color: #e0b582;
    line-height: 1.4;
    padding-right: 40px;
    text-align: right;
}

@media (max-width: 991px) {
    .page-content__summary .title {
        padding-right: 0;
        text-align: inherit;
        margin-bottom: 20px;
    }
}

.page-content__summary .text {
    line-height: 1.9;
    font-weight: 300;
}

    .page-content__summary .text strong {
        font-weight: 700;
    }

@media (max-width: 991px) {
    .page-content__summary .text {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .breadcrumb {
        display: none;
    }
}

.breadcrumb.style-1 {
    position: absolute;
    right: 10px;
}

.breadcrumb.dark ul li a {
    color: #222;
}

    .breadcrumb.dark ul li a:after {
        border-top: 1px solid #999;
        border-right: 1px solid #999;
    }

.breadcrumb ul li a {
    font-size: 12px;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    letter-spacing: .5px;
    text-transform: uppercase;
    height: 30px;
    opacity: .8;
    -webkit-transition: .3s;
    transition: .3s;
}

    .breadcrumb ul li a:after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-left: 8px;
        margin-right: 13px;
    }

    .breadcrumb ul li a:hover {
        opacity: 1;
        color: #fcc30a;
    }

    .breadcrumb ul li a .icon {
        font-size: 14px;
    }

.breadcrumb ul li:last-child a:after {
    display: none;
}

.contact {
    margin-top: 50px;
}

.contact-address ul li {
    position: relative;
}

@media (max-width: 479px) {
    .contact-address ul li {
        margin-bottom: 40px;
    }

        .contact-address ul li:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 480px) and (max-width: 767px) {
    .contact-address ul li {
        margin-bottom: 40px;
    }

        .contact-address ul li:nth-last-child(-n+2) {
            margin-bottom: 0;
        }
}

.contact-address .icon {
    margin-right: 0;
    background: #e0b582;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: -16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}

.contact-address__info {
    background: #f7f7f7;
    padding-right: 20px;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100px;
}

    .contact-address__info .title {
        text-transform: uppercase;
        color: #222;
        font-size: 18px;
        font-weight: 700;
    }

    .contact-address__info .text {
        color: #999;
        font-size: 14px;
        padding-top: 5px;
        line-height: 1.3;
    }

.contact-address__cards .item {
    margin-bottom: 20px;
}

    .contact-address__cards .item:last-child {
        margin-bottom: 0;
    }

.contact-address__wrapper {
    background: #f1f1f1;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

    .contact-address__wrapper .icon {
        width: 65px;
        height: 65px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 28px;
        color: #fcc30a;
        background: #fff;
    }

.contact-address__summary .title {
    color: #222;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.contact-address__summary .address {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-address__summary .address,
.contact-address__summary .text {
    color: #6f6f6f;
    font-size: 14px;
}

.contact-map iframe {
    height: 500px;
    width: 100%;
}

@media (min-width: 480px) and (max-width: 767px) {
    .contact-map iframe {
        height: 400px;
    }
}

.position-inherit {
    position: inherit;
}

.hover-line:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    background: #fff;
    width: 0;
    height: 1px;
    -webkit-transition: width .3s;
    transition: width .3s;
}

.hover-line:hover {
    opacity: 1;
}

    .hover-line:hover:before {
        width: 100%;
    }

.no-scroll {
    overflow: hidden;
}

.no-scroll-y {
    overflow-y: hidden;
}

.no-scroll-x {
    overflow-x: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.l-relative {
    position: relative;
}

.l-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.text-center {
    text-align: center;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-between {
    -webkit-box-align: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
}

.hidden {
    display: none;
}


.navigation-dropdown__item {
    height: 150px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px 25px;
    border-radius: 15px;
}

    .navigation-dropdown__item:hover {
        background-color: var(--color-primary);
    }

        .navigation-dropdown__item:hover .title {
            color: #fff;
        }

        .navigation-dropdown__item:hover .icon {
            border: 2px solid #fff;
            color: #fff;
        }

    .navigation-dropdown__item .icon {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        border-radius: 11px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        opacity: 0.3;
        font-size: 16px;
        border: 2px solid #000;
        color: #000;
        display: flex;
    }

    .navigation-dropdown__item .title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.35;
    }

ul.flexbox {
    margin: 0;
    padding: 0;
}


@media (max-width: 767px) {
    .hidden {
        display: block !important;
    }
}

@media (max-width: 479px) {
    .xs-hidden {
        display: none;
    }
}

@media (max-width: 767px) {
    .sm-hidden {
        display: none;
    }
}

@media (max-width: 991px) {
    .md-hidden {
        display: none;
    }
}

.padding-v-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-v-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-v-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-v-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-v-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-top-0 {
    padding-top: 0;
}

.padding-bottom-0 {
    padding-bottom: 0;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.margin-v-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.margin-v-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin-v-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.margin-v-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.margin-v-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.margin-top-0 {
    margin-top: 0;
}

.margin-bottom-0 {
    margin-bottom: 0;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-top-70 {
    margin-top: 70px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}
