/* Minification failed. Returning unminified contents.
(5013,36): run-time error CSS1046: Expect comma, found '0'
(5013,40): run-time error CSS1046: Expect comma, found '/'
(5014,44): run-time error CSS1046: Expect comma, found '0'
(5014,48): run-time error CSS1046: Expect comma, found '/'
(5847,1): run-time error CSS1019: Unexpected token, found '}'
(5982,32): run-time error CSS1038: Expected hex color, found '#cccc'
(6115,17): run-time error CSS1038: Expected hex color, found '#fff9'
(7307,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(7308,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(8342,6): run-time error CSS1030: Expected identifier, found '.'
(8393,6): run-time error CSS1030: Expected identifier, found '.'
(8393,6): run-time error CSS1019: Unexpected token, found '.'
(8400,1): run-time error CSS1019: Unexpected token, found '}'
(9501,44): run-time error CSS1046: Expect comma, found '0'
(9501,48): run-time error CSS1046: Expect comma, found '/'
(9502,52): run-time error CSS1046: Expect comma, found '0'
(9502,56): run-time error CSS1046: Expect comma, found '/'
 */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    /*background: #fff url('./ajax-loader.gif') center center no-repeat;*/
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.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%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.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;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%,50%,to {
        opacity: 1;
    }

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

@keyframes flash {
    0%,50%,to {
        opacity: 1;
    }

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

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

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

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

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

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

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

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

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

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

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

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

@-webkit-keyframes shake {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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 headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

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

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

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

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

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

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

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

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg);
    }

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg);
    }

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

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

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

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

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

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

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

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

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

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

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

@-webkit-keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg);
    }
}

@keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
    }

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

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

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.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(.97,.97,.97);
        transform: scale3d(.97,.97,.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
    }

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

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

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.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(.97,.97,.97);
        transform: scale3d(.97,.97,.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

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

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

@-webkit-keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

@-webkit-keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
}

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

@-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);
    }

    to {
        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);
    }

    to {
        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);
    }

    to {
        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);
    }

    to {
        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);
    }

    to {
        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);
    }

    to {
        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);
    }

    to {
        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);
    }

    to {
        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;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

    to {
        opacity: 0;
    }
}

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

    to {
        opacity: 0;
    }
}

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

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

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

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

    to {
        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;
    }

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

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

    to {
        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;
    }

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

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

    to {
        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;
    }

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

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

    to {
        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;
    }

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

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

    to {
        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;
    }

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

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

    to {
        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;
    }

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

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

    to {
        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;
    }

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

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

    to {
        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) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -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) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg);
    }

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

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

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg);
    }

    to {
        -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) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg);
    }

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

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

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

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

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg);
    }

    to {
        -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) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

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

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

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -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) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

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

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

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

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

@-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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@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);
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.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;
    }

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

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

    to {
        -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: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        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: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        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: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        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: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        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: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

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

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

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

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

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(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;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
}

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(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;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
}

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-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;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
}

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

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-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;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(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: rotate(80deg);
        transform: rotate(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: rotate(60deg);
        transform: rotate(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;
    }

    to {
        -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: rotate(80deg);
        transform: rotate(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: rotate(60deg);
        transform: rotate(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;
    }

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

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

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

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

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

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

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

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

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

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

    to {
        opacity: 0;
    }
}

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

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

    to {
        opacity: 0;
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.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(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.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(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.delay-1s {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    .animated.delay-2s {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    .animated.delay-3s {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }

    .animated.delay-4s {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
    }

    .animated.delay-5s {
        -webkit-animation-delay: 5s;
        animation-delay: 5s;
    }

    .animated.fast {
        -webkit-animation-duration: .8s;
        animation-duration: .8s;
    }

    .animated.faster {
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
    }

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

    .animated.slower {
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
    }

@media (prefers-reduced-motion:reduce),(print) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

@font-face {
  font-family: 'lg';
  src: url("../fonts/lg.eot?n1z373");
  src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
}
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}
.lg-actions .lg-prev {
  left: 20px;
}
.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
  color: #FFF;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
}
.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}
.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}
.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}
.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}
#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
#lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}
.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}
.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}
.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.group {
  *zoom: 1;
}

.group:before, .group:after {
  display: table;
  content: "";
  line-height: 0;
}

.group:after {
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}
.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.lg-outer .lg-item {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-empty-html {
  display: none;
}
.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
@font-face {
    font-family: 'Helvetica';
    src: url('./../fonts/Helvetica-Bold.woff2') format('woff2'), url('./../fonts/Helvetica-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('./../fonts/GothamNarrow-Bold.woff2') format('woff2'), url('./../fonts/GothamNarrow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('./../fonts/GothamNarrow-Medium.woff2') format('woff2'), url('./../fonts/GothamNarrow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Narrow';
    src: url('./../fonts/GothamNarrow-Light.woff2') format('woff2'), url('./../fonts/GothamNarrow-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}


.mobile_hamburger {
    background: #006092 !important;
}

.plx-10 {
    padding-left: 10rem;
}

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

a:hover {
    color: unset;
    background: none;
}

.btn.focus,
.btn:focus {
    box-shadow: unset;
}

html {
    font-size: 7px;
    scroll-behavior: smooth;
}
.section-xs {
    margin-top: 60px;
}

body {
    font-size: 2rem;
    color: #404040;
    /*font-family: "Playfair Display", serif;*/
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #0c1c8b;
}

::placeholder {
    font-size: 0.9rem;
}

::selection {
    background: #006092;
    color: #fff;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}


ul li {
    list-style: none;
}


img {
    max-width: 100% !important;
}

a {
    /*color: #f69d0f;*/
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
}

    a:hover,
    a:focus {
        text-decoration: none;
        outline: none;
        color: #006092;
    }

b,
strong {
    font-weight: 600;
}


/* onscroll animation*/
[data-animate-in] {
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease
}

[data-animate-in="up"] {
    transform: translate3d(0, 24px, 0)
}

[data-animate-in="left"] {
    transform: translate3d(-25%, 0, 0)
}

[data-animate-in="right"] {
    transform: translate3d(25%, 0, 0)
}

[data-animate-in="down"] {
    transform: translate3d(0, -24px, 0)
}

[data-animate-in="fadeIn"] {
    transform: translate3d(0, 0, 0)
}

[data-animate-in].in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.6s ease, opacity 0.6s ease
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease
}

.page-loaded .fade-in,
.page-loaded.fade-in {
    opacity: 1
}

.isSafari.isTouch [data-animate-in],
.isSafari.isTouch [data-animate-in="up"] {
    opacity: 1;
    transition: none;
    transform: none
}


/*Buttons*/
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.5;
    color: #fff;
    padding: 1.4rem 5rem;
    font-size: 2rem;
    letter-spacing: 0px;
    border-radius: 0px;
    font-weight: 400;
}


.btn-default img {
    margin-right: 2rem;
}

.btn-default {
    position: relative;
    font-weight: 600;
}

    .btn-default:after {
        content: '';
        position: absolute;
        top: 50%;
        right: -4rem;
        height: 2px;
        width: 5rem;
        background: #fff;
    }


.btn-primary {
    background: #006092;
    color: #fff !important;
    border: 1px solid #c9c9c9;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #fff;
    transition: 0.3s linear;
    position: relative;
}

    .btn-primary:hover {
        background: #fff;
        color: #006092 !important;
        border: 1px solid #006092;
    }

        .btn-primary:hover:after {
            background: #006092;
            right: -20%;
        }

        .btn-primary:hover:before {
            border-top: 2px solid #006092;
            border-right: 2px solid #006092;
            right: -20%;
        }

.btn-primary-white {
    background: #fff;
    color: #006092;
    border: 1px solid #c9c9c9;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

    .btn-primary-white:hover {
        background: #006092;
        color: #fff;
    }

.btn-primary span {
    color: #fff !important;
    margin-left: 10px;
}

.btn_read_more {
    color: #fff;
    letter-spacing: 0.5px;
    border: 0;
    padding: 0;
    position: relative;
}

    .btn_read_more:hover {
        color: #fff;
    }

    .btn_read_more:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background: #fff;
        bottom: -3px;
        left: 0;
        transition: 0.8s ease-out;
    }

    .btn_read_more:before {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        right: 0;
        bottom: -8px;
        transform: rotate(45deg);
        transition: 0.5s ease-out;
    }

    .btn_read_more:hover:before {
        right: -10px;
    }

    .btn_read_more:hover:after {
        width: 110%;
    }

.homemenu.in .logo img,
.homemenu.homemenubottom .logo img {
    width: 19rem;
    transition: .3s linear;
}


#header.fix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff !important;
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 20%) !important;
    -webkit-box-shadow: 0 1px 10px 0 rgb(0 0 0 / 20%) !important;
}

    #header.fix .offscroll-logo {
        display: none;
        transition: .3s linear;
    }

    #header.fix .onscroll-logo {
        display: block;
        width: 15rem;
        transition: .3s linear;
    }

.navbar li {
    position: relative;
    list-style: none;
}

    .navbar li a {
        display: block;
        text-decoration: none;
        white-space: nowrap;
        color: #444;
    }

    .navbar li ul {
        display: none;
    }

    .navbar li:hover > ul {
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 0;
    }

    .navbar li > ul li:hover > ul {
        top: 0;
        left: 100%;
    }

    .navbar li li:hover li {
        background: #fff;
    }

    .navbar li ul li {
        border-top: 0;
    }

.navbar ul ul {
    left: 100%;
    top: 0;
}

nav.primary-navigation ul li {
    padding: 0px 1.4rem 0px;
}

nav.primary-navigation ul.dropdown li {
    padding: 0px 2.4rem 2rem;
}

nav.primary-navigation ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 0;
    left: 0;
    display: none;
    background: white;
}

    nav.primary-navigation ul li:hover > ul,
    nav.primary-navigation ul li ul:hover {
        visibility: visible;
        opacity: 1;
        display: block;
        min-width: 25rem;
        text-align: left;
        padding-top: 20px;
        box-shadow: 0px 3px 5px -1px #ccc;
    }

    nav.primary-navigation ul li ul li {
        clear: both;
        width: 100%;
        text-align: left;
        border-style: none;
    }

        nav.primary-navigation ul li ul li a {
            transition: all 0.3s ease;
        }

            nav.primary-navigation ul li ul li a:hover {
                padding-left: 10px;
                border-left: 2px solid #006092;
                transition: all 0.3s ease;
                color: #006092;
                font-weight: 500;
            }

ul li ul li a {
    transition: all 0.5s ease;
    color: #006092;
}


.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding: 5px 0;
}

.navbar-light .navbar-nav .active > .nav-link {
    color: #2b80d9;
}


#toggle {
    width: 2.8rem;
    height: 3rem;
    margin: 10px auto;
}

    #toggle div {
        width: 100%;
        height: 5px;
        background: white;
        margin: 4px auto;
        transition: all 0.3s;
        backface-visibility: hidden;
    }

    #toggle.on .one {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #toggle.on .two {
        opacity: 0;
    }

    #toggle.on .three {
        transform: rotate(-45deg) translate(7px, -8px);
    }

/*banner*/
#close-video {
    color: #fff;
    font-size: 6rem;
    width: 5.6rem;
    text-align: center;
    position: absolute;
    right: 2rem;
    cursor: pointer;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 100rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 3rem;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

a#play-button:hover {
    color: #fff;
}

#banner,
#bannerSlider,
#banner .slick-slide,
#banner .caption {
    height: 96vh;
}

    #banner .slick-slide {
        position: relative;
    }


.overflow-hidden {
    overflow: hidden;
}

.drop-in {
    animation: drop-in 1s ease 200ms backwards;
}

.drop-in-2 {
    animation: drop-in 1200ms ease 500ms backwards;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

#banner .caption {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 55%;
    left: 50%;
    width: 88%;
    color: #fff;
    z-index: 1;
    margin: 0 auto;
}

#banner h2 {
    color: #f7f7f7;
    font-size: 10rem;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

    #banner h2 span {
        font-weight: 600;
    }


/*Section Padding*/

.block {
    padding: 5rem 0;
}

.inner-block {
    padding: 4rem 0;
}
.home_slider {
    padding-top: 10rem;
}

/*Section Title*/

.section-heading,
.inner_section_heading {
    margin-bottom: 4rem;
    position: relative;
}

    .section-heading h1,
    .section-heading h2,
    .inner_section_heading h2 {
        color: #006092;
        font-family: "Playfair Display", serif;
        text-align: left;
        font-size: 6rem;
        line-height: 8rem;
        margin-bottom: 1rem;
        position: relative;
        font-weight: 600;
        max-width: 88%;
    }

    .inner_section_heading h2 {
        font-size: 5rem;
        line-height: 6rem;
        margin-bottom: 3rem;
    }

    .inner_section_heading h3 {
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 1px;
        padding-bottom: 1.5rem;
    }

    .section-heading.white_text h2 {
        color: #fff;
    }

heading_left_boder_none {
    padding-left: 0;
}

.heading_left_boder_none:before {
    display: none;
}

.overview p,
.about-overview p {
    text-align: justify;
}


.about-overview {
    position: relative;
}

    .about-overview .bg-ele1 {
        position: absolute;
        content: "";
        bottom: -1px;
        left: 0;
        width: 32%;
        height: 50%;
        background: #006092;
        z-index: 0;
    }

    .about-overview .bg-ele2 {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        width: 68%;
        height: 100%;
        background: #f6f6f8;
        z-index: 0;
    }




/* specialize in turning vision */

.specialize {
    background: #006092;
    color: #fff;
}

    .specialize .section-heading h1 {
        color: #fff;
    }

.specialize_accordion {
    margin: 10rem 0;
}

    .specialize_accordion .accordion-title:before {
        content: '';
        background: url(../images/icons/accordion_minus.svg) center no-repeat;
        width: 5.2rem;
        height: 5.2rem;
        background-size: contain;
        position: absolute;
        right: 3.4rem;
        background-size:contain;
    }

    .specialize_accordion .accordion-title.collapsed:before {
        content: '';
        background: url(../images/icons/accordion_plus.svg) center no-repeat;
        background-size: contain;
    }

    .specialize_accordion .card {
        background: none;
        box-shadow: unset;
        border: 0;
        position: relative;
    }

    .specialize_accordion .card-header {
        background: unset;
        border-bottom: 1px solid #D8D8D8 !important;
        border-radius: 0 !important;
        box-shadow: unset;
        transition: 0.5s ease-out;
        padding: 0;
    }

        .specialize_accordion .card-header .accordion-title {
            font-size: 3.4rem;
            color: #fff;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            width: 100%;
            padding: 3.4rem;
            background: #145888;
        }

    .specialize_accordion .accordion-title.collapsed {
        background: unset;
    }

    .specialize_accordion .card-header .accordion-title .icon_img {
        margin-right: 7rem;
        width: 6rem;
        height: 6rem;
    }

    .specialize_accordion .card-header .accordion-title .hover_image1 {
        opacity: 0;
        width: 40rem;
        margin-top: auto;
        margin-bottom: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: 28%;
        display: block;
        transition: 0.5s ease-out;
        z-index: 1;
    }

    .specialize_accordion .card-header:hover .accordion-title {
        background: #145888;
    }

        .specialize_accordion .card-header:hover .accordion-title span {
            transition: all 1s;
        }

        .specialize_accordion .card-header:hover .accordion-title span {
            transform: translateX(3rem)
        }

    .specialize_accordion .card-header:hover .hover_image1 {
        opacity: 1;
    }

    .specialize_accordion .card-body {
        background-color: unset;
        padding: 6rem 4rem 3rem;
    }

        .specialize_accordion .card-body p {
            text-transform: none;
            font-weight: 300;
            line-height: 1.67;
        }

/*explore_overview*/
.explore_overview {
    position: relative;
}

    .explore_overview:before {
        content: '';
        background: url(../images/Shape.png) center no-repeat;
        background-size: cover;
        width: 50%;
        height: 110vh;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
    }

.projects_slider {
    padding: 6rem 0 7rem;
    position: relative;
    margin-left: 12rem;
}

.slider_images {
    overflow: hidden;
    border-radius: 2rem;
    width: fit-content;
}

.swiper-slide:hover .slider_images img {
    transform: scale(1.1)
}

.slider_images {
}

.projects_slider .slider_images img {
    border-radius: 2rem;
    transition: 0.3s linear;
    width: 58.4rem;
    height: auto;
}

.projects_slider .project_name strong {
    font-size: 2.8rem;
    color: #5A5A5A;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3rem 0;
    display: block;
}

.projects_slider .project_name h3 {
    font-size: 5rem;
    color: #000;
    letter-spacing: 1px;
    margin: 0;
}

/*projects_overview*/
.top_logo_main {
    min-height: 40rem;
    position: relative;
    padding: 0 0;
    overflow: hidden;
}

.top_logo {
    bottom: 0;
    height: 100%;
    opacity: 0.5;
    position: absolute;
    width: 100%;
}

    .top_logo:before {
        animation: infiniteScrollBg 100s linear infinite;
        background-image: url('../images/city_illustration_loop1.jpg');
        background-repeat: repeat-x;
        background-position-y: bottom;
        content: '';
        height: 100%;
        padding: 0 0;
        position: absolute;
        transition: all linear .1s;
        width: 500%;
        background-size: contain;
    }

@keyframes infiniteScrollBg {
    0% {
        background-position-x: 100%
    }
}

.top_logo img {
    display: none;
    opacity: 0;
}

.mj_logo {
    position: absolute;
    z-index: 1;
    bottom: 0;
    max-width: 60%;
    height:auto;
}

.bottom_content {
    position: relative;
    background: url('../images/factsbg-image.jpg') center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    margin-top: -1px;
}

    .bottom_content:before {
        content: '';
        background: #216B9F90;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
    }

    .bottom_content .main_numbers_row {
        position: relative;
        z-index: 1;
        align-items: center;
        height: 100%;
    }

        .bottom_content .main_numbers_row .numbers h4 {
            font-size: 11rem;
            color: #fff;
            font-family: 'Helvetica';
        }

        .bottom_content .main_numbers_row .numbers h5 {
            font-family: 'Playfair Display', serif;
            color: #fff;
            font-size: 3.5rem;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 3rem;
            text-transform: uppercase;
        }

        .bottom_content .main_numbers_row .numbers p {
            color: #fff;
            text-align: center;
        }

        .bottom_content .main_numbers_row .experiance .numbers h4 {
            font-size: 17rem;
        }

/*efficiency_main*/
.efficiency_main {
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
}

    .efficiency_main:before {
        content: '';
        background: url(../images/Shape.png) center no-repeat;
        background-size: cover;
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }


    .efficiency_main .experiance_right_img img {
        border-radius: 2.5rem;
    }

/*footer*/
.main_footer {
    position: relative;
    overflow: hidden;
}

    .main_footer .container {
        z-index: 10;
    }

    .main_footer:before {
        content: '';
        background: url(../images/footer_image.jpg) center no-repeat;
        background-size: cover;
        width: 65%;
        height: 100%;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
        border-radius: 6rem 0 0 0rem;
    }

    .main_footer::after {
        content: '';
        background: #216B9F;
        background-size: cover;
        width: 60%;
        height: 100%;
        position: absolute;
        z-index: 1;
        left: 0;
        top: 10rem;
        border-radius: 0rem 6rem 0 0rem;
    }
.footer_logo img {
    width: 32rem;
    height: auto;
}
    .main_footer .footer_logo {
        padding: 14rem 0 0rem 0;
    }

    .main_footer .footer_links ul {
        padding-left: 5rem;
        padding-top: 7rem;
    }

        .main_footer .footer_links ul li {
            margin-bottom: 1rem;
            position: relative;
        }

            .main_footer .footer_links ul li:after {
                content: '';
                width: 12px;
                height: 1px;
                position: absolute;
                left: -19px;
                top: 15px;
                background: #fff;
            }

            .main_footer .footer_links ul li a {
                color: #fff;
            }

.connect_with_us h6 {
    font-size: 2.6rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 2rem;
    border-bottom: 1px solid #979797;
    margin-bottom: 2.8rem;
}

.connect_with_us ul li {
    position: relative;
    color: #fff;
    margin-bottom: 6rem;
    font-size: 2rem;
    letter-spacing: 1px;
    padding-left: 6.2rem;
}

    .connect_with_us ul li img {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0;
    }

    .connect_with_us ul li a {
        color: #fff;
    }

.footer_inner {
    border-bottom: 1px solid #979797;
}

.footer_bottom p,
.footer_bottom p a {
    color: #fff;
    line-height: 4rem;
    padding: 1.8rem 0;
}

.footer_social ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .footer_social ul li {
        background: #fff;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s linear;
    }

        .footer_social ul li a i {
            color: #216B9F;
        }

        .footer_social ul li:hover {
            outline: 1px solid #fff;
            color: #fff;
            background: unset;
            margin-top: -7px;
            box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
        }

            .footer_social ul li:hover a i {
                color: #fff;
            }

            .footer_social ul li:hover a img {
                filter: brightness(7.5);
            }

/* Contact us*/
.breadcrumbs-custom {
    padding: 18rem 0;
    position: relative;
}

    .breadcrumbs-custom:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3)
    }

.breadcrumbs-custom-title {
    color: #fff;
    text-align: center;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

}

.breadcrumbs-custom {
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}

    .breadcrumbs-custom::before {
        content: '';
        z-index: -1;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: .4;
        background-color: #151515;
        pointer-events: none;
    }

    .breadcrumbs-custom[data-opacity='37']::before {
        opacity: .37;
    }

    .breadcrumbs-custom[data-opacity='45']::before {
        opacity: .45;
    }

    .breadcrumbs-custom[data-opacity='48']::before {
        opacity: .48;
    }

.breadcrumbs-bg-1::before {
    background: #275d94;
}

.breadcrumbs-custom-path {
    margin-bottom: 0;
    margin-left: -22px;
    margin-right: -22px;
    letter-spacing: 0;
    text-align: center;
}

    .breadcrumbs-custom-path > * {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }

    .breadcrumbs-custom-path a {
        display: inline;
        vertical-align: middle;
    }

        .breadcrumbs-custom-path a,
        .breadcrumbs-custom-path a:active,
        .breadcrumbs-custom-path a:focus {
            color: #006092;
        }

    .breadcrumbs-custom-path li {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
        line-height: 1.7;
    }

        .breadcrumbs-custom-path li::after {
            content: '';
            font-family: 'FontAwesome';
            position: absolute;
            top: 52%;
            right: -5px;
            display: inline-block;
            width: 1px;
            height: 16px;
            font-size: inherit;
            font-style: normal;
            color: #006092;
            background-color: #006092;
            transform: translate3d(0, -50%, 0);
        }

        .breadcrumbs-custom-path li:last-child::after {
            display: none;
        }

        .breadcrumbs-custom-path a:hover,
        .breadcrumbs-custom-path li.active {
            color: #9a9a9a;
        }

        .breadcrumbs-custom-path li.active {
            top: 2px;
            font-weight: 600;
        }



.divider-section {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
}

.right_conatct_social_icon {
    background: #006092;
}

.contact_us {
    padding: 9rem 0px 8rem;
    position: relative;
}

    .contact_us::after {
        content: '';
        background: url(../images/Shape.png) center no-repeat;
        background-size: cover;
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        z-index: -1;
    }

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
}

.contact_field {
    padding: 6rem 20rem 9rem 10rem;
}

.right_conatct_social_icon {
    height: 100%;
    padding: 2rem 1rem;
}

.contact_field h3 {
    color: #000;
    font-size: 4rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}

.contact_field p {
    color: #444;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 3.5rem;
}

.form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
    height: 4.5rem;
    font-size: 1.8rem;
    padding-left: 0;
}

input::placeholder {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 2px;
    font-family: "Raleway", sans-serif;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #00609280;
}

.form-control::placeholder {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: normal;
}

.contact_info_sec {
    position: absolute;
    background-color: #006092;
    right: 1px;
    top: 11%;
    width: 40rem;
    padding: 4rem;
    border-radius: 25px 0 0 25px;
    z-index: 1;
}

    .contact_info_sec a,
    .contact_info_sec a:hover {
        color: #fff;
    }

    .contact_info_sec h4 {
        padding-bottom: 15px;
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

.info_single {
    margin: 3rem 0;
}

    .info_single img {
        margin-right: 15px;
    }

    .info_single span {
        font-size: 1.6rem;
        letter-spacing: 1px;
        color: #fff;
        font-weight: 500;
    }

button.contact_form_submit {
    background: #006092;
    border: none;
    color: #fff;
    padding: 1.5rem 1.5rem;
    width: 100%;
    margin-top: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.2s linear;
}

    button.contact_form_submit:hover {
        outline: 1px solid #006092;
        background: unset;
        color: #006092;
    }

.socil_item_inner li {
    list-style: none;
}

    .socil_item_inner li a {
        color: #fff;
        margin: 0px 15px;
        font-size: 14px;
    }

.socil_item_inner {
    padding-bottom: 10px;
}

/*About us*/
.about_us {
    position: relative;
    background: #fff9;
}

.section_description {
    text-align: justify;
}

    .section_description p {
        margin-bottom: 2rem;
    }

.about_us:before {
    content: '';
    background: url(../images/Shape.png) center no-repeat;
    background-size: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    transform: scaleX(-1);
    z-index: -1;
}

.right_img_1 img {
    border-radius: 1rem;
    box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
    border: 2rem solid #ffffff;
}

.right_img_1.right,
.right_img_1.left {
    max-width: 60.5rem;
    height: auto;
    margin: auto;
    position: relative;
    margin-top: 9rem;
    z-index: 1;
}

.vision_div {
    margin-top: 7rem;
    margin-bottom: 6rem;
}

.right_img_1.right:before {
    content: '';
    width: 15rem;
    height: 15rem;
    background: #066394;
    position: absolute;
    border-radius: 1rem;
    z-index: -1;
    top: -70px;
    right: -70px;
}

.right_img_1.left:before {
    content: '';
    width: 15rem;
    height: 15rem;
    background: #066394;
    position: absolute;
    border-radius: 1rem;
    z-index: -1;
    left: -70px;
    right: unset;
    top: -70px;
}

.main_management_box {
    position: relative;
    margin-top: 10rem;
}

    .main_management_box:hover .team_img {
    }

    .main_management_box .team_img {
        max-width: 41rem;
        position: absolute;
        bottom: 0;
        left: -8%;
        transition: 1s linear;
        z-index: 1;
        height: 100%;
        top: -25%;
        height: fit-content;
    }

.management_div {
    background: #f6f6f8;
    max-width: 75%;
    min-height: 40rem;
    padding: 5rem;
    padding-left: 16rem;
    position: relative;
    margin: auto;
}

    .management_div:before {
        content: '';
        position: absolute;
        background: url('../images/mjshah_simbol.svg') right no-repeat;
        width: 100%;
        height: 100%;
        background-size: contain;
        top: 0;
        left: 0;
        opacity: 0.15;
        filter: contrast(0.9) brightness(0.9);
    }

    .management_div .name_designation h3 {
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .management_div .name_designation h4 {
        font-size: 2.4rem;
        letter-spacing: 1px;
        margin: 2rem 0;
        font-weight: 600;
    }

.main_management_box {
    margin: 15rem auto;
}

.management_div.right_content {
    margin-left: unset;
    padding-left: 5rem;
    padding-right: 18rem;
    text-align: right;
}

    .management_div.right_content:before {
        transform: scaleX(-1);
    }

.team_img.right_img {
    left: unset;
    right: 6%;
}

/*Management Css*/

/*Project*/
#GetPrice-form {
    padding: 2rem;
}
#GetPrice-form label {
    font-size: 1.8rem;
    font-weight: 600;
}
    #GetPrice-form .form-control::placeholder {
        font-size:1.6rem;
    }
 .modal_close {
    position: absolute;
    top: -10px;
    right: -10px;
}
.modal_close i {
        background: #006092;
        color: #fff;
        width: 3rem;
        height: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 100;
        border-radius: 50%;
        font-size: 1.6rem;
    }
.modal.show .modal-dialog {
    transform: translate(0, 50%);
}
#submit1 {
    padding: 1rem 4rem;
    font-size: 1.8rem;
}
    #submit1:after {
        width:4rem;
    }
.project_banner {
    height: 100vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    position: relative !important;
}

    .project_banner .carousel-item img {
        width: 100%;
    }

    .project_banner .carousel-item .carousel-caption {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        padding: 0;
        height: fit-content;
        width: fit-content;
    }

        .project_banner .carousel-item .carousel-caption h1 {
            background-color: rgba(0, 0, 0, 0.5);
            font-size: 10rem;
            margin: 0;
            padding: 2rem;
        }

    .project_banner .carousel-control-next,
    .carousel-control-prev {
        width: 8%;
    }

    .project_banner .carousel-control-prev {
        transform: rotate(180deg)
    }

    .project_banner .carousel-indicators {
        bottom: 2rem;
    }

        .project_banner .carousel-indicators li {
            width: 5rem;
            height: 0.7rem;
            margin-right: 7px;
            margin-left: 7px;
        }

.project_section_2 {
    padding: 10rem 0 15rem !important;
}

    .project_section_2 .left_img_video {
        position: relative;
    }

.video_img {
    position: absolute;
    height: auto;
    top: 12rem;
    right: 5rem;
    outline: 1.5rem solid #fff;
    box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
    width: 12.5rem;
    background: #fff;
}

.project_section_2 .left_img_video .video_img img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.project_section_2 .left_img_video .video_img .play_video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}

.moretext {
    display: none;
}

.moreless-button {
    color: #000;
    font-weight: 600;
}

/*project_section_3*/
.project_section_3 .location_div .location {
    border-right: 1px solid;
    margin-bottom: 5rem;
    text-align: center;
}
    .project_section_3 .location_div .location img {
        width: 8.8rem;
        height: auto;
    }

    .project_section_3 .location_div .location:last-child {
        border-right: 0;
    }

    .project_section_3 .location_div .location h5 {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-top: 2rem;
    }

.project_section_3 {
    position: relative;
    overflow: hidden;
}

.location_div {
    justify-content: center;
    margin-top: 7rem;
}

/*project_section_4*/
.project_section_4 {
    background: #006092;
}

    .project_section_4 .right_config {
        margin-top: 9rem;
    }

    .project_section_4 .table td,
    .table th {
        border: 0;
        color: #fff;
        font-size: 2.6rem;
        padding: 2rem 0;
        vertical-align: top !important;
    }

        .project_section_4 .table td:first-child,
        .table th:first-child {
            white-space: nowrap;
        }

    .project_section_4 .table tr {
        border-bottom: 1px solid #fff;
    }

/*project_section_5*/
.project_section_5 {
    position: relative;
}

    .project_section_5:before {
        content: '';
        background: url(../images/Shape.png) center no-repeat;
        background-size: cover;
        width: 50%;
        height: 100%;
        position: absolute;
        z-index: -1;
        right: 0;
        bottom: 0;
        top: 0;
    }

    .project_section_5 .aminities_btn_row {
        justify-content: center;
        margin-top: 5rem;
        max-width:90%;
        margin:auto;
    }

    .project_section_5 .aminit_btn img {
        transition: 0.2s linear;
        width: 6.5rem;
    }

    .project_section_5 .aminit_btn {
        align-items: center;
        display: flex;
        justify-content: center;
        max-width: 60%;
        margin: 5rem;
        border: 1px solid;
        padding: 2rem;
        border-radius: 1rem;
        cursor: pointer;
        transition: 0.3s linear;
        position: relative;
    }
        .project_section_5 .aminit_btn img {
            width: 6.5rem;
            height: auto;
        }

        .project_section_5 .aminit_btn:before {
            content: '';
            position: absolute;
            width: 4rem;
            height: 4rem;
            background: #DAEFF7;
            transform: rotate(45deg);
            bottom: -7rem;
            left: 0;
            right: 0;
            margin: auto;
            display: none;
        }

        .project_section_5 .aminit_btn.active:before {
            display: block;
        }

        .project_section_5 .aminit_btn:hover,
        .project_section_5 .aminit_btn.active {
            background: #006092;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
            border-color: transparent;
        }

            .project_section_5 .aminit_btn:hover img,
            .project_section_5 .aminit_btn.active img {
                filter: brightness(4.5);
            }

    .project_section_5 .aminities_content {
        background: #DAEFF7;
        margin: 0 auto;
        padding: 5rem;
        position: relative;
    }

    .project_section_5 .slick-prev,
    .project_section_5 .slick-next {
        background-image: url(../images/icons/slick-aarow.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 50%;
        z-index: 10;
    }

    .project_section_5 .slick-next {
        background-image: url(../images/icons/slick-aarow.png);
        transform: rotate(180deg);
        top: 0;
        bottom: 0;
        margin: auto;
    }

.Aminit_img {
    outline: 10px solid #fff;
    box-shadow: 2rem 2rem 6.2rem #c4c4c4;
    max-width: 48.8rem;
    margin-left: auto;
}

    .Aminit_img.mw-770 {
        max-width: 77rem;
        margin: auto;
    }

.section_6 {
    background: #216B9F;
}

    .section_6 .nav-tabs .nav-item.show .nav-link,
    .section_6 .nav-tabs .nav-link.active {
        color: #fff;
        background-color: unset;
        border-color: unset;
        border: 0;
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 0;
        margin: 0 4rem 0 0;
        border-bottom: 3px solid #fff;
    }

    .section_6 .nav-tabs {
        border: 0;
    }

        .section_6 .nav-tabs .nav-link {
            color: #fff;
            background-color: unset;
            border-color: unset;
            border: 0;
            font-size: 3rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 0;
            margin: 0 4rem 0 0;
            border-bottom: 3px solid #216B9F;
        }

    .section_6 .nav-tabs {
        justify-content: end;
    }

/*Carousel Gallery*/
.interior_slider {
    margin: 5rem 0;
    position: relative;
}

main {
    overflow: hidden;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    background: #000;
}
.interior_slider .swiper-slide.floor-plan {
    filter:blur(1.8px)
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    /*opacity: 1;*/
}

.swiper-button-next,
.swiper-button-prev {
    bottom: 0;
    top: unset;
}

.slider_nav {
    position: absolute;
    width: 6.8rem;
    display: flex;
    bottom: -6rem;
    right: 0;
    left: 0;
    margin: auto;
}

.section_7 {
    position: relative;
    padding: 10rem 0 15rem !important;
}

    .section_7:before {
        content: '';
        background: url(../images/Shape.png) center no-repeat;
        background-size: cover;
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        z-index:-1;
    }

    .section_7 .nav-tabs {
        border: 0;
    }

        .section_7 .nav-tabs .nav-item .nav-link {
            color: #495057;
            border-color: unset;
            border: 0;
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 0;
            margin: 0 4rem 0 0;
            border-bottom: 3px solid transparent;
            transition:0.3s linear;
        }

        .section_7 .nav-tabs .nav-item.show .nav-link,
        .section_7 .nav-tabs .nav-link.active {
            color: #006092;
            border-color: unset;
            border: 0;
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 0;
            margin: 0 4rem 0 0;
            border-bottom: 3px solid #006092;
            background-color:unset;
        }
        .section_7 .nav-tabs .nav-link:hover {
            border-bottom: 3px solid #006092;
        }
        .section_7 .nav-tabs .nav-item {
            margin: 0;
        }

    .section_7 .tab-content {
        margin-top: 5rem;
    }


    .section_7 .locaton_name .locaton_logo {
        align-items: center;
        color: #10008a;
        display: flex;
        font-size: 3rem;
        font-weight: bold;
        line-height: 9.2rem;
        justify-content: center;
    }

    .section_7 .locaton_name h6 {
        font-size: 2.4rem;
        text-align: left;
        font-weight: normal;
        margin: 0;
    }
        .section_7 .locaton_name h6 b {
            font-weight:700;
        }

        .section_7 .locaton_name ul {
            text-align: left;
        }

        .section_7 .locaton_name ul li {
            padding: 10px 0 10px 25px;
            position: relative;
        }
.advantages_icon {
    width: fit-content;
    margin: 3rem auto 3rem auto;
    background: #006092;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-color: transparent;
    align-items: center;
    display: flex;
    justify-content: center;
    border: 1px solid;
    padding: 2rem 3rem;
    border-radius: 1rem;
}
.advantages_icon img {
    margin: auto;
    filter: brightness(5);
    width:6.5rem;
}
.locaton_name ul li::after {
    content:'';
    position: absolute;
    left: 0;
    top: 17px;
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #006092;
}


/*Project Listing*/
.project_box {
    background: #f1f1f1;
    outline: 2rem solid #f1f1f1;
    overflow: hidden;
    box-shadow: 2rem 2rem 6.2rem #c4c4c4;
    margin: 4rem;
    min-height: 78rem;
}

    .project_box .Project_img {
        overflow: hidden;
    }

.project_name {
    padding-top: 2rem;
}

    .project_name h3 {
        font-size: 2.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: #006092;
        margin-bottom: 1rem
    }

    .project_name ul {
        padding-left: 3rem;
    }

        .project_name ul li {
            padding-top: 1rem;
            color: #000;
            letter-spacing: 0.5px;
            position: relative;
        }

            .project_name ul li:after {
                content: '';
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: #006092;
                position: absolute;
                left: -27px;
                top: 20px;
            }

/*            .project_name ul li:before {
                content: '';
                width: 7px;
                height: 7px;
                position: absolute;
                border-top: 2px solid #006092;
                border-right: 2px solid #006092;
                left: -25px;
                top: 23.4px;
                transform: rotate(45deg);
            }*/

.project_hover img {
    transition: 0.7s linear;
}

.project_hover:hover img {
    transform: scale(1.1);
    cursor: crosshair;
}

.project_images img {
    transition: 0.8s linear;
}

.project_images {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 10rem;
}

    .project_images:hover img {
        transform: scale(1.1);
    }

    .project_images .product_description {
        position: absolute;
        background: #fff;
        right: 10px;
        bottom: 10px;
        height: fit-content;
        margin: auto;
        max-width: 45%;
        padding: 2rem 4rem 9rem;
        border-radius: 1rem;
        box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
    }

/*        .project_images .product_description:before {
            content: '';
            position: absolute;
            width: 2rem;
            height: 2rem;
            background: #fff;
            top: -11px;
            left: 8%;
            transform: rotate(45deg);
        }*/

        .project_images .product_description.left {
            position: absolute;
            background: #fff;
            top: 0;
            left: 5%;
            right: unset;
            bottom: 0;
            height: fit-content;
            margin: auto;
            max-width: 45%;
            padding: 2rem 4rem 9rem;
            border-radius: 1rem;
            box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
        }

            .project_images .product_description.left:before {
                content: '';
                position: absolute;
                width: 2rem;
                height: 2rem;
                background: #fff;
                top: -11px;
                right: 8%;
                left: unset;
                transform: rotate(45deg);
            }

        .project_images .product_description .border-corner-right-top {
            position: absolute;
            border-top: 2px solid #006092;
            border-right: 2px solid #006092;
            right: 10px;
            top: 10px;
            width: 3rem;
            height: 3rem;
            border-top-right-radius: 6px;
        }

            .project_images .product_description .border-corner-right-top:before {
                content: '';
                position: absolute;
                border-top: 2px solid #006092;
                border-right: 2px solid #006092;
                right: 6px;
                top: 4px;
                width: 24px;
                height: 24px;
                border-top-right-radius: 6px;
            }

        .project_images .product_description .border-corner-left-bottom {
            position: absolute;
            border-top: 2px solid #006092;
            border-right: 2px solid #006092;
            right: 10px;
            top: 10px;
            width: 3rem;
            height: 3rem;
            border-top-right-radius: 6px;
        }

            .project_images .product_description .border-corner-left-bottom:before {
                content: '';
                position: absolute;
                border-top: 2px solid #006092;
                border-right: 2px solid #006092;
                right: 6px;
                top: 4px;
                width: 24px;
                height: 24px;
                border-top-right-radius: 6px;
            }

.know_more {
    padding: 8px 24px;
    font-size: 1.6rem;
    position: absolute;
    bottom: 40px;
    left: 69px;
}

    .know_more:after {
        width: 4rem;
    }

.visite_website_btn {
    padding: 0.8rem 2.4rem;
    font-size: 1.6rem;
    max-width:15rem;
}

    .visite_website_btn:after, .visite_website_btn:before {
        display: none;
    }

.popup_form_btn {
    position: relative;
}

/*Realtor css start*/
.section_description ul {
    padding-left: 4rem;
    margin-top: 3rem;
}

    .section_description ul li {
        position: relative;
        margin-bottom: 2.6rem;
        margin-left: 5rem;
    }

        .section_description ul li:before {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #006092;
            position: absolute;
            left: -27px;
            top: 8px;
        }

.section_description.about ul li:before {
    display: none;
}

.section_description.about ul li .vision_img {
    position: absolute;
    background: #efeeee;
    left: -90px;
    width: 7rem;
    height: 7rem;
    display: flex;
    padding: 5px;
    border-radius: 10%;
    top: 5px;
}

/*Realtor css start*/

/*Get Price Modal*/


/*Get Price Modal*/
.main_career_section {
    position: relative;
    padding-bottom: 15rem !important;
}

    .main_career_section::after {
        content: '';
        background: url(../images/Shape.png) center no-repeat;
        background-size: cover;
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        z-index:-1;
    }

    .main_career_section .section-heading {
        margin-bottom: 3rem;
    }

.career_form {
    background: #f1f1f190;
    padding: 4rem;
    box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
    border: 2rem solid #ffffff;
    border-radius: 2rem 0 2rem 0;
}


    .form-control {
        margin-bottom: 1.5rem;
        background: unset;
    }


.form-control::placeholder {
    font-size: 1.6rem;
}

.venture_box_left {
    display: flex;
    width: 100%;
    transition: 0.3s linear;
    position: relative;
    box-shadow: 0 0px 3px rgba(0, 0, 0, -1.84), 0 3px 6px rgba(0, 0, 0, 0.10);
    height:100%;

}


    .venture_box_left:hover {
        box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
    }

    .venture_box_left:after {
        content: '';
        position: absolute;
        width: 0%;
        height: 1px;
        background: #006092;
        transition: 0.3s linear;
        top: 0;
        right: 0;
    }

    .venture_box_left::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 0%;
        background: #006092;
        transition: 0.3s linear;
        top: 0;
        right: -1px;
    }

.second_border_div:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #006092;
    transition: 0.3s linear;
    bottom: -1px;
    left: 0px;
}

.second_border_div::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 0%;
    background: #006092;
    transition: 0.3s linear;
    bottom: 0;
    left: -1px;
}




.venture_box_left:hover:after,
.venture_box_left:hover .second_border_div:after {
    width: 100%;
}

.venture_box_left:hover:before,
.venture_box_left:hover .second_border_div::before {
    height: 100%;
}


.left_logo {
    width: 26%;
    margin: auto;
    background: #fff;
    position: relative;
}

.venture_content {
    width: 65%;
    margin-left: auto;
    background: #f6f6f8;
    padding: 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .venture_content p {
        font-size: 1.8rem;
    }


/*Media Page start*/
.media_main_section {
    padding-bottom: 20rem !important;
}

.media_box {
    position: relative;
    margin: 0 1.5rem;
}

    .media_box:before {
        content: '';
        position: absolute;
        width: 10%;
        height: 15%;
        border-top: 5px solid #006092;
        border-right: 5px solid #006092;
        top: -11px;
        right: -10px;
    }

    .media_box:after {
        content: '';
        position: absolute;
        width: 10%;
        height: 15%;
        border-bottom: 5px solid #006092;
        border-left: 5px solid #006092;
        bottom: -10px;
        left: -11px;
    }

.frame {
    position: relative;
    padding: 0;
    margin: 0;
    border: solid 15px #555;
    margin: 0 0px 4rem 0px;
    box-shadow: -3px -3px 12px #999;
    overflow: hidden;
}

.border {
    position: relative;
    padding: 0;
    margin: 0;
    border: solid 70px white;
    box-shadow: -3px -3px 12px #999;
}

.frame img {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    border-top: solid 2px #aaa;
    border-left: solid 2px #aaa;
    border-bottom: solid 2px #ccc;
    border-right: solid 2px #ccc;
    transition: 0.3s linear;
}

    .frame img:hover {
        transform: scale(1.1)
    }

.award_name h6 {
    font-size: 3rem;
    font-weight: 700;
    color: #006092;
    letter-spacing: 1px;
    text-align: center;
}


/*Common Form Start*/


button.btn.btn-primary.contactpulsbtn {
    display: inline-block;
    position: fixed;
    bottom: 7%;
    transform: translateX(-10%);
    z-index: 8;
    right: 0;
    padding: 0.5rem;
    right: 3%;
}

    button.btn.btn-primary.contactpulsbtn:hover {
        background: #006092;
    }

    button.btn.btn-primary.contactpulsbtn::after {
        display: none;
    }

    button.btn.btn-primary.contactpulsbtn::before {
        display: none;
    }

.contact_model-details {
    padding: 1rem 0 !important;
    border-bottom: #efefef;
}

    .contact_model-details h5 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #006092;
    }

.contactpulsbtn {
    width: 6rem;
    height: 6rem;
    background-color: #006092;
    border-radius: 50%;
    position: relative;
    animation: animate 2s linear infinite;
    border-width: 0;
}

    .contactpulsbtn i {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 3rem;
        color: #fff;
        height: 100%;
        cursor: pointer;
    }

    .contactpulsbtn:focus {
        outline: none;
        outline: none;
    }

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(125, 125, 125, 0.7), 0 0 0 0 rgba(125, 125, 125, 0.4);
    }

    40% {
        box-shadow: 0 0 0 0 rgba(125, 125, 125, 0.7), 0 0 0 0 rgba(125, 125, 125, 0.4);
    }

    80% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0);
    }
}

#contact_popup {
    background: #ffffff;
    overflow: auto;
    padding: 1rem 0;
}
/* The Close Button */

.contact_model_header {
    padding: 1rem;
    border: 0;
}

button.contact_close_model span {
    display: inline-block;
    position: absolute;
    right: -12px;
    top: -12px;
    background: #006092;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    color: white;
}

button.close.contact_close_model {
    padding: 0;
    opacity: 1;
}

button.contact_close_model {
    font-size: 2.8rem;
}

/*Privacy Plicy*/
.privacy_policy {
    padding-bottom: 10rem;
}

    .privacy_policy h2 {
        font-size: 2.6rem;
        font-weight: 600;
        margin-bottom: 1rem;
        margin-top: 3rem;
    }

/*81 Aureate Css Start*/

/*.aureate {
    font-family: 'Gotham Narrow' !important;
}
*/

    .aureate p {
        margin-bottom: 0;
    }

.auriate_caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.slider_animation {
    width: 100%;
    transition: width 0.5s ease;
    margin: auto;
}
.home_slider_inner, .home_slider_inner .slider_box {
    overflow: hidden;
    position: relative;
}
.slider_animation .slider_img {
    width: 100%;
}

.deg_main, .inner_view {
    border-radius: 4rem;
    overflow: hidden;
    position: relative;
}


    .home_slider_inner .slider_box .slider_caption h2 {
        font-size: 7rem;
        color: #fff;
        margin-bottom: 2rem;
        text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.2), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
        line-height: normal;
    }

            .home_slider_inner .slider_box .slider_caption p {
                color: #fff;
            }




.caption_btn {
    display: flex;
    margin-top: 4rem;
}

    .caption_btn a {
        color: #fff;
        display: flex;
        align-items: center;
        border-radius: 2.5rem;
        border: 2px solid;
        height: 5rem;
        width: 21.5rem;
        justify-content: center;
        font-size: 2rem;
        line-height: normal;
    }

        .caption_btn a span {
            margin-right: 1.2rem;
        }

        .caption_btn a:hover, .caption_btn a.btn_active {
            border-color: #AC8C59;
            background: #AC8C59;
        }

.inner_view .view_img {
    transition: 0.5s linear;
    width:100%;
}

.inner_view:hover .view_img {
    transform: scale(1.1)
}

.inner_view .deg_icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.visit_site_btn {
    position: absolute;
    right: 3%;
    bottom: 6%;
}

    .visit_site_btn span {
        color: #fff;
        font-size: 2.4rem;
        margin-right: 2rem;
    }

.aureate_heading h3 {
    font-size: 5rem;
}
.qrsection p {
    font-size:1.4rem;
    font-weight:600;
}
.qrsection small {
    font-size: 1.4rem;
    text-align:justify !important;
    display:block;
}
.props_head h3 {
    font-size: 2.4rem;
}
.rest_slider {
    position: relative;
}

.main_rest_slider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
}

.rest_slider_box {
    border-radius: 4rem;
    overflow: hidden;
    position: relative;
    margin-top: 4rem;
}

.rest_slider_nav {
    background: #ede9e9;
    padding: 8px 10px;
    max-width: 37.9rem;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 9px;
}

.nav_bg {
    width: 49rem;
    margin: auto;
}

.rest_slider_nav::after {
    content: '';
}


.rest_slider .slick-prev, .rest_slider .slick-next {
    display: none !important;
}

.rest_slider_nav .inner_nav {
    display: flex;
    max-width: 24rem;
    align-items: center;
}

    .rest_slider_nav .inner_nav a {
        border-radius: 25px;
        overflow: hidden;
        margin-right: 2rem;
    }

        .rest_slider_nav .inner_nav a:last-child {
            margin: 0;
        }

        .rest_slider_nav .inner_nav a img {
            width: 10.5rem;
            height: 5.2rem;
        }

#lg-download, #lg-zoom-in, #lg-zoom-out, #lg-actual-size {
    display: none;
}


.item-slick.slick-slide.slick-current.slick-active {
    outline: none !important;
}



.slider-nav {
    margin: auto;
    display: flex;
}

    .slider-nav .item-slick {
        max-width: 24rem;
        margin-right: 15px;
        outline: none !important;
        cursor: pointer;
    }

        .slider-nav .item-slick img {
            max-width: 100%;
            background-size: cover;
            background-position: center;
        }

.slider_plus {
    cursor: pointer;
    margin-left: 10px;
}

.detail_slider {
    padding: 5rem 0;
    overflow: hidden;
}

.detail_img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}
.detail_slider .slider_image_detail::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
}
.detail_slider .swiper-slide:hover .slider_image_detail {
    transform: scale(1.1)
}

.detail_slider_img {
    position: relative;
}

    .detail_slider_img a img {
        transition: 0.3s linear;
        width:51.3rem;
        height:auto;
    }

.up_arrow_btn {
    background: url('../images/81 aureate/Shape2.svg');
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 8rem;
    height: 8rem;
    background-repeat: no-repeat;
    background-size: contain;
}

    .up_arrow_btn .up_arrow {
        position: absolute;
        right: 0.8rem;
        top: 2.7rem;
        width: 4.5rem;
        transform: rotate(-45deg);
        cursor: pointer;
    }

.detail_slider_box p {
    margin-top: 3rem;
    max-width: 80%;
    color: #404040;
}

.detail_slider_box .wiper_navigation {
    display: flex;
    float: right;
    margin-bottom: 2rem;
}

    .detail_slider_box .wiper_navigation .swiper-button-prev {
        transform: rotate(180deg);
        margin-right: 10px;
    }

    .detail_slider_box .wiper_navigation .swiper-button-prev, .detail_slider_box .wiper_navigation .swiper-button-next {
        width: 4.5rem;
        height: 4.5rem;
        position: unset;
    }

.space_left_tabs .nav-pills .nav-link:hover, .space_left_tabs .nav-pills .nav-link.active, .space_left_tabs .nav-pills .show > .nav-link {
    color: #006092;
    font-weight: 700;
}

    .space_left_tabs .nav-pills .nav-link.active::after, .space_left_tabs .nav-pills .show > .nav-link::after {
        display: block;
    }

.space_left_tabs ul li {
    margin: 1rem 0;
}

.space_left_tabs .nav-pills .nav-link {
    color: #000;
    font-size: 2.8rem;
    background: unset;
    position: relative;
}

    .space_left_tabs .nav-pills .nav-link::after {
        content: '';
        position: absolute;
        background: url('../images/81 aureate/forword_icon.svg') center no-repeat;
        right: 0;
        top: -8px;
        width: 11rem;
        height: 7rem;
        background-size: contain;
        display: none;
    }

.right_tab_content .tab-content img {
    border-radius: 2.5rem;
}

.aureate_partners, .prps_detail {
    background: #F3F3F3;
    padding: 5rem;
    width: 100%;
    border-radius: 25px;
    text-align: center;
}

.partner_whit_bg {
    background: #fff;
    border-radius: 25px;
    padding: 4rem 5rem;
    width: 100%;
}

.partner_box {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:100%;
}

.part_info {
    margin-top: 2rem;
}

    .part_info h5 {
        font-size: 1.6rem;
        color: #15284B;
        margin-bottom: 10px;
    }

    .part_info p {
        font-size: 1.4rem;
        color: #15284B;
    }

.qr_code_box {
    background: #fff;
    padding: 2.5rem 0;
    border-radius: 25px;
    margin: auto;
    max-width: 30rem;
}

    .qr_code_box h6, .qr_code_box p span {
        font-weight: 400;
        margin: 0;
    }

    .qr_code_box h6 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .qr_code_box .qr_img {
        width: 35%;
        margin: auto;
    }
.qr_code_box p {
    font-size:1.4rem;
}

.swiper4 .swiper-wrapper {
    overflow: hidden;
}

.emenities_row {
    margin-top:10rem
}
.aminit_slider {
    border-radius: 25px;
    overflow: hidden;
}

.aminit_slider_box {
    border-radius: 2.5rem;
    display: flex !important;
    justify-content: space-between;
    transition: all ease .5s;
}

.aminit_img_box {
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 50%;
}

.aminit_detail_box {
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transform: translateX(-100%);
    transition: all ease .5s;
    width: 50%;
}

.aminit_slider_box.slide_right {
    background-color: #000000;
}

    .aminit_slider_box.slide_right .aminit_detail_box {
        transform: translateX(0);
    }

.aminit_slider_box .aminit_detail_box h6 {
    color: #fff;
    font-size: 4rem;
}

.aminit_detail_box p {
    max-width: 90%;
}

.slide-emenities .slick-slide img,
.slider-nav-emenities .item-slick img {
    border-radius: 25px;
    overflow: hidden;
    width: calc(100% - 3.7rem);
}

.slider-nav-emenities .item-slick img {
    margin: 0 auto;
    width: calc(100% - 3rem);
}


.emenities .slick-slide {
    margin: 0px 20px;
}

    .emenities .slick-slide .aminit_detail_box {
        display: none;
    }

    .emenities .slick-slide.slick-current .aminit_detail_box {
        display: block;
    }
.slider-nav-emenities .slick-prev, .slider-nav-emenities .slick-next {
    width: 5rem;
    height: 5rem;
    top:-45px;

}
    .slider-nav-emenities .slick-next {
        right:0;
    }
    .slider-nav-emenities .slick-prev {
        right: 6.5rem;
        left:unset;
    }
        .slider-nav-emenities .slick-prev:before{
            background: url('../images/81 aureate/next_button.svg') center no-repeat;
            width: 5rem;
            height: 5rem;
            content: '';
            display: block;
            background-size: contain;
            opacity: 1;
            transform: rotate(-180deg);
        }
.slider-nav-emenities .slick-next:before {
    background: url('../images/81 aureate/next_button.svg') center no-repeat;
    width: 5rem;
    height: 5rem;
    content: '';
    display: block;
    background-size: contain;
    opacity: 1;
}


/*81 Aureate Css Start*/
.parsley-errors-list {
  margin: .2rem 0 .3rem;
  padding: 0;
  list-style-type: none;
  font-size: 1rem;
  line-height: 1.2rem;
  opacity: 0;
  color: #dc3545;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}
/*.parsley-required {
    background: #fde8e8;
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    position: relative;
    margin-top: 5px;
    border-radius: 4px;
}

.parsley-required:before {
    position: absolute;
    top: -17px;
    left: 50%;
    content: '';
    border: 10px solid transparent;
    border-bottom-color: #fde8e8;
    transform: translateX(-50%);
}*/
.parsley-errors-list.filled li {
    background: #fde8e8;
    display: inline-block;
    font-size: 1.1rem;
    padding: .2rem .5rem;
    position: relative;
    margin-top: .5rem;
    border-radius: .4rem;
}

.parsley-errors-list.filled li:before {
    position: absolute;
    top: -1.7rem;
    left: 50%;
    content: '';
    border: 1rem solid transparent;
    border-bottom-color: #fde8e8;
    transform: translateX(-50%);
}


.container {
    max-width: 170rem;
    padding: 0 3rem;
    margin: 0 auto;
}

@media (max-width: 1439px) {

    /*Home Page Start*/

    #banner h2 {
        font-size: 6rem;
    }

    .section-heading h1, .section-heading h2 {
        font-size: 4rem;
        line-height: 5rem;
    }

    .specialize_accordion .card-header .accordion-title .icon_img {
        margin-right: 4rem;
    }

    .projects_slider .project_name strong {
        padding: 2rem 0;
        font-size: 2.4rem;
    }

    .projects_slider .project_name h3 {
        font-size: 4rem;
    }

    .bottom_content .main_numbers_row .numbers h4 {
        font-size: 9rem;
    }

    .bottom_content .main_numbers_row .numbers h5 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .bottom_content .main_numbers_row .experiance .numbers h4 {
        font-size: 15rem;
    }


    .projects_slider {
        padding: 6rem 0 2rem;
        margin-left: 3rem;
    }
    /*Home Page End*/

    /*Project Page Start*/
    .project_banner {
        height: 100vh;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        position: relative !important;
    }

    .project_section_2 {
        padding: 6rem 0 8rem !important;
    }

    .project_section_5 .aminities_content:before {
        top: -4%;
    }

    .section_7 .nav-tabs .nav-item .nav-link, .section_7 .nav-tabs .nav-item.show .nav-link, .section_7 .nav-tabs .nav-link.active {
        font-size: 2.2rem;
        margin-right: 2rem;
    }


    .locaton_name img {
        width: 50%;
    }


    .section_7 .locaton_name h6 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    /*Project Page End*/

    /* contact page Start*/
    .contact_field {
        padding: 6rem 20rem 9rem 3rem;
    }

    .contact_info_sec {
        top: 18%;
    }
    /* contact page Start*/

    /*Venture Page Start*/
    .venture_content {
        width: 70%;
        margin-left: auto;
        background: #f6f6f8;
        padding: 2rem 2rem 1rem;
    }

    .ex_padding_left {
        padding-bottom: 0;
    }
    /*Venture Page End*/

    /* Media Page Start*/
    .award_name h6 {
        font-size: 2rem;
    }
    /* Media Page Start*/

    /*Aureate Page Start*/
    .home_slider_inner .slider_box .slider_caption h2 {
        font-size: 5rem;
        line-height: normal;
    }

    .visit_site_btn img {
        height: 50px;
    }

    .aureate p {
        font-size: 1.6rem;
    }

    .aureate_heading h3 {
        font-size: 4rem;
    }

    .space_left_tabs .nav-pills .nav-link {
        font-size: 2.4rem;
    }

    .space_left_tabs ul li {
        margin: 0.2rem 0;
    }

    .space_left_tabs .nav-pills .nav-link::after {
        width: 77px;
        height: 57px;
    }

    .slider-nav-emenities .slick-prev, .slider-nav-emenities .slick-next, .slider-nav-emenities .slick-prev:before, .slider-nav-emenities .slick-next:before {
        width: 45px;
        height: 45px;
    }
    /*Aureate Page Start*/
}

@media (max-width: 1199px) {

    html {
        font-size:10px;
    }
    /*Home Page Start*/
    .section-heading h1, .section-heading h2 {
        font-size: 3.6rem;
        line-height: 4.6rem;
    }

    .explore_overview:before {
        height: 65%;
    }

    .bottom_content {
        height: 65vh;
    }

    .specialize_accordion .card-header .accordion-title {
        font-size: 3rem;
    }

    .bottom_content .main_numbers_row .numbers h4 {
        font-size: 7rem;
    }

    .bottom_content .main_numbers_row .numbers h5 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .bottom_content .main_numbers_row .experiance .numbers h4 {
        font-size: 12rem;
    }

    .efficiency_main {
        height: 75vh;
        padding-top: 0;
    }

    .projects_slider .project_name strong {
        padding: 1.8rem 0;
        font-size: 2.4rem;
    }

    .projects_slider .project_name h3 {
        font-size: 3.6rem;
    }


    .main_footer::after {
        width: 75%;
    }

    .projects_slider {
        padding: 6rem 0 0rem;
        margin-left: 3rem;
    }

    .specialize_accordion {
        margin: 5rem 0;
    }
    /*Home Page End*/
    /*Project Page start*/

    .navbar-light .navbar-nav .nav-link {
        font-size: 2rem;
    }

    nav.primary-navigation ul li {
        padding: 0px 18px 0px;
    }

    .project_banner .carousel-item .carousel-caption img {
        width: 60%;
    }

    .project_banner .carousel-control-next, .project_banner .carousel-control-prev {
        height: fit-content;
        top: 37%;
    }

    .plx-10 {
        padding-left: 6rem;
    }

    .location_div {
        margin-top: 5rem;
    }

    .location img {
        width: 30% !important;
    }

    .project_section_3 .location_div .location h5 {
        font-size: 1.6rem;
    }

    .project_section_2 {
        padding: 6rem 0 6rem !important;
    }

    .table th {
        padding-top: 0;
    }

    .project_section_4 .table td, .table th {
        font-size: 2rem;
    }

    .inner_section_heading h2 {
        font-size: 3rem;
        line-height: 4rem;
        margin-bottom: 3rem;
    }

    .section_7 .section-heading, .inner_section_heading {
        margin-bottom: 0;
    }

    .project_section_5 .aminities_content:nth-child(3):before {
        left: 4%;
    }

    .project_section_5 .aminities_content:nth-child(4):before {
        left: 22%;
    }

    .project_section_5 .aminities_content:nth-child(5):before {
        left: 39%;
    }

    .project_section_5 .aminities_content:nth-child(6):before {
        left: 56%;
    }

    .project_section_5 .aminities_content:nth-child(7):before {
        left: 73%;
    }

    .project_section_5 .aminities_content:nth-child(8):before {
        left: 91%;
    }

    .section_6 .nav-tabs .nav-item.show .nav-link, .section_6 .nav-tabs .nav-link.active, .section_6 .nav-tabs .nav-link {
        font-size: 2.4rem;
    }

    .section_7 {
        position: relative;
        padding: 5rem 0 15rem !important;
    }

        .section_7 .nav-tabs .nav-item .nav-link, .section_7 .nav-tabs .nav-item.show .nav-link, .section_7 .nav-tabs .nav-link.active {
            font-size: 2rem;
            margin: 0 2rem 0 0;
            font-size: 1.8rem;
        }

    .project_box {
        margin: 4rem 2rem;
        min-height: 650px;
    }

    .contact_info_sec {
        position: unset;
        border-radius: 0;
        width: 100%;
    }

    .col-custom {
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .contact_field {
        padding-right: 30px;
    }

    .project_banner .carousel-item .carousel-caption h1 {
        font-size: 6rem;
    }

        .project_banner .carousel-item .carousel-caption h1 small {
            font-size: 65%;
        }

    .project_images .product_description, .project_images .product_description.left {
        max-width: 55%;
    }

    .project_name ul li {
        font-size: 1.8rem;
    }

    .aminities_btn_row .slick-prev {
        left: 0;
    }

    .aminities_btn_row .slick-next {
        right: 0;
    }

    .project_section_5 .aminit_btn {
        margin: 3.5rem;
        padding: 1rem;
    }
    /*Project Page End*/
    /*Management page Start*/
    .main_management_box .team_img {
        top: 0;
        margin: auto;
    }

    .management_div {
        padding-left: 12rem;
    }

        .management_div.right_content {
            padding-right: 12rem;
        }

    .main_management_box {
        margin: 6rem auto;
    }

    .right_img_1.left:before {
        left:-15px;
        top:-15px;
    }
    .right_img_1.right:before {
        top:-15px;
        right:-15px;
    }
    /*Management page End*/
    /*Venture Page Start*/
    .venture_content {
        width: 75%;
    }

    ..venture_box_left {
        min-height: 310px;
    }
    /*Venture Page End*/
    .award_name h6 {
        font-size: 2rem;
    }

    .home_slider_inner .slider_box .slider_caption h2 {
        font-size: 4rem;
    }

        .home_slider_inner .slider_box .slider_caption h2 br {
            display: none;
        }
    /*    .nav_bg {
        width: 430px;
    }
    .rest_slider_nav .inner_nav a img {
        width: 8.5rem;
        height: 4.2rem;
    }
    .rest_slider_nav {
        max-width: 360px;
        bottom: 12px;
    }*/
    .aureate_heading h3 {
        font-size: 3rem;
    }

    .space_left_tabs .nav-pills .nav-link {
        font-size: 2rem;
    }

        .space_left_tabs .nav-pills .nav-link::after {
            width: 70px;
            height: 51px;
        }

    .part_info h5 {
        font-size: 1.4rem;
    }

    .part_info p {
        font-size: 1.2rem;
    }

    .aminit_detail_box {
        padding-right: 1rem;
    }

    ..aminit_slider_box .aminit_detail_box h6 {
        font-size: 3rem;
    }

    .qr_code_box {
        max-width: 30rem;
    }
}

@media (max-width: 991px) {
    /*Home Page Start*/
    .section-xs {
        margin-top:0;
    }
    .slick-next:before, .slick-next:after {
        display: none;
    }
    .navbar-light .navbar-nav .nav-link {
        color: #444;
    }

    .breadcrumbs-custom-title {
        font-size: 26px;
    }

        .breadcrumbs-custom-title br {
            display: block;
        }


    .home_page .section-heading h1, .home_page .section-heading h2 {
        margin-bottom: 2rem;
        margin-top: unset;
    }

    .section-heading h1, .section-heading h2 {
        margin-bottom: 2rem;
        margin-top: 3rem
    }

    .btn-primary:after, .btn-primary:before {
        display: none;
    }

    #header.fix {
        background: #fff !important;
        position: unset;
    }

        #header.fix .offscroll-logo {
            width: 140px !important;
        }

    nav.primary-navigation ul li:hover > ul, nav.primary-navigation ul li ul:hover {
        position: unset;
        width: 100%;
        min-width: unset;
        box-shadow: unset;
    }

    .header collapsed .header {
        height: auto;
    }


    .bottom_content .main_numbers_row .numbers h4 {
        font-size: 5rem;
    }

    .bottom_content .main_numbers_row .experiance .numbers h4 {
        font-size: 9rem;
    }

    .bottom_content .main_numbers_row .numbers p {
        color: #fff;
        font-size: 1.6rem;
    }

    .specialize_accordion .card-header .accordion-title {
        font-size: 2.4rem;
    }

    .efficiency_main {
        height: auto;
        padding-top: 5rem;
    }


    .experiance_right_img {
        margin: 5rem 0;
    }

    .efficiency_main .experiance_right_img img {
        width: 100%;
    }

    .efficiency_main:before {
        width: 100%;
    }


    .main_footer .footer_logo {
        padding: 0;
    }

    .advantages_icon {
        margin-right: auto;
    }

    .main_footer {
        margin-top: 0;
        padding-top: 7rem;
    }

        .main_footer::after {
            width: 100%;
            border-radius: 0;
            top: 0;
        }

        .main_footer:before {
        }

    /*Home Page End*/

    /*Project Page start*/
    .project_banner .carousel-control-next, .project_banner .carousel-control-prev {
        height: fit-content;
        top: 30%;
    }

    .project_section_2 {
        padding: 5rem 0 4rem !important;
    }

        .project_section_2 .left_img_video .video_img {
            width: 21%;
            bottom: 0rem;
            right: 0rem;
            outline: 1.4rem solid #fff;
        }

    .plx-10 {
        margin-top: 5rem;
        padding-left: 1.5rem;
    }

    .project_section_2 .left_img_video {
        position: relative;
        margin-bottom: 4rem;
    }

    .project_section_2 {
        padding: 5rem 0 0rem !important;
    }

    .project_section_3 .section-heading img {
        width: 6rem;
    }

    .project_section_4 .right_config {
        margin-top: 4rem;
    }

    .project_section_5 .aminities_content:before {
        top: -2.8%;
        width: 35px;
        height: 35px;
    }

    .section_7:before {
        width: 100%;
    }

    .project_section_5 .aminit_btn {
        max-width: 40%;
        margin: 5rem auto;
        padding: 1rem;
    }

    .project_images .product_description, .project_images .product_description.left {
        position: unset;
        max-width: 100%;
        background: #f6f6f8;
    }

        .project_images .product_description:before, .project_images .product_description.left:before {
            display: none;
        }

    .plx-10 {
        margin-top: 0;
    }
    /*Project Page End*/
    /*Management page Start*/
    .main_management_box {
        margin: 7rem auto;
    }

        .main_management_box .team_img {
            max-width: 33.7%;
        }

    .vision_div {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .about_numbers .bottom_content {
        height: auto;
        padding: 5rem 0
    }

    .top_logo_main {
        min-height: 290px;
    }
    /*Management page End*/
    .mobile_margin {
        margin-bottom: 5rem;
    }

    .award_name h6 {
        font-size: 2rem;
    }

    .frame {
        margin: 0px 0px 35px 0px;
    }

    .media_main_section {
        padding-bottom: 5rem !important;
    }

    .space_left_tabs {
        margin-bottom: 3rem;
    }

    .up_arrow_btn {
        width: 68px;
        height: 68px;
    }

    .main_career_section {
        padding-bottom: 5rem !important;
    }

    .up_arrow_btn .up_arrow, .detail_slider_box .wiper_navigation .swiper-button-prev, .detail_slider_box .wiper_navigation .swiper-button-next {
        width: 33px;
    }

    .main_detail {
        padding-bottom: 0;
    }

    .rest_slider_nav {
        max-width: 260px;
    }

        .rest_slider_nav .inner_nav a img {
            width: 7rem;
            height: 3.2rem;
        }

    .nav_bg {
        width: 340px;
    }

    .rest_slider_nav {
        bottom: 0;
    }

        .rest_slider_nav .inner_nav {
            max-width: 158px;
        }

    .inner_view .deg_icon {
        height: 7rem;
    }

    .visit_site_btn span {
        font-size: 2rem;
    }

    .slider-nav-emenities .slick-prev, .slider-nav-emenities .slick-next, .slider-nav-emenities .slick-prev:before, .slider-nav-emenities .slick-next:before {
        display: none;
    }

    .slide-emenities .slick-prev::before {
        content: '';
    }

    .slide-emenities .slick-next::before {
        content: '';
    }

    .slide-emenities .slick-prev {
        background: url('../images/81 aureate/next_button.svg') center no-repeat;
        width: 50px;
        height: 50px;
        display: block;
        background-size: contain;
        opacity: 1;
        z-index: 1;
        transform: rotate(-180deg);
        left: unset;
        top: -65px;
        right: 65px;
    }

    .slide-emenities .slick-next {
        background: url('../images/81 aureate/next_button.svg') center no-repeat;
        width: 50px;
        height: 50px;
        display: block;
        background-size: contain;
        opacity: 1;
        z-index: 1;
        top: -40px;
        right: 0;
    }

    .aminit_slider {
        border-radius: 25px;
        overflow: unset;
        width: 100%;
        height: 100%;
    }

    .home_slider_inner .slider_box .slider_caption h2 {
        font-size: 3rem;
    }

    .caption_btn a {
        height: 45px;
        width: 180px;
        font-size: 1.6rem;
    }

    .project_name h3 {
        font-size: 2.8rem !important;
    }

    .video_img {
        position: absolute;
        height: auto;
        top: 2rem;
        right: 2rem;
        width: 100px;
        outline: 0.7rem solid #fff;
    }
    .slider_animation  {
        padding-top:0;
    }
}

@media (max-width: 767px) {
    /*Home Page Start*/
    .breadcrumbs-custom-path {
        padding: 15px 0;
        margin: 0;
    }

    #MainMenu {
        padding-top: 2rem !important;
    }


    .container {
        padding: 0 1.5rem;
    }

    .about-overview {
        padding-top: 0;
    }

        .about-overview .bg-ele1 {
            display: none;
        }

        .about-overview .bg-ele2 {
            width: 100%;
        }

    .projects_slider {
        margin: 0 1.5rem;
        text-align: center;
        padding-top: 3rem;
    }

        .projects_slider .project_name {
            text-align: left;
        }

    .top_logo:before {
        animation-duration: 200s;
    }

    .bottom_content {
        height: auto;
        padding: 5rem 0;
    }

    .numbers {
        margin-bottom: 3rem;
    }

    .explore_overview:before {
        width: 100%;
    }

    .explore_overview {
        padding-bottom: 0;
    }

    .mj_logo {
        max-width: 85%;
    }

    .specialize_accordion .card-body {
        padding: 3rem 1rem 3rem;
    }

    .bottom_content .main_numbers_row .experiance .numbers h4 {
        font-size: 7rem;
    }

    .hover_image1 {
        display: none !important;
    }

    .specialize_accordion .card-body p {
        text-transform: none;
        font-size: 2rem;
        font-weight: 300;
        line-height: 31px;
        margin-bottom: 3rem;
        text-align: justify;
    }

    .specialize_accordion {
        margin-bottom: 0;
        margin-top: 3rem;
    }

    /*Home Page End*/
    /*Project Page Start*/
    .video_img {
        width: 90px;
    }

    .project_banner .carousel-control-next img, .project_banner .carousel-control-prev img {
        width: 40%;
    }

    .project_banner .carousel-control-next, .project_banner .carousel-control-prev {
        height: fit-content;
        top: 25%;
    }

    .project_banner .carousel-indicators li {
        width: 30px;
        height: 4px;
        margin-right: 5px;
        margin-left: 5px;
    }

    .project_section_2 .left_img_video .video_img .play_video {
        width: 30%;
    }

    .project_section_3 .section-heading span {
        margin-right: 1rem !important;
    }

    .project_section_3 {
        padding-bottom: 0;
    }

        .project_section_3 .section-heading img {
            width: 4rem;
        }

        .project_section_3 .location_div .location {
            border: 0;
        }


    .project_section_5 .aminities_content {
        margin-top: 0;
    }

        .project_section_5 .aminities_content:before {
            display: none;
        }

    .project_section_5 .aminities_content {
        padding: 3rem;
    }

    .section_6 .nav-tabs {
        justify-content: start;
    }

    .interior_slider {
        margin: 5rem 1.5rem;
    }

    .section_7 {
        padding: 5rem 0 5rem !important;
    }

        .section_7 .tab-content {
            margin-top: 3rem;
        }

        .section_7 .locaton_name h6 {
            font-size: 1.5rem;
        }

        .section_7:before {
            width: 100%;
        }

    .project_section_5 .aminities_content {
        margin: 0;
    }

    .advantages_icon {
        margin-bottom: 4rem;
    }

    /*Project Page End*/

    .top_logo_main {
        min-height: 240px;
    }

    .top_logo, .project_box {
        min-height: unset;
    }

        .top_logo:before {
            background-size: contain;
        }

    /*Management page Start*/

    .main_management_box .team_img {
        position: unset;
        max-width: 100%;
    }

    .main_management_box .right_img_1 img {
        border: 1rem solid #ffffff;
        border-radius: 0;
    }

    .management_div, .management_div.right_content {
        padding: 5rem 3rem;
        max-width: 100%;
        min-height: unset;
    }

        .management_div .name_designation h3, .management_div .name_designation h4, .management_div .management_description p {
            text-align: left !important;
        }

    /*Management page End*/
    .award_name h6 {
        font-size: 2rem;
    }

    .career_form {
        padding: 2rem;
    }

    .main_career_section h3 {
        font-size: 2.4rem !important;
    }

    .home_slider_inner .slider_box .slider_caption h2 {
        font-size: 2.6rem;
    }

    .slider_caption p {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .caption_btn a {
        height: 43px;
        width: 169px;
        font-size: 1.6rem;
    }

    .visit_site_btn img {
        height: 35px;
    }

    .caption_btn {
        margin-top: 2rem;
    }

    .aureate {
        padding: 3rem 0;
    }

    .main_rest_slider {
        position: unset;
    }

    .slide-emenities .slick-prev {
        width: 40px;
        height: 61px;
        top: -65px;
        right: 53px;
    }

    .slide-emenities .slick-next {
        width: 40px;
        height: 50px;
        top: -35px;
        right: 0;
    }

    .aminit_slider_box .aminit_detail_box h6 {
        font-size: 3rem;
    }

    .home_slider_inner, .home_slider_inner .slider_box, .deg_main, .inner_view, .rest_slider_box, .right_tab_content .tab-content img, .aureate_partners, .prps_detail {
        border-radius: 1.5rem;
    }
    .home_slider {
        padding-top:0 !important;
    }
}

@media (max-width: 575px) {
    /*Home Page Start*/
    .btn {
        padding: 10px 15px;
        font-size: 1.6rem;
        display: flex;
        width: fit-content;
    }

    #banner h2 {
        font-size: 3rem;
        text-align: center;
    }

    .btn-default {
        padding-left: 0;
    }

    .section-heading h1, .section-heading h2 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        text-align: center;
    }

    .section-heading h1, .section-heading h2, .inner_section_heading h2 {
        max-width: 100%;
    }

    .overview p, .about-overview p {
        font-size: 18px;
        text-align: justify;
    }

    .specialize_accordion .card-header:hover .accordion-title span {
        transform: translateX(0rem);
    }

    .specialize_accordion .card-header .accordion-title {
        padding: 1.2rem 0.5rem;
        font-size: 1.45rem;
    }

    #banner .caption {
        height: auto;
    }

    .caption .h-100 {
        height: unset !important;
    }

    #banner, #bannerSlider, #banner .slick-slide, #banner .caption {
        height: 50vh;
    }

    .specialize_accordion .card-header .accordion-title .icon_img {
        margin-right: 1.4rem;
        width: 42px;
    }

    .specialize_accordion .accordion-title:before, .specialize_accordion .accordion-title.collapsed:before {
        width: 30px;
        height: 30px;
        right: 0.8rem;
        background-size: cover;
    }

    .projects_slider .project_name strong {
        padding: 1rem 0;
    }

    .slider_images {
        margin-bottom: 1rem;
    }

    .experiance_right_img {
        margin-bottom: 0;
    }

    .top_logo_main {
        min-height: 170px;
    }

    .main_footer {
        padding-top: 5rem;
    }

        .main_footer .footer_links ul {
            padding-top: 3rem;
            padding-left: 2rem;
        }

            .connect_with_us ul li, .main_footer .footer_links ul li a {
                font-size: 1.8rem;
                margin-bottom: 3rem;
            }
    .qrsection small, .props_head h3 {
        text-align: center !important;
    }
    .mj_logo {
        max-width: 70%;
    }

    .footer_links {
        margin-bottom: 3rem;
    }

    .footer_bottom p, .footer_bottom p a {
        line-height: 2.8rem;
        font-size: 1.8rem;
        text-align:center;
    }

    .top_logo_main {
        min-height: 160px;
    }
    .mobile_center {
        text-align:center !important;
    }
    .connect_with_us ul li a {
        display:block;
    }
    .connect_with_us ul li span {
        display:none;
    }
    /*Home Page Start*/
    /*Project Page Start*/
    .main_projects .project_name h3 {
        margin-top: 3rem;
    }

    .main_projects .product_description, .main_projects .right_img_1.right, .main_projects .right_img_1.left {
        max-width: 100%;
    }

    .project_section_2 p {
        text-align: justify;
    }

    p {
        font-size: 1.6rem !important;
    }

    .project_banner .carousel-indicators {
        bottom: 0.5rem;
    }

    .project_banner .carousel-item .carousel-caption img {
        width: 40%;
    }

    .project_banner .carousel-control-next, .project_banner .carousel-control-prev {
        height: fit-content;
        top: 25%;
    }

    .project_banner .carousel-indicators li {
        width: 23px;
        height: 2px;
        margin-right: 3px;
        margin-left: 3px;
    }

    .project_section_4 .right_config {
        margin-top: 0rem;
    }

    .project_section_4 .table td, .table th {
        font-size: 1.6rem;
        padding: 1.5rem 1rem;
    }
    .Aminit_img {
        outline: 5px solid #fff;
    }
    .project_main h1, .project_main h2 {
        margin-top: 0 !important;
    }
    .project_section_4 .container .row .col-lg-6:nth-child(2) {
        margin-top:2rem;
    }
    .section_6 .nav-tabs .nav-link {
        margin-right: 1.5rem !important;
    }

        .section_6 .nav-tabs .nav-item.show .nav-link, .section_6 .nav-tabs .nav-link.active, .section_6 .nav-tabs .nav-link {
            font-size: 1.6rem;
        }

    .inner_section_heading h2 {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 2rem;
    }

    .section_7 .nav-tabs .nav-item .nav-link, .section_7 .nav-tabs .nav-item.show .nav-link, .section_7 .nav-tabs .nav-link.active {
        margin: 0 1.5rem 0 0;
        font-size: 1.6rem;
        line-height: 3.5rem;
    }

    .project_section_5 .aminit_btn {
        max-width: 50%;
    }

    .project_name h3 {
        font-size: 2.4rem !important;
        margin-top: 3rem;
    }

    .top_bottom_margin {
        margin: 5rem 0 !important;
    }

    .project_box {
        margin: 3rem;
    }

    .project_name ul li {
        font-size: 1.6rem;
    }

    .project_images .product_description, .project_images .product_description.left {
        padding: 2rem 2rem 8rem;
    }

    .project_name {
        padding-top: 0;
    }

    .know_more {
        bottom: 20px;
        left: 50px;
    }
    .project_banner {
        height:50vh;
    }
    .detail_slider {
        padding-bottom:0;
    }
    .partner_box {
        align-items:center;
    }
    .part_info h5, .part_info p {
        text-align: center;
    }
    .prps_detail {
        padding-left:2rem;
        padding-right:2rem;
    }
    .detail_slider_box p {
        width:100%;
    }
    .nav_bg {
        width: 100%;
        margin-top:15px;
    }

    /*Project Page End*/
    /*About Page Start*/
    .right_img_1.right:before {
        content: '';
        width: 100px;
        height: 100px;
        top: -2.5rem;
        right: -2.5rem;
    }

    .right_img_1.left:before {
        width: 100px;
        height: 100px;
        top: -2.5rem;
        left: -2.5rem;
    }

    .right_img_1 img {
        border-radius: 0.5rem;
        border: 1rem solid #ffffff;
    }

    .right_img_1.right, .right_img_1.left {
        max-width: 90%;
        margin-bottom: 0;
        margin-top: 5rem;
    }

    .vision_div {
        margin-top: 0rem;
        margin-bottom: 0rem;
    }

    .section_description ul li {
        text-align: left;
        font-size: 1.6rem;
    }
    /*Contact Page Start*/
    .contact_field {
        padding-top: 30px;
        padding-bottom: 50px;
    }

        .contact_field h3 {
            font-size: 3rem;
        }

        .contact_field p {
            color: #000;
            font-size: 1.6rem;
        }

    .contact_info_sec {
        padding: 40px 15px 20px;
    }

    .main_management_box {
        margin: 3rem auto 5rem;
    }

    .management_div, .management_div.right_content {
        padding: 3rem 2rem;
    }

        .management_div .name_designation h3 {
            font-size: 2.4rem;
        }

        .management_div .name_designation h4 {
            font-size: 2rem;
            margin: 1rem 0 2rem;
        }
    /*Contact Page Start*/

    /*Venture Page Start*/
    .venture_box_left {
        min-height: unset;
        flex-direction: column;
    }
    section.block.main_venture_section p {
        text-align: left !important;
    }

    .venture_content {
        width: 100%;
    }

    .visite_website_btn {
        position: unset;
    }

    .venture_box_left.mobile_direction {
        flex-direction: column-reverse;
    }

    .venture_content {
        padding: 2rem;
    }

    .left_logo {
        width: 50%;
    }

    .venture_content p {
        font-size: 1.6rem;
    }

    .ex_padding_right, .ex_padding_left {
        padding-top: 1rem !important;
        padding-bottom: 1rem;
    }

    .venture_box_left {
        box-shadow: 0rem 2rem 6.2rem #c4c4c4a1;
    }
    /*Venture Page Start*/

    .award_name h6, .inner_section_heading h3 {
        font-size: 2rem;
    }

    .career_form {
        padding: 1rem;
        border: 1rem solid #ffffff;
    }

    .home_slider_inner, .home_slider_inner .slider_box, .deg_main, .inner_view, .rest_slider_box, .right_tab_content .tab-content img, .aureate_partners, .prps_detail {
        border-radius: 1.5rem;
    }

        .inner_view .deg_icon {
            height: 4rem;
        }

    .visit_site_btn span {
        font-size: 1.4rem;
        margin-right: 1rem;
    }

    .visit_site_btn img {
        height: 25px;
    }

    .aureate_heading h3 {
        font-size: 2rem;
    }

    br {
        display: none;
    }

    .space_left_tabs .nav-pills .nav-link::after {
        width: 50px;
    }

    .aureate {
        padding: 2rem 0;
    }

    .aminit_slider_box, .aminit_detail_box, .aminit_slider_box {
        display: block !important;
    }

    .aminit_detail_box, .aminit_img_box {
        width: 100%;
    }

    .slide-emenities .slick-slide img {
        width: 100%;
    }

    .privacy_policy h2 {
        font-size: 2.2rem;
        text-align:left;
    }
    .privacy_policy a {
        font-size: 1.6rem;
        line-height: normal;
    }
    .aureate_partners {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .partner_whit_bg {
        padding: 4rem 3rem;
    }
}
@media (min-width:1299px) {
    html {
        font-size: 8px;
    }

}
@media (min-width:1599px) {
    html {
        font-size: 10px;
        scroll-behavior: smooth;
    }
    .section-xs {
        margin-top: 100px;
    }
}





@media (min-width:992px) {
    #header.fix {
        background: transparent !important;
        box-shadow: none !important;
    }

        #header.fix.in {
            background: #fff !important;
            box-shadow: 0 1px 10px 0 rgb(0 0 0 / 20%) !important;
            -webkit-box-shadow: 0 1px 10px 0 rgb(0 0 0 / 20%) !important;
        }

            #header.fix.in .navbar-nav .nav-link {
                color: #444;
            }

    .nav-item {
        position: relative;
        transition: .3s linear;
    }

    .container-full {
        max-width: 1920px;
        padding-left: 0rem;
        padding-right: 0rem;
        width: 100%;
    }

    body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
        height: 100vh !important;
    }
}


@media (min-width: 576px) {
    .breadcrumbs-custom-path li {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .breadcrumbs-custom-path {
        text-align: left;
        padding: 3rem 0;
        margin-bottom: 0;
    }

        .breadcrumbs-custom-path li {
            font-size: 16px;
        }
}

* + .breadcrumbs-custom-path {
    margin-top: 14px;
}

.breadcrumbs-custom-title br {
    display: none;
}


@media (min-width: 576px) {

    .breadcrumbs-custom > * {
        padding-left: 30px;
        padding-right: 30px;
    }

    * + .breadcrumbs-custom-path {
        margin-top: 18px;
    }
}

@media (min-width: 768px) {
    .breadcrumbs-custom {
        padding: 70px 0 80px;
    }

    .breadcrumbs-custom-path li {
        font-size: 1.6rem;
    }
}


@media (min-width: 1200px) {
    .breadcrumbs-custom {
        padding: 80px 0 100px;
    }
}

@media (min-width: 1600px) {
    .breadcrumbs-custom {
        padding: 18rem 0;
    }
}
@media (min-width: 1920px) {
    .about-overview, .caption, .projects_slider, .top_logo_main {
        max-width: 170rem;
        margin: auto;
    }
}
