@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,400italic,700italic,900);
@import url(http://fonts.googleapis.com/css?family=Damion);
@import "../fonts/css/font-awesome.min.css";
@import "../plugins/owl/owl.carousel.css";
@import "../plugins/owl/owl.theme.css";
@import "../plugins/owl/owl.transitions.css";
@import "../js/fullcalendar/fullcalendar.css";
@import "../js/select2/select2.css";
@import "../js/datapicker/datepicker.css";
@import "../fonts/css/weather-icons.css";

.ct-m-imageCenter {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

a {
    text-decoration: none;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

.main-head {
    width: 100%;
    /* background-color: rgb(255, 255, 255); */
    position: absolute;
    /* box-shadow: 0px 1px 5px #9E9E9E; */
}

@-webkit-keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 40px;
    color: #055194;
    margin: 0;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 23px;
}

small {
    font-size: 12px;
    font-weight: 500;
}

p {
    line-height: 1.75em;
    font-size: 18px;
}

span {
    font-size: 16px;
}

.back {
    background-color: rgba(130, 130, 130, 0);
    padding: 18px 0px;
    border-bottom: #055194 1px dotted;
    margin-bottom: 15px;
    color: #055194;
    font-size: 36px;
}

p.paragraph-icon {
    position: relative;
}

p.paragraph-icon:before {
    font-family: FontAwesome;
    content: "\f099";
    font-size: 39px;
    position: absolute;
    top: 10px;
    left: 23px;
}

q {
    font-size: 28px;
    line-height: 38px;
}

hr.hr-dotted {
    margin-top: 25px;
    margin-bottom: 25px;
    border: 0;
    border-top: none;
    width: 100%;
    height: 5px;
    background-image: url('../images/widget-dot.png');
}

.ct-fw-300 {
    font-weight: 300;
}

.ct-fw-400 {
    font-weight: 400;
}

.ct-fw-500 {
    font-weight: 500;
}

.ct-fw-600 {
    font-weight: 600;
}

.ct-fw-700 {
    font-weight: 700;
}

.ct-fw-800 {
    font-weight: 800;
}

.ct-fw-900 {
    font-weight: 900;
}

.ct-fs-i {
    font-style: italic;
}

.ct-fs-n {
    font-style: normal;
}

.ct-u-size9 {
    font-size: 9px;
}

.ct-u-size16 {
    font-size: 16px;
}

.ct-u-size18 {
    font-size: 18px;
}

.ct-u-displayTable,
.ct-u-displayTableVertical {
    display: table;
    width: 100%;
}

.ct-u-displayTableVertical {
    height: 100%;
}

.ct-u-displayTableVertical .ct-u-displayTableCell {
    vertical-align: middle;
}

.ct-u-displayTableRow {
    display: table-row;
}

.ct-u-displayTableCell {
    display: table-cell;
}

.ct-colorB1B1B1 {
    color: #b1b1b1;
}

.ct-u-paddingBoth10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ct-u-paddingTop10 {
    padding-top: 10px;
}

.ct-u-paddingBottom10 {
    padding-bottom: 10px;
}

.ct-u-paddingTop15 {
    padding-top: 15px;
}

.ct-u-paddingBoth15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ct-u-paddingBoth20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ct-u-paddingTop20 {
    padding-top: 20px;
}

.ct-u-paddingBottom20 {
    padding-bottom: 20px;
}

.ct-u-paddingBoth25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.ct-u-paddingTop25 {
    padding-top: 25px;
}

.ct-u-paddingBottom25 {
    padding-bottom: 25px;
}

.ct-u-paddingBoth30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ct-u-paddingTop30 {
    padding-top: 30px;
}

.ct-u-paddingBottom30 {
    padding-bottom: 30px;
}

.ct-u-paddingBoth40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ct-u-paddingTop40 {
    padding-top: 40px;
}

.ct-u-paddingRight45 {
    padding-right: 45px;
}

.ct-u-paddingBottom40 {
    padding-bottom: 40px;
}

.ct-u-paddingBoth50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ct-u-paddingBoth55 {
    padding-top: 55px;
    padding-bottom: 55px;
}

.ct-u-paddingTop50 {
    padding-top: 0px;
    padding-bottom: 6px;
    border-top: #045293 1px solid;
    margin-top: 25px;
}

.ct-u-paddingBottom50 {
    padding-bottom: 50px;
}

.ct-u-paddingBoth60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ct-u-paddingTop60 {
    padding-top: 25px;
    padding-bottom: 0px;
}

.ct-u-paddingTop60 hr {
    margin-top: 17px;
    margin-bottom: 26px;
    border: 0;
    border-top: 1px solid #D5D5D5;
}

.ct-u-paddingBottom60 {
    padding-bottom: 60px;
}

.ct-u-paddingBoth70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ct-u-paddingTop70 {
    padding-top: 70px;
}

.ct-u-paddingBottom70 {
    padding-bottom: 70px;
}

.ct-u-paddingBoth80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ct-u-paddingTop80 {
    padding-top: 35px;
    background-color: #dde4eb;
    background-size: cover;
    /* margin-top: 33px; */
}

.ct-u-paddingBottom80 {
    padding-bottom: 80px;
}

.ct-u-paddingBoth90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.ct-u-paddingTop90 {
    padding-top: 90px;
}

.ct-u-paddingBottom90 {
    padding-bottom: 90px;
}

.ct-u-paddingBoth100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ct-u-paddingTop100 {
    padding-top: 100px;
}

.ct-u-paddingBottom100 {
    padding-bottom: 100px;
}

.ct-u-paddingBoth130 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ct-u-paddingBottom120 {
    padding-bottom: 120px;
}

.ct-u-paddingBoth150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.ct-u-paddingTop150 {
    padding-top: 150px;
}

.ct-u-paddingBottom150 {
    padding-bottom: 150px;
}

.ct-u-marginTop0 {
    margin-top: 0 !important;
}

.ct-u-marginBoth10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.ct-u-marginTop10 {
    margin-top: 10px;
}

.ct-u-marginBottom10 {
    margin-bottom: 10px;
}

.ct-u-marginBoth20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ct-u-marginTop20 {
    margin-top: 20px;
}

.ct-u-marginBottom20 {
    margin-bottom: 20px;
}

.ct-u-marginBottom25 {
    margin-bottom: 25px;
}

.ct-u-marginBoth30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ct-u-marginTop30 {
    margin-top: 30px;
}

.ct-u-marginBottom30 {
    margin-bottom: 10px;
}

.ct-u-marginBoth40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ct-u-marginTop40 {
    margin-top: 30px;
}

.ct-u-marginBottom40 {
    margin-bottom: 40px;
}

.ct-u-marginBoth50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ct-u-marginTop50 {
    margin-top: 50px;
}

.ct-u-marginBottom50 {
    margin-bottom: 50px;
}

.ct-u-marginBoth60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.ct-u-marginTop60 {
    margin-top: 60px;
}

.ct-u-marginBottom60 {
    margin-bottom: 60px;
}

.ct-u-marginBoth70 {
    margin-top: 70px;
    margin-bottom: 70px;
}

.ct-u-marginTop70 {
    margin-top: 70px;
}

.ct-u-marginBottom70 {
    margin-bottom: 70px;
}

.ct-u-marginBoth80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.ct-u-marginTop80 {
    margin-top: 80px;
}

.ct-u-marginBottom80 {
    margin-bottom: 80px;
    margin-top: 34px;
}

.ct-u-marginBoth90 {
    margin-top: 90px;
    margin-bottom: 90px;
}

.ct-u-marginTop90 {
    margin-top: 90px;
}

.ct-u-marginBottom90 {
    margin-bottom: 72px;
}

.ct-u-marginBoth100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.ct-u-marginTop100 {
    margin-top: 100px;
}

.ct-u-marginBottom100 {
    margin-bottom: 100px;
}

.ct-u-marginTop110 {
    margin-top: 10px;
}

.ct-u-marginBottom120 {
    margin-bottom: 120px;
}

.ct-u-marginBoth150 {
    margin-top: 150px;
    margin-bottom: 150px;
}

.ct-u-marginTop150 {
    margin-top: 150px;
}

.ct-u-marginBottom150 {
    margin-bottom: 150px;
}

.ct-u-colorWhite {
    color: #ffffff;
}

.ct-u-backgroundWhite {
    background-color: #ffffff;
}

.ct-u-backgroundGray {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .text-center-sm {
        text-align: center;
    }

    header .btn-sec, header .btn-sec a{
        width: 100%;
        margin-top: 10px;
    }
}

/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #cccccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #cccccc;
}

.mfp-preloader a:hover {
    color: white;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    padding: 0 0 18px 10px;
    color: white;
    font-style: normal;
    font-size: 28px;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: white;
    top: -41px;
    right: -8px;
    text-align: right;
    padding-right: 6px;
    font-size: 40px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 30px;
    color: #9c9c9c;
    font-size: 14px;
    line-height: 74px;
}

.mfp-arrow {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 56px;
    height: 56px;
    top: 50%;
    margin-top: -28px;
    background: #fff;
    color: #000;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
    opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    filter: alpha(opacity=50);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: none;
    position: absolute;
}

.mfp-arrow.mfp-arrow-left,
.mfp-arrow.mfp-arrow-right {
    font-family: fontawesome;
    font-size: 33px;
    line-height: 55px;
}

.mfp-arrow.mfp-arrow-left {
    left: 25px;
}

.mfp-arrow.mfp-arrow-left:before {
    content: "\f104";
}

.mfp-arrow.mfp-arrow-right {
    right: 25px;
}

.mfp-arrow.mfp-arrow-right:before {
    content: "\f105";
}

.mfp-arrow:focus {
    outline: none;
}

.mfp-arrow:hover {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black;
}

/* Main image in popup */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    background: none;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
    padding: 6px;
    border: 5px solid rgba(255, 255, 255, 0.16);
}

.mfp-figure figure figcaption {
    position: relative;
}

.mfp-bottom-bar {
    padding: 10px;
    position: absolute;
    bottom: 0;
    height: 75px;
    background: rgba(0, 0, 0, 0.8);
    left: 0px;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 74px;
    color: #fff;
    font-size: 18px;
    word-wrap: break-word;
    padding-right: 26px;
    position: absolute;
    top: 0;
    left: 27px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

.ct-formSection.linesTop {
    position: relative;
}

.ct-formSection.linesTop:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 19px;
    background-image: url(../images/slash-line-big.html);
}

.input-group {
    width: 100%;
}

.form-control {
    height: auto;
    padding-top: 9px;
    padding-bottom: 9px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ededed;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: transparent;
    -webkit-box-shadow: 0 0 1px #545454;
    -moz-box-shadow: 0 0 1px #545454;
    box-shadow: 0 0 1px #545454;
}

.form-control::-webkit-input-placeholder {
    color: #cbcbcb;
    font-size: 15px;
    margin-left: 18px;
}

.form-control:-moz-placeholder {
    color: #cbcbcb;
    font-size: 15px;
    margin-left: 18px;
}

.form-control::-moz-placeholder {
    color: #cbcbcb;
    font-size: 15px;
    margin-left: 18px;
}

.form-control:-ms-input-placeholder {
    color: #cbcbcb;
    font-size: 15px;
    margin-left: 18px;
}

.form-group {
    margin-bottom: 17px;
}

textarea {
    resize: vertical;
}

.ct-searchForm {
    position: relative;
}

.ct-searchForm .form-control {
    height: 50px;
    padding-left: 22px;
    line-height: 49px;
    border: 1px solid #eaebec;
    background-color: transparent;
}

.ct-searchForm .form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.ct-searchForm:after {
    position: absolute;
    font-family: fontawesome;
    top: 50%;
    margin-top: -12px;
    right: 19px;
    content: "\f002";
    font-size: 18px;
    color: #c7c7c7;
}

.ct-bookForm .form-group {
    margin: 0;
}

.ct-bookForm .form-control {
    margin: 9px 0;
    border: 1px solid #e7e7e7;
}

.ct-bookForm .form-control::-webkit-input-placeholder {
    color: #626262;
    font-size: 14px;
    margin-left: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.ct-bookForm .form-control:-moz-placeholder {
    color: #626262;
    font-size: 14px;
    margin-left: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.ct-bookForm .form-control::-moz-placeholder {
    color: #626262;
    font-size: 14px;
    margin-left: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.ct-bookForm .form-control:-ms-input-placeholder {
    color: #626262;
    font-size: 14px;
    margin-left: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.ct-bookForm > .input-group[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.ct-formSlash {
    width: 100%;
    height: 12px;
    background: url('../images/form-slash.png') repeat-x;
}

@media (max-width: 992px) {
    .ct-searchForm {
        margin-top: 30px;
    }
}

button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn {
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px;
    font-weight: 500;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 0px;
}

.btn:active,
.btn.active {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
}

.btn-xs {
    font-size: 13px;
    padding: 6px 10px;
}

.btn-sm {
    font-size: 13px;
    padding: 13px 34px;
}

.btn-lg {
    font-size: 16px;
    padding: 17px 14px;
}

.btn-primary {
    color: #fff;
    border: none;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: #fff;
}

.btn-secondary {
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

.btn-default {
    color: #565656;
    border: none;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
    color: #565656;
}

.btn-link {
    color: #fff;
    border: 2px solid transparent;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
    background-color: transparent;
    border: 2px solid white;
    text-decoration: none;
    color: #fff;
}

.btn-transparent {
    color: #fff;
    border: 2px solid #fff;
}

.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
    background-color: transparent;
    text-decoration: none;
    color: #fff;
}

/* **************************************
  MEDIA SECTIONS - VIDEO/PARALLAX/KENBURNS
  **************************************** */

video {
    width: 100%;
}

.ct-mediaSection {
    background-color: #F9F9F9;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.ct-mediaSection video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
}

.ct-mediaSection .ct-mediaSection-inner {
    position: relative;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .ct-mediaSection {
        width: 100%;
        display: block;
    }

    .ct-mediaSection .ct-mediaSection-inner {
        display: block;
        width: auto;
    }
}

.ct-mediaSection[data-type="pattern"] {
    background-repeat: repeat;
    display: table;
}

.ct-mediaSection[data-type="pattern"] .ct-mediaSection-inner {
    display: table-cell;
}

.ct-mediaSection[data-type="parallax"] {
    background-attachment: fixed;
    display: table;
}

.ct-mediaSection[data-type="parallax"].ct-mediaSection--stellar {
    overflow: hidden;
}

.ct-mediaSection[data-type="parallax"] .ct-mediaSection-inner {
    display: table-cell;
}

@media (max-width: 768px) {
    .ct-mediaSection[data-type="parallax"] {
        display: block;
    }

    .ct-mediaSection[data-type="parallax"] .ct-mediaSection-inner {
        display: block;
    }
}

.ct-mediaSection[data-type="video"] {
    display: block;
}

.ct-mediaSection[data-type="video"] .ct-u-displayTable {
    height: 100%;
    position: absolute;
    top: 0;
}

.ct-mediaSection[data-type="video"] .ct-mediaSection-inner {
    display: table-cell;
}

.ct-mediaSection[data-type="video"] .ct-mediaSection-video {
    position: absolute;
    min-width: 100%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .ct-mediaSection[data-type="video"] .ct-u-displayTable {
        display: block;
        position: relative;
    }

    .ct-mediaSection[data-type="video"] .ct-u-displayTable .ct-mediaSection-inner {
        display: block;
    }
}

.ct-mediaSection[data-type="kenburns"] {
    overflow: hidden;
    display: table;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-inner {
    display: table-cell;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer::after {
    height: 100%;
    content: '';
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    background-color: #0000002b;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer > img {
    vertical-align: middle;
    position: absolute;
    min-width: 105%;
    min-height: 100%;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    margin-left: -5%;
    -webkit-transition-property: opacity, -webkit-transform;
    -webkit-transition-duration: 3s, 8s;
    -moz-transition-property: opacity, -moz-transform;
    -moz-transition-duration: 3s, 8s;
    -o-transition-property: opacity, -o-transform;
    -o-transition-duration: 3s, 8s;
    transition-property: opacity, transform;
    transition-duration: 3s, 8s;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer > img.singlefx {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer > img {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer :nth-child(2n+1) {
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -o-transform-origin: top right;
    transform-origin: top right;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer :nth-child(3n+1) {
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer :nth-child(4n+1) {
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer .fx:first-child + img ~ img {
    z-index: -1;
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer .fx {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
    -webkit-transform: scale(1.1) translate(30px);
    -moz-transform: scale(1.1) translate(30px);
    -o-transform: scale(1.1) translate(30px);
    transform: scale(1.1) translate(30px);
}

.ct-mediaSection[data-type="kenburns"] .ct-mediaSection-kenburnsImageContainer .singlefx {
    -webkit-animation: singleimageloop 20s infinite;
    /* Safari 4+ */
    -moz-animation: singleimageloop 20s infinite;
    /* Fx 5+ */
    -o-animation: singleimageloop 20s infinite;
    /* Opera 12+ */
    animation: singleimageloop 20s infinite;
    /* IE 10+ */
}

@-webkit-keyframes singleimageloop {
    0% {
        -webkit-transform: scale(1) translate(0px);
    }

    50% {
        -webkit-transform: scale(1.1) translate(30px);
    }

    100% {
        -webkit-transform: scale(1) translate(0px);
    }
}

@-moz-keyframes singleimageloop {
    0% {
        -moz-transform: scale(1) translate(0px);
    }

    50% {
        -moz-transform: scale(1.1) ct-m-translate(30px);
    }

    100% {
        -moz-transform: scale(1) translate(0px);
    }
}

@-o-keyframes singleimageloop {
    0% {
        -o-transform: scale(1) translate(0px);
    }

    50% {
        -o-transform: scale(1.1) translate(30px);
    }

    100% {
        -o-transform: scale(1) translate(0px);
    }
}

@keyframes singleimageloop {
    0% {
        transform: scale(1) translate(0px);
    }

    50% {
        transform: scale(1.1) translate(30px);
    }

    100% {
        transform: scale(1) translate(0px);
    }
}

.ct-mediaSection-stellarObject {
    position: absolute;
}

.snapjs-right {
    overflow: hidden !important;
}

.ct-navbar--fixedTop .ct-navbarMobile {
    position: fixed;
}

.ct-navbarMobile {
    position: absolute;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background-color: #fff;
    color: #000;
}

.ct-navbarMobile .navbar-brand {
    height: 100px;
    padding: 0 15px;
    width: 100%;
}

.ct-navbarMobile .navbar-brand .ct-logo {
    position: relative;
    display: inline-block;
    margin-top: 28px;
    margin-left: 24px;
    width: 51%;
}

.ct-navbarMobile .navbar-toggle {
    position: absolute;
    top: 24px;
    right: 0px;
}

.ct-navbarMobile .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.snapjs-right .ct-menuMobile,
.snapjs-left .ct-menuMobile {
    overflow: scroll;
}

.ct-menuMobile {
    background: #222222;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 266px;
    max-height: 100%;
    overflow: hidden;
}

.ct-menuMobile .dropdown a i {
    padding-left: 4px;
}

.ct-menuMobile .ct-menuMobile-navbar {
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.ct-menuMobile .ct-menuMobile-navbar li {
    padding: 0px;
}

.ct-menuMobile .ct-menuMobile-navbar li a {
    color: #fff;
    padding: 10px 20px;
    display: block;
}

.ct-menuMobile .ct-menuMobile-navbar li a:focus,
.ct-menuMobile .ct-menuMobile-navbar li a:active {
    outline: none !important;
}

.ct-menuMobile .ct-menuMobile-navbar li.active {
    background-color: #ffffff;
}

.ct-menuMobile .ct-menuMobile-navbar .dropdown-menu {
    position: relative;
    display: block;
    max-height: 0;
    padding: 0;
    -webkit-transition: all 0.2s ease 0.2s ease-out;
    -moz-transition: all 0.2s ease 0.2s ease-out;
    -o-transition: all 0.2s ease 0.2s ease-out;
    transition: all 0.2s ease 0.2s ease-out;
    overflow: hidden;
    border: none;
    width: 100%;
    left: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.ct-menuMobile .ct-menuMobile-navbar .dropdown-menu .dropdown-menu {
    display: block;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.ct-menuMobile .ct-menuMobile-navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
    padding-left: 20px;
}

.ct-menuMobile .ct-menuMobile-navbar .dropdown-menu a {
    color: #000;
}

.ct-menuMobile .ct-menuMobile-navbar .open .dropdown-menu {
    padding: 10px 0;
    margin: 0 0 10px 0;
    max-height: none;
}

@media (min-width: 768px) {

    .ct-navbarMobile,
    .ct-menuMobile {
        display: none;
    }
}

.ct-header {
    background: #fff;
}

header {
    overflow: visible !important;
}

.ct-contact {
    position: relative;
    margin-right: 75px;
}

.ct-contact:after {
    content: "";
    position: absolute;
    right: 100%;
    top: -4px;
    width: 4px;
    height: 55px;
}

.ct-contact:before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.ct-contact .ct-contact-right {
    color: #fff;
    font-size: 16px;
    min-height: 51px;
    line-height: 50px;
    padding: 0 20px;
    display: inline-block;
    position: relative;
}

.ct-contact .ct-contact-right:after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 51px 75px 0 0;
}

.ct-contact .ct-contact-right:before {
    content: "";
    position: absolute;
    left: 100%;
    bottom: 100%;
    width: 75px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

nav.navbar {
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

nav.navbar ul.nav.navbar-nav {
    position: relative;
    z-index: 2000;
    padding: 0 21px 0 0;
}

nav.navbar ul.nav.navbar-nav:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 75px 78px;
    position: absolute;
    left: -79px;
    top: 0;
}

nav.navbar ul.nav.navbar-nav:after {
    content: "";
    position: absolute;
    left: -77px;
    top: 100%;
    width: 81px;
    height: 4px;
}

nav.navbar ul.nav.navbar-nav > li > a {
    /* position: relative; */
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    padding: 27px 15px;
    display: inline-flex;
}

nav.navbar ul.nav.navbar-nav > li > a span {
    /* position: absolute; */
    top: 0;
    /* left: 38%; */
    /* float: left; */
    padding-right: 8px;
}

nav.navbar ul.nav.navbar-nav > li > a:hover {
    background: none;
}

nav.navbar ul.nav.navbar-nav > li > a:focus {
    background: transparent;
}

nav.navbar ul.nav.navbar-nav > li:not(:first-child):after {
    content: "";
    display: block;
    width: 2px;
    height: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -18px;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a {
    position: relative;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    top: 100%;
    left: 0;
    background-color: #f5f5f5;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0 28px 0 23px;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li > a {
    font-size: 13px;
    color: #434343;
    padding: 14px 7px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e5e5e5;
    min-width: 180px;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li > a:hover {
    background: none;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li:hover a {
    color: #fff;
    border-bottom-color: transparent;
    border-top-color: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li:first-child a {
    border-top-color: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li:last-child a {
    border-bottom-color: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu {
    position: relative;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    top: 0;
    left: 100%;
    background-color: #f5f5f5;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu > li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0 28px 0 23px;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu > li > a {
    font-size: 13px;
    color: #434343;
    padding: 14px 7px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e5e5e5;
    min-width: 180px;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu > li > a:hover {
    background: none;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu > li:hover a {
    color: #fff;
    border-bottom-color: transparent;
    border-top-color: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu > li:first-child a {
    border-top-color: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu > li:last-child a {
    border-bottom-color: transparent;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover > ul.dropdown-menu {
    display: block;
}

nav.navbar ul.nav.navbar-nav > li.dropdown:hover > ul.dropdown-menu {
    display: block;
}

nav.navbar ul.nav.navbar-nav > li:last-child.dropdown:hover > ul.dropdown-menu {
    left: auto;
    right: 0;
}

nav.navbar ul.nav.navbar-nav > li > span {
    padding: 4px 6px;
    font-size: 11px;
    color: #fff;
    position: absolute;
    top: -4px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

nav.navbar ul.nav.navbar-nav > li > span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4.5px 0 4.5px;
    top: 100%;
    left: 50%;
    margin-left: -4.5px;
}

nav.navbar ul.nav.navbar-nav a {
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    nav.navbar ul.nav.navbar-nav > li > a {
        font-size: 13px;
        padding: 27px 8px;
    }
}

.ct-logo {
    width: 16%;
}

.ct-logo1 {
    position: relative;
    width: 82%;
    display: inline-block;
}

.ct-logo > h1 {
    display: inline-block;
    font-family: "Damion";
    font-size: 54px;
    background: white;
    position: relative;
    padding: 2px 20px 5px 0;
    margin: 0;
    letter-spacing: 2px;
    color: #3e3e42;
}

.ct-logo > h1 span {
    font-family: Lato;
    color: #868686;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    left: 63px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 8px;
}

.ct-logo > img {}

.ct-logo > span.shapeBottom {
    position: absolute;
    height: 90px;
    width: 86%;
    top: 100%;
    left: 0;
    display: block;
}

.ct-logo > span.shapeBottom:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 55px 45px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    bottom: 0;
    right: 100%;
    display: block;
    z-index: 1000;
}

.ct-logo > span.shapeTop {
    position: absolute;
    height: 39px;
    width: 86%;
    bottom: 100%;
    left: -55px;
    display: block;
    z-index: 1000;
}

.ct-logo > span.shapeTop:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 39px 0 0 55px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    z-index: 1000;
}

.ct-logo > span.shapeTop:before {
    content: "";
    position: absolute;
    background: #fff;
    height: 46px;
    width: 55px;
    top: 100%;
    left: 0;
    display: block;
    z-index: 1000;
}

.ct-logo.ct-logo--transparent > h1 {
    color: #fff;
    background-color: transparent;
}

.ct-logo.ct-logo--transparent > h1 span {
    color: #fff;
}

.ct-navbar--bounceIn > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--fadeIn > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--fadeInLeft > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--fadeInRight > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--fadeInDown > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--fadeInUp > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--pulse > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--bounceInRight > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--bounceInLeft > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--flipInX > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--flipInY > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--zoomIn > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--zoomInDown > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.ct-navbar--zoomInUp > li.dropdown:hover .dropdown-menu {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.navbar-scroll-top.ct-menu {
    -webkit-box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
    -moz-box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.3);
}

.navbar-scroll-top.ct-menu .ct-contact {
    display: none;
}

.navbar-scroll-top.ct-menu nav.navbar ul.nav.navbar-nav:before,
.navbar-scroll-top.ct-menu nav.navbar ul.nav.navbar-nav:after {
    display: none;
}

.navbar-scroll-top.ct-menu nav.navbar ul.nav.navbar-nav {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.navbar-scroll-top.ct-menu .ct-logo {
    display: block;
    float: left;
    margin-top: 18px;
}

.ct-menu {
    position: relative;
    z-index: 9000;
    width: 80%;
    float: right;
    margin-top: 17px;
}

.ct-menu .ct-logo {
    display: none;
    margin-top: 15px;
}

.ct-menu .ct-logo > h1 {
    font-size: 48px;
}

.ct-menu .ct-logo > h1 span {
    top: 11px;
    left: 57px;
}

@media (max-width: 1200px) {
    .navbar-scroll-top.ct-menu .ct-logo {
        display: none;
    }
}

ul.ct-socials {
    margin: 0;
    padding: 0 13px;
    min-height: 51px;
    display: inline-block;
}

ul.ct-socials > li {
    padding: 0;
    margin-right: 9px;
    background-color: #000;
}

ul.ct-socials > li > a {
    padding: 19px 12px;
    font-size: 16px;
    line-height: 35px;
    color: #fff;
}

ul.ct-socials > li .tooltip.top {
    margin-top: -15px;
}

ul.ct-socials.ct-socials--small {
    background: transparent;
}

ul.ct-socials.ct-socials--small > li > a {
    font-size: 17px;
    color: #454545;
    padding: 0 2px;
}

.owl-carousel {
    position: relative;
}

.owl-carousel .ct-promo,
.owl-carousel .ct-picture {
    margin: 0 6px;
}

.owl-carousel .item {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.owl-carousel .item .textbox {
    width: 94%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    background: rgba(0, 0, 0, 0.48);
}

.owl-carousel .item:hover .textbox {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.text {
    font-size: 28px;
    color: #FFFFFF;
    margin: 0;
    padding-bottom: 0;
    padding: 2% 0%;
    font-weight: 300;
}

.textbox {
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.owl-carousel .owl-item {
    text-align: center;
}

.owl-carousel.owl-theme .owl-controls {
    margin: 0;
}

.owl-carousel.owl-theme .owl-controls .owl-buttons div {
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
}

.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-prev,
.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-next {
    color: #ffffff;
    width: 35px;
    height: 35px;
    top: 50%;
    /* margin-top: -22.5px; */
    background: #045293;
    transform: translateY(-50%);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}

.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-prev:before,
.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-next:before {
    font-family: fontawesome;
    font-size: 36px;
    line-height: 30px;
}

.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-prev {
    left: -40px;
}

.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-prev:before {
    content: "\f104";
}

.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-next {
    right: -40px;
}

.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-next:before {
    content: "\f105";
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev,
.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 56px;
    height: 56px;
    top: 50%;
    margin-top: -28px;
    background: #fff;
    color: #616161;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
    opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    filter: alpha(opacity=50);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev:before,
.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next:before {
    font-family: fontawesome;
    font-size: 33px;
    line-height: 55px;
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev {
    left: 20px;
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev:before {
    content: "\f104";
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next {
    right: 20px;
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next:before {
    content: "\f105";
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev:hover,
.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next:hover {
    color: #fff;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-prev,
.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-next {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    top: 50%;
    margin-top: -28px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-prev:before,
.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-next:before {
    font-family: fontawesome;
    font-size: 25px;
    line-height: 35px;
    color: #fff;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-prev {
    left: 2px;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-prev:before {
    content: "\f104";
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-next {
    right: 2px;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-next:before {
    content: "\f105";
}

.owl-carousel.linesTop .item {
    position: relative;
}

.owl-carousel.linesTop .item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 19px;
    background-image: url(images/slash-line-big.html);
}

.owl-carousel.owl-carousel--arrowsOutside .owl-controls .owl-buttons .owl-next {
    right: -90px;
}

.owl-carousel.owl-carousel--arrowsOutside .owl-controls .owl-buttons .owl-prev {
    left: -90px;
}

@media (max-width: 1300px) {
    .owl-carousel.owl-carousel--arrowsOutside .owl-controls .owl-buttons .owl-next {
        right: -45px;
    }

    .owl-carousel.owl-carousel--arrowsOutside .owl-controls .owl-buttons .owl-prev {
        left: -45px;
    }
}

@media (max-width: 992px) {
    .owl-carousel.owl-carousel--arrowsOutside .owl-controls .owl-buttons .owl-next {
        right: 0;
    }

    .owl-carousel.owl-carousel--arrowsOutside .owl-controls .owl-buttons .owl-prev {
        left: 0;
    }
}

@media (max-width: 480px) {
    .owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next {
        right: 0;
    }

    .owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev {
        left: 0;
    }
    

}

img,
figure {
    max-width: 100%;
}

iframe {
    border: none;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    color: #3e3e42;
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
}

::selection {
    color: #fff;
}

.ct-pageWrapper {
    z-index: 3;
    /* background: url("../images/background.jpg"); */
}

body.boxed .ct-pageWrapper,
.ptn1 .ct-pageWrapper,
.ptn2 .ct-pageWrapper,
.ptn3 .ct-pageWrapper,
.ptn4 .ct-pageWrapper,
.ptn5 .ct-pageWrapper,
.ptn6 .ct-pageWrapper,
.ptn7 .ct-pageWrapper,
.ptn8 .ct-pageWrapper,
.ptn9 .ct-pageWrapper,
.ptn10 .ct-pageWrapper,
.ptn11 .ct-pageWrapper,
.ptn12 .ct-pageWrapper,
.ptn13 .ct-pageWrapper {
    max-width: 1200px;
    margin: auto;
}

.ct-preloader {
    position: fixed;
    z-index: 99998;
    width: 100vw;
    height: 100vh;
    background: #fff;
    overflow: hidden;
}

.ct-preloader .ct-preloader-content {
    position: absolute;
    z-index: 99999;
    top: 50%;
    margin-top: -22px;
    left: 50%;
    margin-left: -22px;
    height: 44px;
    width: 44px;
    background: url("../images/rings.svg");
}

.ptn1,
.ptn2,
.ptn3,
.ptn4,
.ptn5,
.ptn6,
.ptn7,
.ptn8,
.ptn9,
.ptn10,
.ptn11,
.ptn12,
.ptn13 {
    background-attachment: fixed !important;
}

.ptn1 {
    background: url("../images/bg_pattern_01.jpg") repeat;
}

.ptn2 {
    background: url("../images/bg_pattern_02.jpg") repeat;
}

.ptn3 {
    background: url("../images/bg_pattern_03.jpg") repeat;
}

.ptn4 {
    background: url("../images/bg_pattern_04.jpg") repeat;
}

.ptn5 {
    background: url("../images/bg_pattern_05.jpg") repeat;
}

.ptn6 {
    background: url("../images/bg_pattern_06.jpg") repeat;
}

.ptn7 {
    background: url("../images/bg_pattern_07.jpg") repeat;
}

.ptn8 {
    background: url("../images/bg_pattern_08.jpg") repeat;
}

.ptn9 {
    background: url("../images/bg_pattern_09.jpg") repeat;
}

.ptn10 {
    background: url("../images/bg_pattern_10.jpg") repeat;
}

.ptn11 {
    background: url("../images/bg_pattern_11.jpg") repeat;
}

.ptn12 {
    background: url("../images/bg_pattern_12.jpg") repeat;
}

@media (max-width: 767px) {
    .ct-pageWrapper {
        overflow: hidden;
        position: relative;
        padding-top: 70px;
        background-color: #fff;
    }
    .owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-prev{
        left: 0px;
    }

    .owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-next{
        right: 0px;
    }
}

.cssAnimate .animated {
    opacity: 0;
    filter: alpha(opacity=0);
    /* For IE8 and earlier */
}

.cssAnimate .activate {
    opacity: 1;
    filter: alpha(opacity=100);
    /* For IE8 and earlier */
}

a {
    color: #BDBDBD;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: #007949;
}

a:focus {
    text-decoration: none;
    color: inherit;
    outline: none !important;
}

::-moz-selection {
    /* Code for Firefox */
    background: #00a261;
}

::selection {
    background: #00a261;
}

ul.ct-socials > li > a:hover {
    color: #00a261;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #00a261 !important;
}

.tooltip .tooltip-inner {
    background-color: #00a261 !important;
}

nav.navbar {
    align-items: baseline;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li:hover {
    background: #00a261;
}

nav.navbar ul.nav.navbar-nav > li.dropdown > a + ul.dropdown-menu > li.dropdown-submenu:hover ul.dropdown-menu > li:hover {
    background: #00a261;
}

nav.navbar ul.nav.navbar-nav:before {
    border-color: transparent transparent rgba(158, 158, 158, 0) transparent;
}

.navbar-scroll-top.ct-menu {
    background-color: #00a261;
    display: none;
}

.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-prev:hover,
.owl-carousel.owl-carousel--arrowsType2 .owl-controls .owl-buttons .owl-next:hover {
    background: #00a261;
}

.owl-carousel .owl-page.active span {
    background-color: #00a261;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-prev {
    background: #ffac1b;
}

.owl-carousel.owl-carousel--arrowsType3 .owl-controls .owl-buttons .owl-next {
    background: #ffac1b;
}

.btn-link {
    background-color: #01BEDC;
}

.btn-primary {
    background-color: #00a261;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #007949;
}

.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
    background-color: #00a261;
    border-color: #00a261;
}

.btn-secondary {
    border: 2px solid #ffac1b;
    background-color: #ffac1b;
}

.ct-picture .ct-picture-inner {
    background-color: #00a261;
}

.mfp-arrow:hover {
    background-color: #00a261;
}

.ct-contactBox .ct-contactBox-inner i {
    color: #00a261;
}

.ct-listBox i {
    color: #00a261;
}

.ct-counterBox .ct-counterBox-number,
.ct-counterBox .ct-counterBox-number + span {
    color: #00a261;
}

.ct-stars.ct-stars--overall > li i {
    color: #00a261;
}

.ct-stars > li i {
    color: #ffac1b;
}

.ct-navbarMobile .navbar-toggle,
.ct-menuMobile {
    background: #055194;
}

.ct-contact .ct-contact-right {
    background-color: #ffac1b;
}

.ct-contact .ct-contact-right:after {
    border-color: #ffac1b transparent transparent transparent;
}

nav.navbar ul.nav.navbar-nav > li > span {
    background-color: #ffac1b;
}

nav.navbar ul.nav.navbar-nav > li > span:after {
    border-color: #ffac1b transparent transparent transparent;
}

.ct-board {
    background-color: #00a261;
}

.ct-board:after {
    background: #00a261;
}

.ct-board .ct-board-content .ct-wallBox {
    background-color: #0ba969;
}

.ct-board .ct-board-content .ct-wallBox:nth-child(odd) {
    background-color: #15b675;
}

.ct-board .ct-board-content:after {
    border-color: transparent #007949 transparent transparent;
}

.ct-board .ct-board-content:before {
    border-color: #007949 transparent transparent transparent;
}

@media (max-width: 992px) {
    .ct-board .ct-board-content .ct-wallBox {
        background-color: #15b675;
    }

    .ct-board .ct-board-content .ct-wallBox:nth-child(2),
    .ct-board .ct-board-content .ct-wallBox:nth-child(3) {
        background-color: #0ba969;
    }
}

@media (max-width: 480px) {
    .ct-board .ct-board-content .ct-wallBox {
        background-color: #0ba969;
    }

    .ct-board .ct-board-content .ct-wallBox:nth-child(odd) {
        background-color: #15b675;
    }
}

.ct-googleMap:before {
    background-color: #00a261;
}

.ct-googleMap .ct-googleMaps-infoBox .media-heading {
    color: #00a261;
}

.widget .widget-title i {
    color: #7D7B74;
    font-size: 25px;
}

.ct-galleryBox.ct-galleryBox--primary {
    background-color: #b90c4b;
    background: url(../images/luxury-travel.jpg) no-repeat;
    background-size: cover;
}

.ct-galleryBox.ct-galleryBox--primary1 {
    background-color: #07c2d5;
    background: url(../images/mice.jpg) no-repeat;
    background-size: cover;
}

.ct-galleryBox.ct-galleryBox--primary:hover h4 + span {
    color: #3cffb1;
}

.ct-galleryBox.ct-galleryBox--secondary {
    background-color: #ff8201;
    background: url(../images/hotels.jpg) no-repeat;
    background-size: cover;
}

.ct-galleryBox.ct-galleryBox--secondary1 {
    background-color: #336df2;
    background: url(../images/tours.jpg) no-repeat;
    background-size: cover;
}

.ct-galleryBox.ct-galleryBox--secondary:hover h4 + span {
    color: #ffe4b4;
}

.widgetSidebar .widgetSidebar-title {
    color: #00a261;
}

.ct-list.ct-list--colour > li a {
    color: #00a261;
}

.ct-list.ct-list--tagged > li a:hover {
    color: #00a261;
    border-color: #00a261;
}

.ct-list.ct-list--extended > li:before {
    color: #00a261;
}

.ct-category i {
    color: #00a261;
}

.media.media-comment h4.media-heading {
    color: #00a261;
}

.ct-titleDivider {
    color: #00a261;
}

#calendar .fc-today {
    background-color: #007949;
}

#calendar .fc-toolbar .fc-state-hover {
    background-color: #00a261 !important;
}

#calendar .fc-event {
    background: #00a261;
}

.ct-dividedSlider .ct-dividedSlider-text {
    background-color: #00a261;
}

#sync4 .owl-item.synced .media.media-slider:after {
    border-color: #00a261 transparent transparent transparent;
}

.ct-galleryContainer .ct-galleryContainer-image:after {
    background-color: #ffac1b;
}

.ct-dividedWidget-right .ct-dividedWidget-right-title {
    color: #00a261;
}

.weatherFeed .weatherItem .weatherRange .weatherRangeHigh {
    color: #00a261;
}

.weatherFeed .weatherItem .weatherForecastItem .weatherForecastRange .weatherForecastRangeHigh {
    color: #00a261;
}

.table > thead > tr > th {
    background-color: #00a261;
}

.ct-u-colorMotive {
    color: #00a261;
}

.panel-group .panel-heading a:before {
    background-color: #00a261;
}

.nav-tabs > li > a {
    background-color: #2fb1c0;
}

.ct-progressBar .progress .progress-bar.progress-bar--motive {
    background-color: #00a261;
}

.ct-progressBar .progress .progress-bar .ct-progressBar-content {
    background-color: #00a261;
}

.ct-counter small {
    color: #00a261;
}

.ct-counterBox--secundary small {
    color: #00a261;
}

.ct-counter--secundary .ct-counter-icon {
    background-color: #ffac1b;
}

.ct-iconBox .ct-iconBox-icon {
    background-color: #ffac1b;
}

.ct-pricingBox .ct-pricingBox-header {
    background-color: #00a261;
}

.ct-pricingBox.ct-pricingBox--secondary .ct-pricingBox-header {
    background-color: #ffac1b;
}

.ct-pricingBox .ct-pricingBox-content ul > li.active i {
    color: #ffac1b;
}

.datepicker td.active,
.datepicker td.active:hover {
    background-color: #00a261;
}

.ct-dividedSection {
    position: relative;
}

.ct-dividedSection .ct-dividedSection-mask {
    background-color: rgb(0 0 0 / 70%);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1000;
}

.ct-dividedSection .ct-dividedSection-content {
    position: relative;
    z-index: 2000;
    color: #fff;
}

.ct-dividedSection .ct-scaleImage {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -185px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 2000;


    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #fe6e02;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    transition: all 300ms ease-in-out;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px #fe6e0200;
    }
}

.ct-dividedSection .ct-scaleImage > img {
    width: 330px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-scaleImage {
    margin-left: -245px;
    left: 65%;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-scaleImage > img {
    width: 490px;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-mask {
    width: 65%;
    height: 100%;
    left: 0;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content h3 {
    font-size: 50px;
    border-bottom: #ffffff 1px solid;
    color: #ffffff;
    font-family: Damion;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content p {
    font-size: 20px;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content ul {
    padding: 0px;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content ul li {
    list-style: none;
    font-weight: 500;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
}

.ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content ul li i {
    list-style: none;
    font-size: 18px;
    color: #fff;
    margin-right: 11px;
}

.ct-dividedMediaSection .ct-dividedMediaSection-left {
    width: 55%;
    float: left;
}

.ct-dividedMediaSection .ct-dividedMediaSection-left iframe {
    width: 100%;
    height: 365px;
}

.ct-dividedMediaSection .ct-dividedMediaSection-right {
    width: 45%;
    min-height: 365px;
    float: left;
    background-color: #fff;
    border-left: none;
    -webkit-box-shadow: 0 0 7px #ececec;
    -moz-box-shadow: 0 0 7px #ececec;
    box-shadow: 0 0 7px #ececec;
}

.ct-dividedMediaSection .ct-dividedMediaSection-right h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-family: Lato;
    padding-top: 20px;
    padding-bottom: 10px;
    font-weight: bold;
}

@media (max-width: 1500px) {
    .ct-dividedSection.ct-dividedSection--secondary .ct-scaleImage {
        margin-left: -170px;
    }
}

@media (max-width: 992px) {
    .ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .ct-dividedSection.ct-dividedSection--primary .ct-scaleImage {
        margin-left: -256px;
    }

    .ct-dividedSection.ct-dividedSection--primary .ct-dividedSection-content {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .ct-dividedMediaSection .ct-dividedMediaSection-left {
        width: 100%;
    }

    .ct-dividedMediaSection .ct-dividedMediaSection-right {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .ct-dividedSection.ct-dividedSection--secondary .ct-scaleImage {
        position: relative;
        left: 50%;
        margin-left: 0;
        margin-top: 25px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-mask {
        width: 100%;
    }

    .ct-dividedSection.ct-dividedSection--primary .ct-scaleImage {
        position: relative;
        left: 50%;
        margin-left: 0;
        margin-top: 25px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .ct-dividedSection.ct-dividedSection--primary .ct-dividedSection-mask {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 480px) {
    .ct-dividedSection.ct-dividedSection--secondary .btn {
        width: 100%;
    }

    .ct-dividedSection.ct-dividedSection--primary .btn {
        width: 100%;
    }

    .ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .ct-dividedSection.ct-dividedSection--secondary .ct-dividedSection-content {
        text-align: center;
    }

    .ct-dividedSection.ct-dividedSection--primary .ct-dividedSection-content {
        text-align: center;
    }

    .ct-dividedMediaSection .ct-dividedMediaSection-right h3 {
        font-size: 20px;
    }
}

.ct-listBox.ct-listBox--divided {
    padding: 6px 50px 5px 50px;
}

.ct-listBox.ct-listBox--divided > li {
    border-bottom: 1px solid #f1f1f1;
}

.ct-listBox.ct-listBox--divided > li span {
    width: 50%;
    float: left;
    display: block;
    padding: 16px 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #555555;
    font-weight: bold;
}

.ct-listBox.ct-listBox--divided > li span + span {
    padding-left: 20px;
}

.ct-listBox.ct-listBox--divided > li:last-child {
    border-bottom: none;
}

.ct-listBox i {
    padding-right: 7px;
}

@media (max-width: 1200px) {
    .ct-listBox.ct-listBox--divided {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 480px) {
    .ct-listBox.ct-listBox--divided {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ct-listBox.ct-listBox--divided > li {
        border-bottom: none;
        text-align: center;
    }

    .ct-listBox.ct-listBox--divided > li span {
        width: 100%;
    }

    .ct-listBox.ct-listBox--divided > li span + span {
        padding-left: 0;
    }
}

.ct-promo {
    border: 1px solid #d3d3d3;
    padding: 0px 0px;
    background-color: #fff;
    box-shadow: 2px 5px 3px #ccc;

    overflow: hidden;
}


.ct-promo .ct-promo-details {
    margin: 0 auto;
    padding: 0;
    display: flex;
    width: 76%;
}

.ct-promo .ct-promo-details .promo-place {
    width: 60%;
    padding-top: 12px;
}

.ct-promo .ct-promo-details .promo-place h4 {
    color: #000000;
    text-align: left;
    font-size: 20px;
    padding: 0px 0;
    font-weight: 700;
}

.ct-promo .ct-promo-details .promo-place p {
    color: #7B7A7A;
    font-size: 12px;
    line-height: 13px;
    text-align: left;
    margin: 0;
}

.ct-promo .ct-promo-details .promo-price {
    width: 38%;
    margin: 0;
    padding: 0;
    padding-top: 9px;
}

.ct-promo .ct-promo-details .promo-price p {
    color: #000;
    line-height: 0;
    /* padding: 0; */
    margin: 0;
    font-size: 12px;
}

.ct-promo .ct-promo-details .promo-price p span {
    color: #f00;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    line-height: 34px;
}

.ct-promo span:first-child {
    font-size: 75px;
    font-weight: 300;
    line-height: 90px;
}

.ct-promo span:first-child + span {
    font-size: 75px;
    font-weight: 300;
    line-height: 90px;
}

.ct-promo span:first-child + span + span {
    font-weight: 600;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .ct-promo {
        min-width: inherit;
    }
}

.ct-dividedWidget {
    position: relative;
    z-index: 2000;
}

.ct-dividedWidget-left {
    background-color: #f2f2f2;
    float: left;
    width: 70%;
    min-height: 440px;
}

.ct-dividedWidget-left .ct-dividedWidget-sectionTop {
    background-color: #28282e;
    min-height: 88px;
    padding: 13px 30px;
}

.ct-dividedWidget-left .ct-dividedWidget-sectionTop span {
    font-size: 20px;
    color: #fff;
    float: left;
    line-height: 57px;
}

.ct-dividedWidget-left .ct-dividedWidget-sectionTop a {
    margin-top: 4px;
    display: block;
    float: right;
}

.ct-dividedWidget-left .ct-dividedWidget-sectionTop a i {
    padding-right: 5px;
}

.ct-dividedWidget-left .ct-dividedWidget-sectionTop .btn {
    padding: 15px 30px;
}

.ct-dividedWidget-left .ct-dividedWidget-sectionBottom {
    padding: 30px;
}

.ct-dividedWidget-right {
    background-color: #fff;
    float: left;
    width: 30%;
    min-height: 440px;
    -webkit-box-shadow: 0 0 7px #ececec;
    -moz-box-shadow: 0 0 7px #ececec;
    box-shadow: 0 0 7px #ececec;
}

.ct-dividedWidget-right .ct-dividedWidget-right-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 30px 5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {

    .ct-dividedWidget-left,
    .ct-dividedWidget-right {
        width: 100%;
    }

    .ct-dividedWidget-left .ct-dividedWidget-sectionTop {
        padding: 12px 14px;
    }

    .ct-dividedWidget-left .ct-dividedWidget-sectionTop .btn {
        padding: 15px 21px;
    }

    .ct-dividedWidget-left .ct-dividedWidget-sectionTop span {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .ct-dividedWidget-left .ct-dividedWidget-sectionTop span {
        font-size: 20px;
        display: block;
        float: none;
        text-align: center;
    }

    .ct-dividedWidget-left .ct-dividedWidget-sectionTop .btn {
        padding: 15px 30px;
        width: 100%;
    }
}

.ct-counterBox {
    text-align: center;
    width: 33%;
    float: left;
    border-left: 1px solid #e6e6e6;
}

.ct-counterBox:first-child {
    border-left: none;
}

.ct-counterBox .ct-counterBox-number,
.ct-counterBox .ct-counterBox-number + span {
    font-weight: 700;
    font-size: 54px;
}

.ct-counterBox .ct-counterBox-description {
    font-weight: 700;
    color: #565656;
    font-size: 14px;
    text-transform: uppercase;
}

.ct-counterBox .ct-counterBox-description i {
    color: #c6c6c6;
    padding-left: 4px;
}

.ct-counterBox .ct-counterBox-description i:hover {
    cursor: pointer;
}

.ct-counterBox .ct-counterBox-description i + .tooltip {
    text-transform: none;
}

@media (max-width: 992px) {
    .ct-counterBox {
        padding: 3px;
    }
}

@media (max-width: 480px) {
    .ct-counterBox {
        width: 100%;
        border: none;
    }
}

ul.ct-ratingBox {
    font-size: 16px;
    margin: 0;
}

ul.ct-ratingBox > li {
    padding-bottom: 10px;
}

ul.ct-ratingBox > li > span {
    min-width: 120px;
    text-align: right;
    display: inline-block;
}

ul.ct-stars {
    padding-left: 10px;
    margin: 0;
    display: inline-block;
}

ul.ct-stars > li {
    padding: 0;
}

ul.ct-stars > li.empty i {
    color: #c7c7c7;
}

@media (max-width: 1200px) {
    ul.ct-ratingBox {
        text-align: center;
    }

    ul.ct-ratingBox > li > span {
        text-align: center;
    }
}

.weatherFeed .weatherItem .weatherCity,
.weatherFeed .weatherItem .weatherTemp,
.weatherFeed .weatherItem .weatherDesc {
    display: none;
}

.weatherFeed .weatherItem .weatherRange {
    position: relative;
    padding-top: 15px;
    padding-bottom: 40px;
}

.weatherFeed .weatherItem .weatherRange .weatherRangeHigh,
.weatherFeed .weatherItem .weatherRange .weatherForecastRangeLow {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding-right: 75px;
}

.weatherFeed .weatherItem .weatherRange .wi {
    font-size: 60px;
    position: absolute;
    top: 13px;
    left: 50%;
    padding-left: 60px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.weatherFeed .weatherItem .weatherForecastItem {
    background-position: right;
    height: 35px;
    border-bottom: 1px solid #f4f4f4;
    margin-right: 30px;
    margin-left: 30px;
}

.weatherFeed .weatherItem .weatherForecastItem .wi {
    width: 20%;
    font-size: 25px;
    text-align: right;
    padding-right: 12px;
    vertical-align: middle;
}

.weatherFeed .weatherItem .weatherForecastItem .weatherForecastDate,
.weatherFeed .weatherItem .weatherForecastItem .weatherForecastText {
    display: none;
}

.weatherFeed .weatherItem .weatherForecastItem .weatherForecastDay {
    width: 25%;
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.weatherFeed .weatherItem .weatherForecastItem .weatherForecastRange {
    width: 55%;
    display: inline-block;
}

.weatherFeed .weatherItem .weatherForecastItem .weatherForecastRange .weatherForecastRangeHigh,
.weatherFeed .weatherItem .weatherForecastItem .weatherForecastRange .weatherForecastRangeLow {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 0 9px;
}

.weatherFeed .weatherItem .weatherForecastItem div {
    line-height: 34px;
    text-align: center;
}

.weatherFeed .weatherItem .weatherForecastBoxItem:hover {
    background-color: #fafafa;
    cursor: pointer;
}

.weatherFeed .weatherItem .weatherForecastBoxItem:last-child .weatherForecastItem {
    border: none;
}

.ct-scaleImage {
    overflow: hidden;
    display: inline-block;
}

.ct-scaleImage > img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ct-scaleImage > img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.ct-board {
    height: 570px;
    position: relative;
}

.ct-board:after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 26px;
    display: block;
    left: 0;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
    opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    filter: alpha(opacity=50);
}

.ct-board .ct-board-content {
    padding: 0;
    height: 600px;
    position: relative;
    top: -55px;
}

.ct-board .ct-board-content .ct-wallBox {
    height: 100%;
    width: 25%;
    float: left;
}

.ct-board .ct-board-content .ct-wallBox p {
    padding-top: 10px;
    line-height: 29px;
    margin-bottom: 3px;
}

.ct-board .ct-board-content .ct-wallBox.ct-wallBox-last h4 {
    font-size: 64px;
}

.ct-board .ct-board-content .ct-wallBox.ct-wallBox-last h4 span {
    display: block;
    font-size: 41px;
}

.ct-board .ct-board-content .ct-wallBox.ct-wallBox-last p {
    padding-top: 25px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.ct-board .ct-board-content:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    top: 100%;
    left: 0;
    position: absolute;
}

.ct-board .ct-board-content:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 0;
    top: 100%;
    right: 0;
    position: absolute;
}

.ct-wallBox {
    color: #fff;
    font-size: 14px;
    padding: 30px 24px 0 24px;
}

.ct-wallBox p {
    font-size: 14px;
}

.ct-wallBox .ct-wallBox-date {
    font-size: 14px;
    padding-top: 15px;
}

.ct-wallBox .ct-wallBox-date a {
    color: inherit;
}

.ct-wallBox h4 {
    color: #fff;
}


@media (min-width: 992px) {
    .ct-board .ct-board-content {
        width: 990px;
    }
}


@media (min-width: 1200px) {
    .ct-board .ct-board-content {
        width: 1190px;
    }
}

@media (max-width: 992px) {
    .ct-board {
        height: auto;
    }

    .ct-board .ct-board-content {
        height: auto;
    }

    .ct-board .ct-board-content .ct-wallBox {
        width: 50%;
        min-height: 600px;
    }
}

@media (min-width: 768px) {
    .ct-board .ct-board-content {
        width: 760px;
    }


}

@media (max-width: 520px) {
    .ct-wallBox {
        padding: 20px 15px 0 15px;
    }
}

@media (max-width: 480px) {
    .ct-board .ct-board-content .ct-wallBox {
        width: 100%;
        padding: 30px 24px 0 24px;
    }

    .ct-board + .container {
        padding: 0;
    }
}

.ct-googleMap {
    top: -55px;
    position: relative;
}

.ct-googleMap img {
    max-width: none;
}

.ct-googleMap:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 26px;
    z-index: 2000;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
    opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    filter: alpha(opacity=50);
}

.ct-googleMap .ct-googleMaps-infoBox {
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: block;
    background: #fff;
    padding: 17px;
    width: 357px;
    font-size: 14px;
}

.ct-googleMap .ct-googleMaps-infoBox img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.ct-googleMap .ct-googleMaps-infoBox .media-heading {
    font-size: 18px;
    font-family: Lato;
    padding-top: 7px;
    padding-bottom: 10px;
}

.ct-googleMap .ct-googleMaps-infoBox .media-body {
    padding-left: 10px;
}

.ct-googleMap .ct-googleMaps-infoBox ul > li > i {
    color: #cfcfcf;
    margin-right: 6px;
}

.ct-googleMap .ct-googleMaps-infoBox:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 12.5px 0 12.5px;
    border-color: #fff transparent transparent transparent;
    top: 100%;
    left: 50%;
    margin-left: -12.5px;
}

.ct-googleMap.ct-googleMap--secondary .ct-googleMaps-infoBox {
    display: none;
}

.ct-googleMap.ct-googleMap--secondary:before {
    display: none;
}

footer {
    background-color: #000000;
    color: #BDBDBD;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.045);
}



footer .foot2 a {
    text-decoration: none;
}

footer .foot2 {
    margin-bottom: 05px;
}


footer hr {
    border: 0;
    border-top: 1px solid #267F9D;
    border-bottom: 1px solid #33333a;
    margin-top: 50px;
}

.widget1 {
    width: 85%;
    /* float: right; */
    padding: 0px 23px;
}

.widget p {
    line-height: 25px;
    font-size: 18px;
    color: #000;
}

.widget a {
    color: #000;
}

.widget ul {}

.widget ul li {}

.widget ul li a {
    color: #7C7C7C;
    font-size: 12px;
}

.widget ul li a:hover {
    color: #DDAA5B;
}

.widget .widget-title {
    text-transform: uppercase;
    font-size: 27px;
    color: #045293;
    padding-bottom: 8px;
    font-weight: 700;
}

.widget .widget-title i {
    margin-right: 4px;
}

.widget address {
    font-size: 16px;
    line-height: 26px;
}

@media (max-width: 768px) {
    footer .ct-logo {
        margin-bottom: 40px;
    }

    footer .ct-logo h1 {
        padding-right: 0;
    }
}

.ct-scrollUpButton {
    font-size: 14px;
    color: #595971;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.ct-scrollUpButton:hover {
    color: #8c8ca4;
    cursor: pointer;
}

.ct-scrollUpButton:after {
    position: absolute;
    content: "\f077";
    font-family: fontawesome;
    font-size: 20px;
    top: -35px;
    left: 50%;
    margin-left: -10px;
    padding-bottom: 20px;
}

.ct-row--smallPadding div[class^="col-"] {
    padding: 5px;
}

.ct-row--smallPadding .row {
    margin: -5px;
}

.ct-row--smallPadding .ct-galleryBox {
    height: 243px;
}

.ct-galleryBox {
    position: relative;
}

.ct-galleryBox h4 {
    padding: 0;
    text-align: center;
    font-size: 40px;
    color: #fff;
    font-weight: 800;
}

.ct-galleryBox h4 + span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    font-size: 14px;
    right: 25px;
    bottom: 22px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.ct-galleryBox.ct-galleryBox--image {
    overflow: hidden;
    background-color: #fd3d6a;
}

.ct-galleryBox.ct-galleryBox--image img {
    min-width: 100%;
    min-height: 100%;
}

.ct-smallPadding {
    padding-right: 45px;
}

.ct-smallPadding.ct-smallPadding--left {
    padding-right: 15px;
    padding-left: 45px;
}

@media (max-width: 992px) {
    .ct-smallPadding {
        padding-right: 15px;
    }

    .ct-smallPadding.ct-smallPadding--left {
        padding-left: 15px;
    }
}


.navbar-scroll-top {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.headroom {
    transition: transform 200ms linear;
    z-index: 9998;
}

.headroom--pinned {
    transform: translateY(0%);
    display: block;
}

.headroom--unpinned {
    transform: translateY(-100%);
    display: none;
}

.animatedHeadroom {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animatedHeadroom.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animatedHeadroom.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.ct-blogBox {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.ct-blogBox .ct-blogBox-media {
    overflow: hidden;
}

.ct-blogBox .ct-blogBox-media img {
    min-width: 100%;
}

.ct-blogBox .ct-blogBox-media iframe {
    height: 330px;
    width: 100%;
}

.ct-blogBox .ct-blogBox-description {
    padding-top: 20px;
}

.ct-blogBox .ct-blogBox-description h5 {
    font-family: Lato;
    font-size: 24px;
    color: #434343;
}

.ct-blogBox .ct-blogBox-description .ct-blogBox-description-posted {
    padding: 10px 0;
    font-size: 16px;
}

.ct-blogBox .ct-blogBox-description p {
    margin-bottom: 0;
}

.ct-blogBox.ct-blogBox--link .ct-blogBox-description {
    padding-top: 0;
}

.ct-blogBox .owl-carousel img {
    max-width: none;
}

.widgetSidebar {
    padding: 7.5px 0;
}

.widgetSidebar .widgetSidebar-title {
    padding: 15px 0;
    text-transform: uppercase;
    border-bottom: 1px solid #f2f2f2;
    font-size: 13px;
    font-weight: bold;
}

.widgetSidebar .widgetSidebar-inner {
    padding: 20px 0;
}

@media (max-width: 768px) {
    .widgetSidebar {
        text-align: center;
    }

    .widgetSidebar ul.ct-list i {
        display: none;
    }

    .widgetSidebar .media-left,
    .widgetSidebar .media-right,
    .widgetSidebar .media-body {
        display: block;
    }

    .widgetSidebar .media.media-sidebar .media-left,
    .widgetSidebar .media.media-sidebar .media > .pull-left {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .ct-blogBox .ct-blogBox-media iframe {
        height: auto;
    }
}

.ct-pagination {
    font-size: 15px;
}

.ct-pagination .ct-pagination-older {
    color: #3e3e42;
}

.ct-pagination .ct-pagination-older i {
    padding-right: 7px;
}

.ct-pagination .ct-pagination-next {
    color: #3e3e42;
}

.ct-pagination .ct-pagination-next i {
    padding-left: 7px;
}

.ct-list {
    margin: 0;
    font-size: 16px;
}

.ct-list > li {
    padding-bottom: 17px;
}

.ct-list > li a {
    color: inherit;
}

.ct-list > li a i {
    padding-right: 14px;
}

.ct-list > li:last-child {
    padding-bottom: 0;
}

.ct-list.ct-list--colour > li i {
    padding-right: 14px;
}

.ct-list.ct-list--tagged > li {
    padding-left: 0;
    padding-right: 4px;
}

.ct-list.ct-list--tagged > li a {
    border: 1px solid #e5e5e5;
    padding: 7px 14px;
    font-size: 14px;
}

.ct-list.ct-list--taggedNoBorder {
    display: inline-block;
}

.ct-list.ct-list--taggedNoBorder > li {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.ct-list.ct-list--taggedNoBorder > li a {
    padding: 0;
    font-size: 16px;
    color: #aeaeae;
    position: relative;
}

.ct-list.ct-list--taggedNoBorder > li:not(:last-child) a:after {
    content: ',';
}

.ct-list.ct-list--extended > li {
    padding: 05px 0;
}

.ct-list.ct-list--extended > li:before {
    content: "\f058";
    font-family: fontawesome;
    padding-right: 12px;
}

.ct-list.ct-list--extended > li:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
}

.media h4 {
    font-family: Lato;
}

.media.media-sidebar h4 {
    font-size: 16px;
    margin-top: 0;
    padding-top: 0;
}

.media.media-sidebar span {
    color: #aeaeae;
    font-size: 13px;
}

.media.media-sidebar .media-left,
.media.media-sidebar .media > .pull-left {
    padding-right: 20px;
}

.media.media-author {
    margin: 40px 0;
    background-color: #f6f6f6;
    padding: 30px;
    padding-right: 0;
}

.media.media-author .media-left img {
    border: 1px solid #ececec;
    width: 105px;
    height: 105px;
    max-width: none;
}

.media.media-author .media-body {
    padding: 0 7px;
}

.media.media-author .media-body p {
    line-height: 26px;
    padding-bottom: 0;
    padding-top: 10px;
}

.media.media-author h4.media-heading {
    font-size: 15px;
    font-weight: bold;
    margin-top: 0;
    padding-top: 10px;
    color: #3e3e42;
}

.media.media-comment {
    margin-top: 0;
    padding-top: 33px;
}

.media.media-comment h4.media-heading {
    font-size: 16px;
    margin-top: 0;
    padding-top: 0px;
}

.media.media-comment .media-left {
    padding-right: 27px;
}

.media.media-comment .media-left img {
    width: 105px;
    height: 105px;
    max-width: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid #fff;
    -webkit-box-shadow: 1px 1px 3px #e9e9e9;
    -moz-box-shadow: 1px 1px 3px #e9e9e9;
    box-shadow: 1px 1px 3px #e9e9e9;
}

.media.media-comment .media-body {
    padding: 7px 0 0;
}

.media.media-comment .media-body p {
    line-height: 28px;
    padding-bottom: 33px;
    padding-top: 15px;
    margin-bottom: 0;
}

.media.media-comment .media-body .media.media-inner {
    margin-top: 0;
    padding-top: 33px;
    border-top: 1px solid #f4f4f4;
}

.media.media-comment .media-body .media.media-inner .media-body p {
    margin-bottom: 0;
}

.media.media-comment:not(:last-child) {
    border-bottom: 1px solid #f4f4f4;
}

.media.media-slider {
    position: relative;
    display: inline-block;
}

.media.media-slider .media-left {
    padding-right: 15px;
}

.media.media-slider .media-left img {
    width: 65px;
    height: 65px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.media.media-slider span {
    display: block;
    font-size: 16px;
    text-align: left;
}

.media.media-slider span.media-heading {
    font-weight: bold;
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .media.media-author {
        text-align: center;
        padding: 30px 20px;
    }

    .media.media-author .media-left {
        display: block;
        padding: 0;
    }

    .media.media-comment .media-left {
        padding-right: 5px;
    }

    .media.media-comment .media.media-inner .media-left {
        display: block;
        text-align: center;
        padding-right: 0;
    }
}

.ct-category {
    font-size: 14px;
    text-transform: uppercase;
    padding-top: 25px;
    padding-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.ct-category i,
.ct-category span {
    padding-right: 10px;
}

.ct-category span {
    color: #3e3e42;
    font-weight: bold;
}

.ct-category:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    bottom: 2px;
    left: 0;
    height: 1px;
    background-color: #f2f2f2;
}

@media (max-width: 768px) {
    .about-sec h2 {
        font-size: 36px;
    }

    .about-sec p {
        text-align: justify;
    }

    .ct-category {
        padding-top: 60px;
    }

    .content-mice {
        padding: 15px 0px !important;
    }

    .content-mice .head-top {
        margin-bottom: 2px !important;
    }

    .content-mice .head-top h2 {
        font-size: 28px !important;
    }

    .content-mice h3 {
        font-size: 28px !important;
    }


    .services-sec .service-box h2 {
        bottom: 0px !important;
        padding: 8px 5px !important;
        font-size: 13px !important;
        width: 100% !important;
    }
}

.ct-titleDivider {
    font-size: 13px;
    font-weight: bold;
    padding-bottom: 11px;
    border-bottom: 1px solid #f4f4f4;
}

#sync1 .owl-item:hover {
    cursor: pointer;
}

#sync1 img {
    max-width: none;
}

#sync2 .owl-item:hover,
#sync4 .owl-item:hover {
    cursor: pointer;
}

#sync4 .owl-item.synced .media.media-slider:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 52px 44px 0 0;
    left: 32.5px;
    top: 0px;
}

.copy {
    margin: 5px 0px;
}

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

.copy p a {
    color: #000000;
    font-weight: bold;
}

.gallery-top {
    background: #F9F9F9;
}

.gallery-info {
    margin: 3em 0;
    text-align: center;
}

.gallery-info h3 {
    color: #6E6E6E;
    font-size: 4em;
    margin: 0;
    font-family: 'Dorsa-Regular';
    letter-spacing: 2px;
}

.gallery-info p {
    color: #B2B2B2;
    font-size: .9em;
    margin: 1em auto 0;
    line-height: 1.8em;
    width: 70%;
}

.gallery-grid img {
    width: 100%;
}

.gallery-grid:hover img {
    -webkit-filter: grayscale(100%);
    opacity: 8;
    transition: all 300ms !important;
    -webkit-transition: all 300ms !important;
    -moz-transition: all 300ms !important;
}

.gallery-grids-middle {
    margin: 2em 0;
}

.gallery-grids-top {
    margin-bottom: 4em;
}

.contactt-detail {
    margin-top: 14px;
    border: #C5C5C5 1px solid;
    /* height: 103px; */
    width: 95%;
    margin-left: 19px;
    margin-bottom: 22px;
    display: flex;
}

.contactt-detail .contact-add {
    padding: 9px 27px;
    padding-left: 0;
}

.contactt-detail .contact-add p {
    font-size: 17px;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
}

.contactt-detail .bord1 {
        color: #666;
    margin-left: -35px;
    width: 12%;
    margin-top: 12px;
    margin-right: 10px;
}

.social-part {
    width: 100%;
}

.social-part ul {
    text-decoration: none;
    list-style-type: none;
    display: inline;
    padding: 0;
}

.social-part ul li {
    line-height: 44px;
    display: inline;
}

.social-part ul li a {
    font-size: 16px;
    color: #545353;
}

.social-part ul li a .fa1 {
    color: #FFFFFF;
    font-size: 16px;
    background-color: #064C75;
    padding: 5px 13px;
    margin-right: 8px;
}

.social-part ul li:hover a .fa1 {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    background-color: #FF9D09;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-part ul li a .fa2 {
    color: #FFFFFF;
    font-size: 16px;
    background-color: #2789DE;
    padding: 4px 9px;
    margin-right: 8px;
}

.social-part ul li:hover a .fa2 {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    background-color: #FF9D09;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-part ul li a .fa3 {
    color: #FFFFFF;
    font-size: 16px;
    background-color: #dd2b2b;
    padding: 4px 9px;
    margin-right: 8px;
}

.social-part ul li:hover a .fa3 {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    background-color: #FF9D09;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-part ul li a .fa4 {
    color: #FFFFFF;
    font-size: 16px;
    background-color: #BD0400;
    padding: 4px 10px;
    margin-right: 8px;
}

.social-part ul li:hover a .fa4 {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    background-color: #FF9D09;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-part ul li:hover a {
    color: #FF9D09;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 667px) {
    .back {
        padding: 8px 11px;
        margin: 0px;
        text-align: center;
        font-size: 29px;
        margin-top: 21px;
    }

    .ct-navbarMobile .navbar-brand .ct-logo {
        position: relative;
        display: inline-block;
        margin-top: 28px;
        margin-left: 24px;
        width: 34%;
    }

    .contactt-detail .bord1 {
        width: 13%;
    }

    .widget {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: 0px;
    }
}

@media (max-width: 480px) {
    .contactt-detail p {
        font-size: 14px;
        margin-left: 42px;
        padding-top: 9px;
    }

    .copy {
        width: 100%;
        margin-top: 23px;
    }

    .copy1 {
        width: 100%;
        float: right;
        margin-top: 3px;
        text-align: center;
    }

    .contactt-detail .bord1 {
        width: 24%;
    }
}

@media (max-width: 320px) {
    .contactt-detail .bord1 {
        margin-left: -33px;
        width: 25%;
        margin-top: 19px;
    }

    .contactt-detail p {
        font-size: 11px;
        margin-left: 42px !important;
        padding-top: 9px;
    }

    .contactt-detail {
        margin-left: 10px;
    }
}

.back-slid {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.news-form {
    overflow: hidden;
}

.news-sec1 {
    width: 100%;
    padding: 6px 0px 6px 21px;
    background-color: rgba(255, 255, 255, 0.08);
    border: #fff 1px solid;
}

.news-sec2 {
    background-color: #FF9D09;
    color: #fff;
    border: none;
    padding: 5px 30px;
    float: right;
    margin-top: 19px;
}

.heading-set {
    text-align: center;
    padding: 10px 0;
}

.heading-set p {
    font-style: italic;
    margin: 0;
}

.heading-set h3 {
    font-size: 41px;
    font-weight: 700;
    color: #132461;
}

.testimonial-set {
    padding-bottom: 36px;
}

.testimonial-set .testimonial-block {
    background-color: #dce8ff;
    padding: 9px 14px;
    border-radius: 8px;
    min-height: 225px;
    margin: 0 3px;
}

.testimonial-set .testimonial-block p {
    font-size: 13px;
    /* min-height: 182px; */
    text-align: justify;
}

.testimonial-set .testimonial-block .info-set {
    overflow: hidden;
    display: flex;
}

.testimonial-set .testimonial-block .info-set .img-set {
    float: left;
    width: 60px;
    height: 60px;
    border-radius: 40px;
    overflow: hidden;
    display: none;
    margin-right: 12px;
}

.testimonial-set .testimonial-block .info-set .img-set img {
    /* float: left; */
    /* width: 16%; */
}

.testimonial-set .testimonial-block .info-set .text {
    line-height: 13px;
    margin-top: 12px;
}

.testimonial-set .testimonial-block .info-set .text h4 {
    padding: 0;
    font-size: 16px;
    margin: 0;
    color: #132461;
    font-weight: 600;
    font-style: italic;
}

.testimonial-set .testimonial-block .info-set .text p {
    min-height: inherit;
}

.testimonial-set .testimonial-block .info-set .text span {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}


.xform .form .element-input1 {
    padding: 12px 16px;
    margin: 0px 0px 20px;
    font-size: 14px;
    line-height: 1.75em;
    color: #ffffff;
    background-color: #ffffff38;
    border: 1px solid #ccc;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    /* margin-bottom: 20px; */
    /* margin-right: 19px; */
    -webkit-appearance: none;
}


.xform .form .element-input1 option{
    color: #000000;
}

.xform .form .element-text {
    height: 180px;
    padding: 12px 16px;
    border: #c3c3c3 1px solid;
    margin-bottom: 20px;
    color: #ffffff;
    background-color: #ffffff38;
}

.xform .form h3 {
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
}


.our_reach {
    text-align: center;
    width: 100%;
    background-color: #0c0c0c;
    padding: 39px 22px;
    /* height: 100vh; */
    overflow: hidden;
    display: block;
}

.our_reach h2 {
    font-size: 28px;
    font-weight: 700;
    color: #132461;
    padding: 10px 0;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

.our_reach h2 .inner-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    padding: 10px 0;
    margin-bottom: 10px;
    z-index: 2;
    background-color: #0c0c0c;
    position: relative;
    padding: 0px 29px;
}

.our_reach h2::before {
    background-color: #4f4f4f;
    content: "";
    height: 0.0625rem;
    left: 0.9375rem;
    position: absolute;
    width: calc(100% - 30px);
    z-index: 1;
    top: 50%;
}

.our_reach .map_mark {
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.our_reach .map_mark img {
    width: 100%;
}

.our_reach .form {}

.our_reach .form select {
    padding: 7px 13px;
    background-color: #f99704;
    border: 1px #f99704 solid;
    color: #fff;
}

.our_reach .form select option {}

.offer {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.offer .icon {
    width: 100px;
}

.offer h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.offer h2 span {
    color: #045293;
    font-size: 50px;
    font-weight: 600;
}

.offer p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.ct-white-logo {
    width: 22%;
    overflow: hidden;
}

.ct-white-logo img {
    width: 37%;
}


.about-sec .title-sec {
    color: #000;
    font-size: 25px;
}

.about-sec h2 {
    margin-bottom: 10px;
    font-weight: 600;
}

.about-sec p {
    text-align: justify;
}

.section-heading {
    position: relative;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 34px;
}

.services-sec .service-box h2 {
    position: absolute;
    bottom: 10px;
    color: #fff;
    /* background-color: #000; */
    padding: 8px 28px;
    font-size: 20px;
    width: 88%;
    background-image: linear-gradient(90deg, #020024 0%, #090979e0 35%, #00d4ff00 100%);
}

.services-sec .service-box .service-img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.8s;
}

.services-sec .service-box .service-img img {
    width: 100%;
    transition: 0.5s;
}

.services-sec .service-box .service-img:hover img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
}

.services-sec .service-list {
    margin-top: 16px;
    margin-bottom: 39px;
}

.services-sec .service-list ul {
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-sec .service-list ul li {
    width: 316px;
    padding: 5px 9px;
}

.services-sec .service-list ul li a {
    font-size: 22px;
    color: #3e3e3e;
}

.services-sec .service-list ul li a i {
    margin-right: 8px;
}

.services-sec .service-list ul li:hover {
    background-color: #055194;
}

.services-sec .service-list ul li:hover a {
    color: #fff;
}

.services-sec .service-box-rt {
    width: 100%;
    float: left;
    position: relative;
    bottom: 0;
    overflow: hidden;
}

.services-sec .service-box-rt h2 {
    position: absolute;
    bottom: 10px;
    color: #fff;
    /* background-color: #000; */
    padding: 8px 28px;
    font-size: 20px;
    width: 88%;
    background-image: linear-gradient(90deg, #020024 0%, #090979e0 35%, #00d4ff00 100%);
}

.services-sec .service-box-rt .service-img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.8s;
}

.services-sec .service-box-rt .service-img img {
    width: 100%;
    transition: 0.5s;
}

.services-sec .service-box-rt .service-img:hover img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
}

.our-offices .map-full-outer {
    width: 960px;
    margin: 0 auto;
}

.our-offices .map-full {
    width: 100%;
    float: left;
    position: relative;
}

.our-offices .map-full img.map-img {
    width: 100%;
    height: 506px;
}

.our-offices .map-full .location-usa {
    position: absolute;
    top: 160px;
    left: 250px;
}

.our-offices .map-full .location-usa1 {
    position: absolute;
    top: 185px;
    left: 275px;
    color: #fff;
}

.our-offices .map-full .location-canada {
    position: absolute;
    top: 20px;
    left: 320px;
}

.our-offices .map-full .location-canada1 {
    position: absolute;
    top: 45px;
    left: 345px;
    color: #fff;
}

.our-offices .map-full .location-uk {
    position: absolute;
    top: 130px;
    left: 445px;
}

.our-offices .map-full .location-uk1 {
    position: absolute;
    top: 155px;
    left: 470px;
    color: #fff;
}

.our-offices .map-full .location-switzerland {
    position: absolute;
    top: 187px;
    left: 475px;
}

.our-offices .map-full .location-switzerland1 {
    position: absolute;
    top: 212px;
    left: 500px;
    color: #fff;
}

.our-offices .map-full .location-uae {
    position: absolute;
    top: 240px;
    left: 580px;
}

.our-offices .map-full .location-uae1 {
    position: absolute;
    top: 265px;
    left: 605px;
    color: #fff;
}

.our-offices .map-full .location-india {
    position: absolute;
    top: 220px;
    left: 660px;
}

.our-offices .map-full .location-india1 {
    position: absolute;
    top: 245px;
    left: 685px;
    color: #fff;
}

.our-offices .map-full .location-srilanka {
    position: absolute;
    top: 285px;
    left: 655px;
}

.our-offices .map-full .location-srilanka1 {
    position: absolute;
    top: 310px;
    left: 680px;
    color: #fff;
}

.our-offices .map-full .location-img img {
    width: 30px;
    height: auto;
}

.our-offices .map-full .location-text {
    font-size: 16px;
    font-weight: 600;
}

.our-offices2 {
    width: 100%;
    float: left;
    background: #1e1e28;
    padding-bottom: 50px;
}

.our-offices2 .heading {
    width: 100%;
    float: left;
}

.our-offices2 .heading h3 {
    width: 100%;
    float: left;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    padding: 30px 0;
    color: #fff;
}

.our-offices2 .heading-line-outer {
    width: 100px;
    margin: 0 auto;
}

.our-offices2 .heading-line-outer .header-line {
    width: 100%;
    height: 5px;
    float: left;
    background: #15bdcc;
    margin-bottom: 50px;
}

.our-offices2 .map-full-outer {
    width: 960px;
    margin: 0 auto;
}

.our-offices2 .map-full {
    width: 100%;
    height: 506px;
    float: left;
    position: relative;
}

.our-offices2 .map-full img.map-img {
    width: 100%;
    height: 506px;
}

.our-offices2 .map-full .location-canada-img {
    position: absolute;
    top: 0px;
    left: 0px;
}

.our-offices2 .map-full .location-canada {
    position: absolute;
    top: 56px;
    left: 60px;
}

.our-offices2 .map-full i {
    font-size: 42px;
    color: #78b3e9;
}

.our-offices2 .map-full .location-canada1 {
    position: absolute;
    top: 55px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-canada2 {
    position: absolute;
    top: 80px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-usa-img {
    position: absolute;
    top: 240px;
    left: 20px;
}

.our-offices2 .map-full .location-usa {
    position: absolute;
    top: 26px;
    left: 60px;
}

.our-offices2 .map-full .location-usa1 {
    position: absolute;
    top: 25px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-usa2 {
    position: absolute;
    top: 50px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-uk-img {
    position: absolute;
    top: 80px;
    left: 290px;
}

.our-offices2 .map-full .location-uk {
    position: absolute;
    top: 120px;
    left: 60px;
}

.our-offices2 .map-full .location-uk1 {
    position: absolute;
    top: 121px;
    left: 100px;
    color: #fff;
    width: 160px;
}

.our-offices2 .map-full .location-uk2 {
    position: absolute;
    top: 146px;
    left: 100px;
    color: #fff;
    width: 160px;
}

.our-offices2 .map-full .location-switzerland-img {
    position: absolute;
    top: 90px;
    left: 580px;
}

.our-offices2 .map-full .location-switzerland {
    position: absolute;
    top: -4px;
    left: 60px;
}

.our-offices2 .map-full .location-switzerland1 {
    position: absolute;
    top: -5px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-switzerland2 {
    position: absolute;
    top: 20px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-uae-img {
    position: absolute;
    top: 320px;
    left: 620px;
}

.our-offices2 .map-full .location-uae {
    position: absolute;
    top: 26px;
    left: 60px;
}

.our-offices2 .map-full .location-uae1 {
    position: absolute;
    top: 25px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-uae2 {
    position: absolute;
    top: 50px;
    left: 100px;
    color: #fff;
}

.our-offices2 .map-full .location-india-img {
    position: absolute;
    top: 180px;
    left: 810px;
}

.our-offices2 .map-full .location-india {
    position: absolute;
    top: 46px;
    left: 30px;
}

.our-offices2 .map-full .location-india1 {
    position: absolute;
    top: 45px;
    left: 70px;
    color: #fff;
}

.our-offices2 .map-full .location-india2 {
    position: absolute;
    top: 70px;
    left: 70px;
    color: #fff;
}

.our-offices2 .map-full .location-srilanka {
    position: absolute;
    top: 285px;
    left: 655px;
}

.our-offices2 .map-full .location-srilanka1 {
    position: absolute;
    top: 310px;
    left: 680px;
    color: #fff;
}

.our-offices2 .map-full .location-img img {
    width: 30px;
    height: auto;
}

.our-offices2 .map-full .location-text {
    font-size: 18px;
    font-weight: 800;
}

.our-offices2 .map-full .location-text2 {
    font-size: 14px;
    font-weight: normal;
}

.content-mice {
    padding: 42px 0px;
    background-color: #fff;
}

.content-mice hr {
    margin: 23px 0px;
    border-top: #c3c3c3 1px solid;
}

.content-mice h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #045293;
}

.content-mice p {
    text-align: justify;
}

.content-mice ul {
    margin-bottom: 15px;
}

.content-mice ul li {
    line-height: 20px;
    font-size: 16px;
    padding-bottom: 7px;
}

.content-mice .head-top {
       box-shadow: 0px 12px 20px 4px rgb(0 0 0 / 15%);
    text-align: center;
    margin-bottom: 17px;
    color: #ffffff;
    background: #045293;
    padding: 20px 50px;
    border-radius: 60px;
    margin-bottom: 40px;
}

.content-mice .head-top h2 {
    font-size: 44px;
}

.content-mice .head-top h4 {}

.xbtn {
    background-color: #01BEDC;
    padding: 12px 22px;
    border: none;
    color: #000;
    margin: 0 7px;
}

#more,
#more2,
#more3,
#more4,
#more5,
#more6,
#more7 {
    display: none;
}


.xpresso_btn_inner {
    color: #fff;
    background-color: #0184d4;
    text-decoration: none;
    padding: 8px 26px;
    margin-top: 14px;
    display: inline-block;
}




/* jainism tour style*/



.banner_info {
    width: 100%;
    overflow: hidden;
}


.sub_main {
    width: 100%;
    padding: 50px 0;
}

.sub_main .text_title {

    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.sub_main .text_title h3 {
    color: #2099ce;
}

.sub_main .down_text {
    display: flex;
    float: left;
    width: 33%;
    margin-bottom: 8px;

}

.sub_main .down_text .down_text_image {}

.sub_main .down_text .down_text_image img {}

.sub_main .down_text .down_text_title {
    margin: 5px 0px 0 3px;
}

.sub_main .down_text .down_text_title p {}



.jain_tourism {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}

.jain_tourism .tour_area {
    width: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0 auto;
}

.jain_tourism .tour_area .tour_block_top {
    width: 100%;
    /* border-bottom: 1px solid rgb(214 214 214); */
    padding: 10px 10px;
}

.jain_tourism .tour_area .tour_block_top h3 {
    font-size: 40px;
    color: #055194;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.jain_tourism .tour_area .tour_block_top button {
    margin: 13px 0;
    background-color: red;
    border: none;
    color: white;
}

.jain_tourism .tour_area .tour_area_wrap {
    width: 100%;
    padding: 8px 0 22px 0px;
    margin: 0px 9px;
    overflow: hidden;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down {
    float: left;
    width: 24%;
    padding: 0;
    margin-right: 10px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 31%);
    background-color: #fff;
    margin-bottom: 14px;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down a {
    text-decoration: none;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag {}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_image {
    height: auto;
    overflow: hidden;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_image img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_image:hover img {
    transform: scale(1.3);
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info {
    padding: 6px 12px;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info .lft-info {
    align-items: center;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info .lft-info h4 {
    margin: 0 auto;
    color: #055194;
    padding: 0 7px;
    font-size: 19px;
    font-weight: 600;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info .lft-info h4:hover {
    color: red;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info .lft-info p {
    margin: 0 auto;
    color: red;
    padding: 0 8px;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info .rth-info {
    background-color: #f91414;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 7px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jain_tourism .tour_area .tour_area_wrap .tour_block_down .tour_image_tag .tour_info .rth-info a {}


.logistics-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
}

.logistics-wrap .logistics-wrap-info {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.logistics-wrap .logistics-wrap-info img {
    width: 100%;
}

.logistics-wrap .logistics-wrap-info h3 {
    color: #055194;
    font-size: 40px;
    font-weight: 600;
}

.logistics-wrap .logistics-wrap-info p {
    font-size: 16px;
}

.logistics-wrap .logistics-wrap-info ul {
    list-style: none;
    margin: 0;
    margin-bottom: 16px;
    padding: 0;
}

.logistics-wrap .logistics-wrap-info ul li {
    margin-bottom: 7px;
    font-size: 16px;
}

.logistics-wrap .logistics-wrap-info ul li i {
    color: #055194;
}

/* jainism tour style end*/

















































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

header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 99;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}

/*---------header close----------*/
/*-----------header-top------------*/
.header-top {
    padding: 05px 0px;
    background: #045293;
}

.left_info ul li {
    display: inline-block;
    margin-right: 30px;
}

.left_info a {
    color: #fffefe;
    font-size: 14px;
    font-weight: 500;
}

.left_info i.fa {
    font-size: 16px;
    color: #fff;
    margin-right: 10px;
}

.right_info p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.left_info {
    text-align: right;
}

.right_info i.fa {
    font-size: 16px;
    margin-right: 10px;
}

header i.fa.fa-mobile {
    font-size: 26px;
    position: relative;
    border: 40px;
    font-weight: 500;
}

.left_info ul li:last-child {
    margin: 0px !IMPORTANT;
}

.header-main {
    padding: 10px 0;
    border-top: 1px solid #424242;
}

/*-----------header-top Close------------*/
/*-----------header-menu------------*/

.logo a {
    color: #6DDB07;
}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cssmenu #head-mobile {
    display: none
}

#cssmenu > ul > li {
    margin: 0px 05px;
}

#cssmenu > ul > li > a {
    padding: 15px 25px;
    font-size: 16px;
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    letter-spacing: 0.25px;
}

#cssmenu > ul > li:hover > a,
#cssmenu ul li.active a {
    color: #fff;
}

#cssmenu > ul > li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
    background: #045293 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}


#cssmenu > ul > li:hover > a i,
#cssmenu ul li.active a i {
    color: #ffffff;
}




#cssmenu > ul > li.has-sub > a {
    padding-right: 30px
}

#cssmenu > ul > li.has-sub > a:after {
    position: absolute;
    top: 50%;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #5a5a5a;
    content: ''
}

#cssmenu > ul > li.has-sub > a:before {
    position: absolute;
    top: 44%;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #5a5a5a;
    content: '';
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease;
}

#cssmenu > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0
}

#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    margin-top: 0;
}

#cssmenu ul ul li {
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #333;
    transition: all .25s ease
}

#cssmenu ul ul li:hover {
    background: #045293;
}

#cssmenu li:hover > ul {
    left: auto
}

#cssmenu li:hover > ul > li {
    height: 45px
}

#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0
}


#cssmenu ul ul {
    width: 300px;
}

#cssmenu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 15px 10px;
    font-size: 14px;
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
    border-bottom: 0
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
    color: #fff
}

#cssmenu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: ''
}

#cssmenu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: '';
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease
}

#cssmenu ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636;
}

#cssmenu ul ul ul li.active a {
    border-left: 1px solid #333
}

#cssmenu > ul > li.has-sub > ul > li.active > a,
#cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top: 1px solid #333
}

@media screen and (max-width:991px) {

    nav {
        width: 100%;
    }

    #cssmenu {
        width: 100%
    }

    #cssmenu ul {
        width: 100%;
        display: none
    }

    #cssmenu ul li {
        width: 100%;
        border-top: 1px solid #444;
        float: left;
    }

    #cssmenu ul li:hover {
        background: transparent !important;
    }

    #cssmenu ul ul li,
    #cssmenu li:hover > ul > li {
        height: auto
    }

    #cssmenu ul li a,
    #cssmenu ul ul li a {
        width: 100%;
        border-bottom: 0
    }

    #cssmenu ul ul li a {
        padding-left: 25px
    }

    #cssmenu ul ul li {
        background: #333 !important;
    }

    #cssmenu ul ul li:hover {
        background: #363636 !important
    }

    #cssmenu ul ul ul li a {
        padding-left: 35px
    }

    #cssmenu ul ul li a {
        color: #ddd;
        background: none
    }

    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li.active > a {
        color: #fff
    }

    #cssmenu ul ul,
    #cssmenu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left
    }

    #cssmenu > ul > li.has-sub > a:after,
    #cssmenu > ul > li.has-sub > a:before,
    #cssmenu ul ul > li.has-sub > a:after,
    #cssmenu ul ul > li.has-sub > a:before {
        display: none
    }

    #cssmenu #head-mobile {
        display: block;
        color: #5a5a5a;
        font-size: 12px;
        font-weight: 700
    }

    .button {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 12399994;
    }

    .button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 8px;
        width: 20px;
        border-top: 2px solid #dddddd;
        border-bottom: 2px solid #dddddd;
        content: ''
    }

    .button:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #ddd;
        content: ''
    }

    .button.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .button.menu-opened:before {
        top: 23px;
        background: #fff;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }



    #cssmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #444;
        height: 46px;
        width: 46px;
        cursor: pointer
    }

    #cssmenu .submenu-button.submenu-opened {
        background: #262626
    }

    #cssmenu ul ul .submenu-button {
        height: 34px;
        width: 34px
    }

    #cssmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #ddd;
        content: ''
    }

    #cssmenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px
    }

    #cssmenu .submenu-button.submenu-opened:after {
        background: #fff
    }

    #cssmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #ddd;
        content: ''
    }

    #cssmenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #cssmenu .submenu-button.submenu-opened:before {
        display: none
    }

    #cssmenu ul ul ul li.active a {
        border-left: none
    }

    #cssmenu > ul > li.has-sub > ul > li.active > a,
    #cssmenu > ul ul > li.has-sub > ul > li.active > a {
        border-top: none
    }
}

div#slider-home .carousel-item::before {
    background: #0000005c;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

#slider-home h3 {
    text-transform: capitalize;
    font-size: 50px;
}

#slider-home p {
    font-size: 23px;
}

#slider-home .btn {
    background: #308003;
    color: #fff;
    padding: 12px 30px !important;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;
}

#slider-home .btn:hover {
    background: #ffffff;
    color: #308003;
}



#cssmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



header .header-main ul li a i {
    color: #fe5c00;
}



section {
    padding: 50px 0px;
}



.text-black {
    color: #000000;
}



.text-org {
    color: #055194;
}











.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-prev:hover,
.owl-carousel.owl-carousel--arrowsType1 .owl-controls .owl-buttons .owl-next:hover {
    background: #fe6e02;
    color: #ffffff;
    transition: 0.5s;
}




.bg-grey {
    background: #F9F9F9;
}



.service-box .icon img {
    height: auto;
    max-width: 100%;
}

.service-box .icon {
    width: 100px;
    margin: auto;
    padding: 22px;
    text-align: center;
    border-radius: 50%;
    background-color: #045293;
    position: relative;
    top: 30px;
    z-index: 3;
    height: 90px;
    width: 90px;
}

.service-box .icon:before {
    transition: all 0.5s;
    content: " ";
    width: 110px;
    height: 110px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #045293;
    opacity: .6;
    z-index: -1;
}

.service-box:hover .icon:before {
    width: 140px;
    height: 140px;
}

.service-box .img-in {
    position: relative;
    margin-top: -20px;
    border-radius: 10px;
}

.service-box .img-in img {
    width: 100%;
    height: auto;
    transition: all 0.5s;
    border-radius: 10px;
}


.img-icon-box-content {
    padding: 20px;
}

.service-box a.title {
    font-size: 25px;
    font-weight: 600;
    display: block;
    position: relative;
    color: #045293;
}

.service-box a.title:before {
    transition: all 0.5s;
    content: " ";
    display: block;
    position: absolute;
    bottom: -40px;
    z-index: -1;
    height: 5px;
    border-radius: 15px;
    width: 0px;
    margin: auto;
    background-color: #227700;
    opacity: .7;
    left: 0;
    right: 0;
}

.service-box:hover a.title:before {
    width: 100px;

}

.service-box .wasf {
    font-size: 13px;
    font-weight: 500;
    color: #666363;
}

.service-box a.more {
    color: #000000;
    font-size: 15px;
    /* text-transform: uppercase; */
    font-weight: 500;
    margin: 10px 0px;
}

















.showcase {
    background-color: #fefefe;
}


.travel-card:hover > .image > img {
    transform: scale(1.2);
}


.travel-card .image > img {
    width: 100%;
    height: 100%;
    background-image: url('https://cache-graphicslib.viator.com/graphicslib/page-images/742x525/467829_Viator_Unsplash_170410.jpg');
    background-position: center;
    background-size: cover;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    transition: all 0.28s ease-in-out;
}

.travel-card > .content {
    padding: 1em 1.5em;
}


.travel-card > .content > .category {
    font-size: 16px;
    color: #bababa;
}

.travel-card > .content > .topic {
    font-size: 22px;
    line-height: 30px;
    word-break: break-all;
    margin: 0px 0px 08px;
    color: #045293;
}


.travel-card > .content > .topic span{
    display: block;
    font-size: 14px;
    color: #939393;
}


.travel-card > .content > .recommendation > .score {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    color: black;
    padding: 8px 20px;
    border-radius: 15px;
    user-select: none;
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
}

.travel-card > .content > .recommendation > .score > :last-child {
    font-size: 1.1em;
}

.travel-card > .content > .recommendation > .comment {
    color: #bababa;
}







































.hero-slider {
    width: 100%;
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {

    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 30px;

    }
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 700px;
    transition: all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}


.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

.hero-style .slide-title h2 {
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 40px;
    text-transform: capitalize;
    transition: all .4s ease;
}

.hero-style .slide-title h2 span{
    font-size: 22px;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.8;
    font-family: Rajdhani;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/



.theme-btn-s1 {
    background-color: #045293;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #ffffff;
    padding: 8px 20px;
    border: 0;
    border-radius: 3px;
    display: inline-block;
    transition: all .4s ease;
}

/*.theme-btn-s1:hover,
.theme-btn-s1:focus,
.theme-btn-s1:active {
    background-color: #408a0f;
    color: #fff;
}*/







.theme-btn,
.theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #045293;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
    background-color: #045293;
    color: #fff;
}

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #4f4f4f;
    margin-left: 10px;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}



.about-sec .img-in img {
    border-radius: 10%;
    width: 100%;
    height: 700px;
    object-fit: cover;
}


.travel-card .content .btn-sec a {
    font-size: 14px;
    padding: 8px 19px;
}



.international-designation .showcase:hover .recommendation .score {
    background: #fe6e02;
    color: #ffffff;
    transition: 0.3s;
}


.international-designation .owl-carousel .travel-card .image img {
    height: 480px;
    width: 100%;
    object-fit: cover;
}


.international-designation .owl-carousel .travel-card .image::after {
    content: "";
    display: block;
    height: 78%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .2);
}



.special-interest-tours-sec .inner-img img {
    border-radius: 50%;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, darkblue, darkorchid) border-box;
    border: 6px solid transparent;
}



.bg-blue {
    background: #045293;
}






















.bg-abstract-2 {
    background-repeat: no-repeat;
    position: relative
}

.bg-abstract-2 {
    background-image: url(../images/demo-content/bg-abstract-2-light.jpg);
    background-position: bottom;
    background-size: 150% auto
}


@media (min-width:64rem) {
    .bg-abstract-2 {
        background-size: 102% auto
    }

}



[data-theme=dark] .bg-abstract-2 {
    background-image:url(../images/demo-content/bg-abstract-2-light.jpg) .overlay {
        position: relative;
    }
}



.overlay{
    position: relative;
}
.overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .5;
}



.slider-overlay{
    position: relative;
}
.slider-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, black, #ffffff00);
    opacity: .6;
}


.our-associations .item .ct-promo {
    display: flex;
    justify-content: center;
}

.our-associations .item .ct-promo img {
    width: auto;
}


.xform {
    height: 100%;
    padding: 50px 40px;
    background: #00000085;
    position: relative;
}


footer h5 {
    color: black;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}









.library-comp-banner__inner {
    background-image: url(../images/demo-content/ui-framework-banner-bg-dark.jpg);
    position: relative;
}

.library-comp-banner__inner:after,
.library-comp-banner__inner:before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100px
}

.library-comp-banner__inner:before {
    background: linear-gradient(90deg, #22232a, rgba(34, 35, 42, 0));
    left: 0
}

.library-comp-banner__inner:after {
    background: linear-gradient(270deg, #22232a, rgba(34, 35, 42, 0));
    right: 0
}


















.counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .counter {
    font-size: 50px;
    font-weight: 600;
  }

  .counter-inner{
    justify-content: center;
  }

  .counter-inner span{
    font-size: 30px;
    font-weight: 600;
  }
  
  @media (max-width: 580px) {
    body {
      flex-direction: column;
    }
  }
  

















/*gallery css*/
@media (max-width: 580px) {
  .photos-grid-container {
    grid-template-columns: 1fr;
  }
}
.photos-grid-container .img-box {
  border: 1px solid #fff;
  position: relative;
}
.photos-grid-container .img-box:hover .transparent-box {
  background-color: rgba(0, 0, 0, 0.6);
}
.photos-grid-container .img-box:hover .caption {
  transform: translateY(-5px);
}

.photos-grid-container a{
    text-align:center;
background:#ececec;
}
.photos-grid-container img {
  width: 100%;
  display: block;
  height: 235px;
  object-fit:contain;
background:#ececec;
    
}
.photos-grid-container .caption {
  color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 1.5rem;
}
.photos-grid-container .transparent-box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.photos-grid-container .main-photo {
  grid-row: 1;
  grid-column: 1;
}
.photos-grid-container .sub {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 0.75em;
}


/*breadcrumb section*/
.breadcrumb-sec{
    min-height: 400px;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumb-sec .breadcrumb-inner{
    position: relative;
}

.breadcrumb-sec h3{
    color:#ffffff;
}

.breadcrumb-sec ul.breadcrumb-content li{
    font-size: 20px;
    color:#ffffff;
}







.mfp-arrow:before, .mfp-arrow:after {
    position: unset;
         margin-top: 0px; 
     margin-left: 0px;
}

.mfp-gallery .mfp-arrow.mfp-arrow-left:before, .mfp-gallery .mfp-arrow.mfp-arrow-right:before{
    content: none!important;
}
.mfp-gallery .mfp-arrow{
        width: 0px;
    height: 0px;
}




.contact-us-sec .xform{
    height: auto;
    background-image: url(../images/contact-us.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.contact-us-sec .xform form, .contact-us-sec .xform h2{
    position: relative;
}




.hero-slider .banner-content{
    margin-left: 50px;
}



header .logo{
    width: 180px;
    margin-right: 20px;
}



header .btn-sec a{
    background: #ffffff;
    color:#882520 ;
    font-size: 20px;
    padding: 06px 12px;
    border: 1px solid  #882520;
}

/*header .btn-sec a:hover{
    background: #ffffff;
    color: #408a0f ;
    font-size: 20px;
    padding: 08px 20px;
    border: 1px solid #408a0f;
}*/

header .btn-sec a img{
    margin-top: -4px
}

/*header .btn-sec a img{
    filter: brightness(0) invert(1);
}


header .btn-sec a:hover img{
    filter: brightness(1) invert(0);
}*/






.tours .tour .tour-image {
	 width: 100%;
	 height: auto;
}
 .tours .tour .tour-title {
	 font-weight: 500;
}
 .tours .tour .tour-description {
	 font-weight: 300;
}
 .tours .tour .tour-price {
	 font-weight: 500;
	 font-size: 1em;
}
 .tours .tour .tour-price .price {
	 font-size: 1.5em;
}
 





.jain-tour-sec .tour-lists .tour-package-details{
    height: 100%;
        display: flex;
    justify-content: center;
    align-items: center;
}


.jain-tour-sec h2{
    font-size:50px;
}



.jain-tour-sec h3 a{
    color:#007949;
}

.jain-tour-sec h3 a:hover{
    color:#fe6e02;
}





.jain-tour-sec .tour-lists{
    padding: 20px 0px;
    border-bottom: 1px solid #045293;
}

.jain-tour-sec .tour-lists .tour-sec{
    border: 1px solid #d3d3d3;
}

.jain-tour-sec .tour-lists .tour-sec{
    border: 1px solid #d3d3d3;
}


.jain-tour-sec .tour-lists:first-child{
    padding-top: 0px;
}

.jain-tour-sec .tour-lists:last-child{
    border: none;
}





.jain-tour-sec .tour-lists .tour-details h2{
    font-size: 25px;
    margin-bottom: 15px;
}



.owl-prev, .owl-next{
    position: absolute;
    top: 50%;
    z-index: 111;
    background: red;
    height: 50px;
    width: 50px;
}



.owl-nav button{
    top: 50%;
    z-index: 111;
    background: #fe5c00!important;
    height: 35px;
    width: 35px;
}


.owl-nav button span{
font-size: 45px;
    line-height: 20px;
    color:#ffffff;
}


.owl-prev{
    left: 0px;
}



.owl-next{
    right: 0px;
}




.director-message-sec img{
    border-radius:50%;
}



.director-message-sec h2 {
    text-align:center;
    margin-bottom:25px;
}

.desc{
    background:#045293;
    padding: 10px;
    color: white;
  }
  .desc p{
      text-align: center;
      margin: 0px;
      font-weight: 600;
  }











.dropdown-menu a {
  text-decoration: none;
  color: #000000;
}
.dropdown-menu a .d-flex {
  transition: all 0.5s;
}
.dropdown-menu .col-sm-6:nth-child(1) a:hover .d-flex {
  background-color: var(--bs-warning-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(2) a:hover .d-flex {
  background-color: var(--bs-danger-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(3) a:hover .d-flex {
  background-color: var(--bs-success-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(4) a:hover .d-flex {
  background-color: var(--bs-secondary-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(5) a:hover .d-flex {
  background-color: var(--bs-tertiary-bg);
}
.dropdown-menu .col-sm-6:nth-child(6) a:hover .d-flex {
  background-color: var(--bs-info-bg-subtle);
}
@media only screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}


/* header*/

.nav-link{
    color: black;
    font-size: 16px;
}

.nav-link:hover{
    background-color: #035292;;
    color: #ffffff;
}

.nav-link:hover i{
}

.dropdown-menu  ul{
    width: 280px;
}

.dropdown-menu  li{
    color: #ffffff;
    padding: 10px 20px;
}

.dropdown-menu li:hover{
    background-color: #035292;
}
.dropdown-menu li:hover a{
    color: #ffffff;
}









/* Begin float */
/* FLOATING SIDEBAR */
ul.floating-btn  {
    clear: both;
    position: fixed;
    display: block;
    list-style-type: none;
    right: 0;
    top: 50%;
    -webkit-animation: slideright 1s forwards;
    -webkit-animation-delay: 1.5s;
    animation: slideright 1s forwards;
    animation-delay: 1.5s;
    z-index: 11111;
  }
  
  @keyframes slideright {
      100% {
          right: 0;
      }
  }
  
  .floating-btn li {
    margin-bottom: 40px;
    margin-right: -40px;
    padding: 15px;
    -webkit-transform: rotate(270deg);
      -moz-transform: rotate(270deg);
      -o-transform: rotate(270deg);
       background-color: rgb(4 82 147);
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    
      -webkit-transition: width .5s, background-color .1s;
      transition: width .5s, background-color .1s;
  
  }
  
  .floating-btn li a {
      font-size: 19px;
      text-transform: none;
      text-align: center;
    text-decoration: none;
      color: #ebebeb;
  }
  
  .floating-btn li:hover {
      background-color: rgba(30, 45, 127, 1);
      color: #fff;
  }




  .incorporation-btn {
    cursor: pointer;
    align-self: center;

  }


  .incorporation-btn img{
    width: 150px;
  }

  .document-container{
    position: fixed;
    top: 0%;
    z-index: 9999;
    display: none;
  }

  .document-container img{

    width: 39%;
    max-height: 100%;
  }

  .document-container .close-btn{
    background-color: #fff;
    border: none;
  }

  .document-container .close-img{
    width: 30px;
  }

  @media screen and (max-width: 600px) {
    .contactt-detail{
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .document-container{
        top: 0%;
        left: 0;
    }

    .document-container img{
        width: 100%;
    }
  }
  
    .widget address p{
    display: flex;
    align-items: center;
    gap: 12px;
    }
  
   .widget address p i{
    font-size:20px;
    }