@font-face {
    font-family: "Didot LT Std";
    src: url("http://db.onlinewebfonts.com/t/680d55a333d9a28e05b838e62d49026e.eot");
    /* IE9*/
    src: url("http://db.onlinewebfonts.com/t/680d55a333d9a28e05b838e62d49026e.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("http://db.onlinewebfonts.com/t/680d55a333d9a28e05b838e62d49026e.woff2") format("woff2"), /* chrome firefox */
    url("http://db.onlinewebfonts.com/t/680d55a333d9a28e05b838e62d49026e.woff") format("woff"), /* chrome firefox */
    url("http://db.onlinewebfonts.com/t/680d55a333d9a28e05b838e62d49026e.ttf") format("truetype"), /* chrome firefox opera Safari, Android, iOS 4.2+*/
    url("http://db.onlinewebfonts.com/t/680d55a333d9a28e05b838e62d49026e.svg#Didot LT Std") format("svg");
    /* iOS 4.1- */
}


/* Loading */

.loader-wrap {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

.loader-wrap .spinner {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    width: 50px;
    margin: auto;
    height: 50px;
}

.loader-wrap .double-bounce1,
.loader-wrap .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.loader-wrap .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.loader-wrap p {
    top: 50%;
    left: 50%;
    position: absolute;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: -30px;
    font-weight: 600;
    margin-top: 30px;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0);
        transform: scale(0.0);
    }
    50% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0);
        transform: scale(0.0);
    }
    50% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}


/*==================================:: WOW CSS Start ::==================================*/

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

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

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

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

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

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

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }
    30% {
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,
    to {
        transform: translateZ(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

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

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0deg)
    }
}

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

@keyframes tada {
    0% {
        transform: scaleX(1)
    }
    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,
    11.1%,
    to {
        transform: none
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

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

.bounceOutLeft {
    animation-name: bounceOutLeft
}

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

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

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

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

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

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 10%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

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

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 10%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

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

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateX(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(10%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        transform: none;
        opacity: 1
    }
}

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    to {
        transform: translate3d(10%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

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

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

.rotateIn {
    animation-name: rotateIn
}

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

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

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

.rotateInDownRight {
    animation-name: rotateInDownRight
}

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

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

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

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-10%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(10%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

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

.zoomIn {
    animation-name: zoomIn
}

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

.zoomInDown {
    animation-name: zoomInDown
}

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

.zoomInLeft {
    animation-name: zoomInLeft
}

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

.zoomInRight {
    animation-name: zoomInRight
}

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

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -10%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-10%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(10%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 10%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 10%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-10%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(10%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -10%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}


/*==================================:: WOW CSS End ::==================================*/


/*Slick Slider Css Start*/

.slick-slider {
    position: relative;
    display: block;
    -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;
    min-width: 100%;
}

.slick-list.dragging {
    cursor: pointer;
}

.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;
    min-width: 100%;
}

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

.slick-initialized .slick-slide {
    display: block;
    list-style: none;
    outline: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 2;
    padding: 0;
    background-size: 100% auto !important;
    width: 30px;
    height: 34px;
    text-align: center;
    font-size: 0;
    border: 0;
    cursor: pointer;
    opacity: 1;
    outline: none;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-arrow.slick-prev {
    left: 20px;
    background: url('../images/prev-icon.png') no-repeat 0 0;
}

.slick-arrow.slick-next {
    right: 20px;
    background: url('../images/next-icon.png') no-repeat 0 0;
}

.slick-arrow:focus,
.slick-arrow:hover {
    opacity: 1;
    outline: none;
}

.slick-dots {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 4px;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    font-size: 0;
    padding: 0;
    background: #ccc;
    position: relative;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #fff;
    border-color: #fff;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
    box-shadow: none;
}


/*Slick Slider Css End*/


/* ===== RESET ================================================== */

main,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
blockquote,
big,
body,
button,
center,
canvas,
caption,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
dl,
dt,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
source,
strike,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
tdvideo,
tt,
u,
ul,
var {
    background: transparent;
    border: 0 none;
    margin: 0;
    padding: 0;
    line-height: 16px;
    vertical-align: baseline;
    outline: none;
    font-size: 100%;
    font-family: inherit;
    font-weight: normal;
    font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
q:before {
    content: '';
    content: none;
}

blockquote:after,
q:after {
    content: '';
    content: none;
}

ins {
    text-decoration: none;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #e6e9ed;
    margin: 20px 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
    margin: 0;
}

ol,
ul,
li {
    list-style: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}


/* ===== GLOBAL ================================================== */

body {
    margin: 0;
    padding: 0;
    font-family: 'Didot LT Std';
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    letter-spacing: 0;
    background: #000000;
    overflow-x: hidden;
}

:focus {
    outline: 0 none;
}

:focus {
    text-decoration: none;
    color: #fff;
    outline: none;
}

a {
    text-decoration: none;
    color: #fff;
    outline: none;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

a:focus {
    outline: 0;
    outline: none;
}

::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

:-moz-placeholder {
    color: #fff;
    opacity: 1;
}


/* Firefox 18- */

::-moz-placeholder {
    color: #fff;
    opacity: 1;
}


/* Firefox 19+ */

:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}


/* Ul Li & Ol Li CSS */

ul,
ol {
    margin: 0;
    padding: 0;
}

ul ul,
ol ol,
ul ol,
ol ul {
    margin-top: 15px;
}

ul li,
ol li {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}

.entry-content ul,
.entry-content ol {
    display: inline-block;
    padding: 0;
    margin: 0 0 20px;
}

.entry-content ul li {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0 0 5px;
    position: relative;
}

.entry-content ul li:before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    background: #231f20;
    position: absolute;
    left: 2px;
    top: 8px;
    border-radius: 50%;
}

.entry-content ul li li {
    list-style: disc;
}

.entry-content ol li {
    list-style-type: decimal;
    list-style-image: none;
    list-style-position: inside;
    margin: 0 0 5px;
}

img.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

img.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

img.alignnone {
    margin: 0 0 20px;
}

iframe.alignleft {
    float: left;
    margin: 0 30px 20px 0;
}

iframe.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

iframe.iframe-embed.alignright {
    max-width: 500px;
    height: 315px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    color: #fff;
    font-family: 'Didot LT Std';
    line-height: normal;
    letter-spacing: 0;
    margin: 0 0 15px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    font-family: 'Didot LT Std';
    letter-spacing: 0;
    margin: 0 0 25px;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
}

b,
strong {
    font-weight: 600;
}

button:focus,
button:hover,
button:active {
    outline: none;
    box-shadow: none;
}

section *:last-child {
    margin-bottom: 0;
}


/*Form Input Field*/

input,
textarea,
select {
    background: none;
    border: 0;
    border-top: 1px solid #fff;
    width: 100%;
    padding: 5px 0;
    letter-spacing: 0;
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: normal;
    font-family: 'Didot LT Std';
    height: 40px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

input[type="button"],
input[type="submit"] {
    cursor: pointer;
    width: auto;
    height: auto;
}

input[type="checkbox"],
input[type="radio"] {
    border: none;
    width: auto;
    height: auto;
}

textarea {
    height: auto;
    min-height: 50px;
    padding: 10px 0;
    resize: none;
}

.selectbox {
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #e6e9ed;
    line-height: 40px;
    position: relative;
    cursor: pointer;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.selectbox:before {
    display: block;
    content: "\f107";
    font-family: 'FontAwesome';
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
}

.selectbox select {
    display: block;
    width: 100%;
    height: 100%;
    line-height: normal;
    padding: 0 30px 0 12px;
    background: transparent;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.label {
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    color: #656d78;
    font-weight: 400;
}

input[type="button"],
input[type="submit"],
input[type="image"],
input[type="file"],
input[type="search"] {
    -webkit-appearance: none;
}

input#addressSubmit {
    -webkit-appearance: none !important;
}

input[type="radio"],
input[type="checkbox"] {
    -webkit-appearance: none;
}


/* table structure*/

table {
    border-right: 1px solid #f5f7fa;
    border-top: 1px solid #f5f7fa;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

table th,
table td {
    background: #fff;
    border-left: 1px solid #f5f7fa;
    border-bottom: 1px solid #f5f7fa;
    text-align: left;
    font-size: 12px;
    line-height: 16px;
    color: #656d78;
    padding: 7px 12px;
}

table th {
    padding: 12px 12px;
    color: #434a54;
    font-weight: 500;
    background: #f5f7fa;
    vertical-align: middle;
}

table tfoot th {
    background: #fff;
}

table strong {
    font-weight: 500;
    color: #000;
}

table.table-style.bdr-0 {
    border: 0;
}

table.table-style.bdr-0 th,
table.table-style.bdr-0 td {
    border: 0;
}

table.table-style th {
    padding: 12px 15px;
    color: #434a54;
    font-weight: 500;
    background: #f5f7fa;
}

table.table-condensed th,
table.table-condensed td {
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

.table-condensed .prev,
.table-condensed .next {
    cursor: pointer;
}

span.month,
span.year {
    display: block;
    vertical-align: middle;
    margin: 2px;
    background: #eee;
    padding: 2px;
}

.day.today {
    background: #eee;
}

.day {
    color: #000;
}

.day.active {
    background: #24476a;
    color: #fff;
}

.datepicker.dropdown-menu {
    padding: 0;
    border: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.datepicker-days table.table-condensed td {
    cursor: pointer;
    font-weight: 500;
}

.datepicker-days table.table-condensed td.old {
    opacity: 0.5;
}


/*Radio Css*/

.radiobox {
    display: inline-block;
    position: relative;
    text-align: left;
    font-size: 12px;
    color: #656d78;
    line-height: 20px;
    cursor: pointer;
    padding-left: 20px;
}

.checkbox input,
.radiobox input {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.radiobox .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 12px;
    width: 12px;
}

.radiobox .checkmark .fa-dot-circle {
    display: none;
}

.radiobox .checkmark .fa-circle {
    display: block;
}

.radiobox input:checked~.checkmark .fa-dot-circle {
    display: block;
}

.radiobox input:checked~.checkmark .fa-circle {
    display: none;
}


/*Checkbox Css*/

.checkbox {
    display: inline-block;
    position: relative;
    text-align: left;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    padding-left: 20px;
    min-height: 15px;
}

.checkbox .checkmark {
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    height: 14px;
    width: 14px;
    background: #fff;
    border: 1px solid #65b5c1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
    z-index: 0;
}

.checkbox .checkmark .fa-check {
    font-size: 12px;
    line-height: 13px;
    height: 14px;
    color: #65b5c1;
    vertical-align: top;
    opacity: 0;
}

.checkbox input:checked~.checkmark .fa-check {
    opacity: 1;
}


/*Button Style*/

.button,
.btn {
    display: inline-block;
    padding: 0 15px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Raleway';
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0;
    text-align: center;
    position: relative;
    min-width: 110px;
    height: 40px;
    line-height: 38px;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}

.button:before,
.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.button:hover:before,
.btn:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.button:hover,
.button.alt:hover,
.btn:hover,
.button:focus,
.button.alt:focus,
.btn:focus {
    background: none;
    border-color: #fff;
    color: #000;
    box-shadow: 0 0 0 #000;
}

.button:focus,
.button.alt:focus,
.btn:focus {
    color: #000;
}

.button i,
.btn i {
    margin: 0 4px;
}

.hide {
    display: none !important;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.v-center {
    align-items: center;
}

.d-flex {
    display: flex;
    display: -webkit-flex;
}

.max-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1170px;
    padding: 0 15px;
}

.section1 .inner-container {
    max-width: 1000px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.section1 .inner-container h3 {
    margin-bottom: 50px;
    line-height: 45px;
}

.headitalic {
    font-style: italic;
    color: #beb9d5;
}

.section1 .inner-container h3 span {
    font-style: italic;
    color: #beb9d5;
}
.section1 .inner-container h2 span {
    font-style: italic;
    color: #beb9d5;
}

.section1 img {
    margin-bottom: 50px;
}

.inner-container {
    max-width: 800px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto
}


/* .section2 h3:before {
    content: "";
    position: absolute;
    right: 25%;
    top: 0%;
    background: url(../images/quote.png) no-repeat center;
    background-size: 100% auto;
    width: 63px;
    height: 58px;
    display: block;
} */

.address {
    margin-top: 200px;
    font-size: 42px;
}

.copyright {
    margin-top: 100px;
    color: #beb9d5;
    font-size: 18px;
}


/* Header */

.header {
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    z-index: 4;
}

.header-inner {
    position: relative;
}

.nav {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    z-index: 9;
    display: none;
}

.site-logo1 {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
    width: 300px;
    left: 0;
    right: 30%;
}

.site-logo {
    margin: 0 auto;
    position: absolute;
    left: 30%;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 300px;
}

.logo {
    display: block;
    max-width: 100%;
}

.logo img {
    display: block;
}


/*Mobile Menu Css Start*/

.overlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
}

.nav-active .overlay {
    display: block;
}

.nav-iconbox {
    display: block;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 40;
    transition: all 0.4s ease;
}

.menuicon {
    display: block;
    width: 100%;
    cursor: pointer;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.menuicon .icon-bar+.icon-bar {
    margin-top: 8px;
}

.middle-icon-bar {
    width: 80%;
}

.bottom-icon-bar {
    width: 50%;
}


/*Mobile Menu Css End*/

.navigation {
    display: none;
    padding: 10px 0 0;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
}

.navigation>ul>li {
    display: block;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}

.navigation>ul>li+li {
    margin-top: 5px;
}

.navigation>ul>li>a {
    display: inline-block;
    color: #fff;
}

.navigation>ul>li>a:hover {
    color: #fff;
}

.navigation>ul>li.active>a {
    font-weight: 700;
}


/*sticky-menu*/

.sticky-menu {
    position: fixed;
    right: 55px;
    top: 50%;
    z-index: 99;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.sticky-menu .navigation {
    display: block;
    position: relative;
    text-align: left;
    padding: 20px 0;
}

.sticky-menu .navigation>ul>li {
    font-size: 12px;
    line-height: 12px;
    position: relative;
}

.sticky-menu .navigation>ul>li+li {
    margin-top: 0;
}

.sticky-menu .navigation>ul>li>a {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    width: 20px;
    height: 18px;
    overflow: hidden;
}

.sticky-menu .navigation>ul>li a:after {
    display: block;
    content: "";
    background: #fff;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 0;
    top: 4px;
    border: 2px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.sticky-menu .navigation>ul>li.active>a {
    color: #fff;
}

.sticky-menu .navigation>ul>li.active a:after {
    background: #fff;
    border-color: #fff;
}

.sticky-menu .navigation>ul>li>a:hover {
    font-weight: 400;
    overflow: visible;
}

.sticky-menu .navigation>ul>li>a span {
    position: absolute;
    right: 100%;
    top: 0;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    line-height: normal;
    font-family: 'Didot LT Std';
}

.sticky-menu .navigation>ul>li>a:hover span {
    opacity: 1;
}

.sticky-menu .navigation>ul>li>a span:hover {
    font-weight: 700;
}

.sticky-menu .scroll-wrapper>.scroll-content {
    padding: 0 10px;
}


/** Banner Section Start **/

.banner-section {
    position: relative;
}

.banner-section .image-box {
    width: 100%;
    height: 100vh;
    position: relative;
}

.banner-section .image-box img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    opacity: 1;
}

.down-arrow {
    position: relative;
    left: 0;
    right: 0;
    top: 90%;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    vertical-align: bottom;
}

.down-arrow .arrow-icon {
    width: 33px;
    height: 29px;
    display: inline-block;
    background: url(../images/down-arrow.png) no-repeat center;
    background-size: 100% auto;
}

.down-arrow2 {
    position: relative;
    left: 0;
    right: 0;
    margin-top: -20px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    vertical-align: bottom;
}

.down-arrow2 .arrow-icon {
    width: 33px;
    height: 29px;
    display: inline-block;
    background: url(../images/down-arrow.png) no-repeat center;
    background-size: 100% auto;
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}


/** Section 1 Start **/

.section1 {
    padding: 150px 0 130px 0;
}

.section1 h3+h3 {
    margin-top: -5px;
}

.section1 ul {
    padding: 0;
    margin: 2px -14px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.section1 ul li {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    padding: 2px 14px;
}

.section1 ul li+li:before {
    content: "";
    width: 1px;
    height: 13px;
    left: 0;
    background: #fff;
    display: block;
    position: absolute;
}


/** Section 2 Start **/

.line-top-bottom {
    position: relative;
}


/* .line-top-bottom:before,
.line-top-bottom:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: url(../images/line.png) no-repeat center;
} */

.line-top-bottom:after {
    top: auto;
    bottom: 0;
}

.section2 {
    min-height: 1000px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: auto 100% !important;
}

.section2 h2 {
    font-size: 48px;
    margin: 0;
    position: relative;
}

.section2 h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -32px;
    background: url(../images/quote-icon1.png) no-repeat center;
    background-size: 100% auto;
    width: 63px;
    height: 58px;
    display: block;
}

.section2 h2:after {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    background: url(../images/quote-icon2.png) no-repeat center;
    background-size: 100% auto;
    width: 63px;
    height: 58px;
    display: block;
}

.section2 strong.name {
    display: block;
    text-align: right;
    font-size: 28px;
    font-weight: normal;
    font-style: italic;
    font-weight: normal;
    margin-top: 35px;
    color: #beb9d5
}


/** Section 4 Start **/

.section4 {
    height: 100vh;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: auto 100% !important;
}

.section4 .inner-container {
    max-width: 730px;
}


/** Section 5 Start **/

.box-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: -2px;
}

.box-list li {
    border: 1px solid #fff;
    width: 33.333%;
    max-width: 33.333%;
    flex-basis: 33.333%;
}

.box-list li a {
    display: block;
}

.box-list .image-box {
    width: 100%;
    background: #000;
    height: 638px;
    overflow: hidden;
    position: relative;
}

.box-list .image-box img {
    width: 1000%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    opacity: 0.5;
}

.box-list .image-box-logo {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s ease;
}

.box-list .image-box-logo img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: scale-down;
    display: block;
    opacity: 1;
}

.box-list .image-box:hover .image-box-logo {
    transform: scale(1.1);
}

.full-h-slider .image-box {
    width: 100%;
    overflow: hidden;
}

.full-h-slider .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.full-h-slider .slick-arrow.slick-prev {
    left: 150px;
}

.full-h-slider .slick-arrow.slick-next {
    right: 150px;
}

.accordion .btn-close {
    position: absolute;
    right: 65px;
    top: 65px;
    z-index: 1;
    width: 29px;
    height: 27px;
    display: block;
}

.accordion .btn-close img {
    width: 100%;
}

.accordion {
    position: relative;
}

.accordion .collapse:not(.show) {
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.accordion .collapse.show {
    height: auto;
    overflow: visible;
    visibility: visible;
    opacity: 1;
}


/** Section 6 Start **/

.section6 {
    padding: 180px 0 80px 0;
}

.section6 h3 {
    margin-bottom: 90px;
}

.partners-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.partners-list .item {
    padding: 15px;
    min-width: 16.666%;
    max-width: 16.666%;
    flex-basis: 16.666%;
}

.partners-list .item .image-box {
    width: 100%;
    height: 110px;
    display: block;
}

.partners-list .item .image-box img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    display: block;
}


/** Footer Start **/

.footer {
    padding: 90px 0;
}

.footer a:hover {
    color: #808080;
}

.footer-inner {
    width: 100%;
    max-width: 545px;
    margin: 0 auto;
}

.footer-form h3 {
    margin-bottom: 90px;
}

.form-group .field+.field {
    margin-top: 30px;
}

.footer-info {
    margin-top: 65px;
}

.footer-info h3 {
    margin-bottom: 22px;
}

.footer-info p {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.footer-info p+p {
    margin-top: 20px;
}

.copy-right-text {
    margin-top: 145px;
}

.copy-right-text p {
    margin: 0;
    color: #808080;
    font-size: 10px;
    line-height: 20px;
}

.copy-right-text p a {
    color: #808080;
}

.copy-right-text p a:hover {
    color: #fff;
}

.copy-right-text p+p {
    margin-top: 20px;
}

.quote {
    background: url(../images/quote.png) no-repeat right;
    width: 100%;
    height: 85px;
    margin-left: 25px;
}


/*======================================================================

=============================:: MEDIA CSS ::============================

=======================================================================*/

@media screen and (max-width:1679px) {
    .box-list .image-box {
        height: 530px;
    }
    .full-h-slider .slick-arrow.slick-prev {
        left: 80px;
    }
    .full-h-slider .slick-arrow.slick-next {
        right: 80px;
    }
}

@media screen and (max-width:1499px) {
    .box-list .image-box {
        height: 450px;
    }
    .site-logo {
        width: 200px;
    }
    .site-logo1 {
        width: 200px;
    }
    .section1 {
        padding: 20px 0 130px 0;
    }
    .section1 .inner-container h3 {
        margin-bottom: 50px;
        line-height: 45px;
        font-size: 30px;
    }
    .section1 img {
        margin-bottom: 50px;
        width: 25%;
    }
    h3 {
        font-size: 30px;
        line-height: normal;
    }
    .section2 strong.name {
        font-size: 26px;
    }
    .address {
        margin-top: 150px;
        font-size: 36px;
    }
    .address h1 {
        font-size: 36px;
    }
    .section2 {
        min-height: 750px;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: auto 100% !important;
    }
    .quote {
        background: url(../images/quote.png) no-repeat right;
        width: 100%;
        height: 85px;
        margin-left: 0px;
    }
}


/* iPad 1024px View */

@media screen and (max-width:1199px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    /* Header */
    .site-logo {
        width: 200px;
    }
    .section1 img {
        margin-bottom: 50px;
        width: 22%;
    }
    .section1 .inner-container h3 {
        margin-bottom: 40px;
        line-height: 35px;
        font-size: 24px;
    }
    .section1 {
        padding: 120px 0 110px 0;
    }
    .section2 {
        min-height: 750px;
    }
    .section2 h2 {
        font-size: 44px;
    }
    .section2 h2:before {
        bottom: -32px;
        width: 53px;
        height: 48px;
    }
    .section2 h2:after {
        right: -45px;
        top: -45px;
        width: 53px;
        height: 48px;
    }
    .section2 strong.name {
        font-size: 22px;
        margin-top: 28px;
    }
    .box-list .image-box {
        height: 350px;
    }
    .full-h-slider .slick-arrow.slick-prev {
        left: 60px;
    }
    .full-h-slider .slick-arrow.slick-next {
        right: 60px;
    }
    .accordion .btn-close {
        right: 30px;
        top: 30px;
        width: 22px;
        height: 20px;
    }
    .section6 {
        padding: 140px 0 60px 0;
    }
    .section6 h3 {
        margin-bottom: 70px;
    }
    /** Footer Start **/
    .footer {
        padding: 70px 0;
    }
    .footer-form h3 {
        margin-bottom: 70px;
    }
    .form-group .field+.field {
        margin-top: 20px;
    }
    .footer-info {
        margin-top: 45px;
    }
    .footer-info h3 {
        margin-bottom: 15px;
    }
    .footer-info p {
        font-size: 14px;
        line-height: 24px;
    }
    .copy-right-text {
        margin-top: 110px;
    }
}


/* iPad 768px view*/

@media screen and (max-width:991px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        letter-spacing: 0;
        margin: 0 0 10px
    }
    p {
        font-size: 14px;
        line-height: 22px;
    }
    ul li,
    ol li {
        font-size: 14px;
        line-height: 22px;
    }
    .slick-arrow {
        width: 15px;
        height: 19px;
    }
    /*Header*/
    .site-logo {
        width: 200px;
        left: 35%;
    }
    .head-right {
        order: 2;
        flex-basis: inherit;
        min-width: inherit;
        max-width: inherit;
        margin-right: 30px;
    }
    .site-logo1 {
        right: 35%;
    }
    .navigation {
        left: auto;
        right: 0;
        background: #fff;
        min-width: 300px;
        padding: 30px;
        margin: 20px 0 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    .navigation>ul>li {
        white-space: normal;
    }
    .navigation>ul>li>a {
        color: #000;
    }
    .navigation>ul>li+li {
        margin-top: 10px;
    }
    .menuicon .icon-bar+.icon-bar {
        margin-top: 6px;
    }
    .sticky-menu {
        display: none !important;
    }
    .nav {
        display: block;
    }
    .section1 {
        padding: 100px 0 90px 0;
    }
    .section1 ul {
        margin: -4px -8px;
        padding: 0;
        margin: 2px -14px;
        display: block;
        align-items: center;
        justify-content: center;
    }
    .section1 ul li+li:before {
        display: none;
    }
    .section1 ul li {
        padding: 7px 8px;
    }
    .section2 {
        min-height: 1000px;
    }
    .section2 h2 {
        font-size: 40px;
    }
    .section2 h2:before {
        bottom: -22px;
        width: 50px;
        height: 45px;
    }
    .section2 h2:after {
        right: -35px;
        top: -35px;
        width: 50px;
        height: 45px;
    }
    .section2 strong.name {
        font-size: 18px;
        margin-top: 25px;
    }
    .testimonials-item {
        padding: 0 40px;
    }
    .box-list .image-box {
        height: 300px;
    }
    .full-h-slider .slick-arrow.slick-prev {
        left: 20px;
    }
    .full-h-slider .slick-arrow.slick-next {
        right: 20px;
    }
    .accordion .btn-close {
        right: 20px;
        top: 20px;
    }
    .box-list li {
        width: 50%;
        max-width: 50%;
        flex-basis: 50%;
    }
    .section6 {
        padding: 120px 0 40px 0;
    }
    .section6 h3 {
        margin-bottom: 50px;
    }
    .partners-list .item {
        min-width: 20%;
        max-width: 20%;
        flex-basis: 20%;
    }
    /** Footer Start **/
    .footer {
        padding: 50px 0;
    }
    .footer-form h3 {
        margin-bottom: 50px;
    }
    .form-group .field+.field {
        margin-top: 15px;
    }
    .footer-info {
        margin-top: 30px;
    }
    .copy-right-text {
        margin-top: 80px;
    }
}


/* iPhone-6 plus 736 (Landscape) view */

@media screen and (max-width:767px) {
    body {
        -webkit-text-size-adjust: none;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 15px
    }
    h1,
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 18px;
    }
    h5,
    h6 {
        font-size: 16px;
    }
    .down-arrow {
        position: relative;
        left: 0;
        right: 0;
        top: 80%;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        vertical-align: bottom;
    }
    .down-arrow .arrow-icon {
        width: 33px;
        height: 29px;
        display: inline-block;
        background: url(../images/down-arrow.png) no-repeat center;
        background-size: 100% auto;
    }
    .down-arrow2 {
        position: relative;
        left: 0;
        right: 0;
        margin-top: -20px;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        vertical-align: bottom;
    }
    p {
        line-height: 22px;
    }
    .section1 .inner-container h3 {
        margin-bottom: 40px;
        line-height: 30px;
        font-size: 18px;
    }
    .address h1 {
        font-size: 30px;
    }
    /*Header*/
    .site-logo {
        width: 200px;
        left: 0%;
        top: 60%
    }
    .site-logo1 {
        width: 200px;
        right: 0%;
        top: 30%
    }
    .down-arrow {
        bottom: 20px;
    }
    .down-arrow .arrow-icon {
        width: 23px;
        height: 19px;
    }
    .section1 {
        padding: 150px 0;
    }
    .section2 {
        min-height: 750px;
    }
    .section2 h2 {
        font-size: 30px;
    }
    .section2 h2:before {
        bottom: -15px;
        width: 40px;
        height: 35px;
    }
    .section2 h2:after {
        right: -25px;
        top: -25px;
        width: 40px;
        height: 35px;
    }
    .section2 strong.name {
        font-size: 16px;
        margin-top: 20px;
    }
    .section4 {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }
    .section6 {
        padding: 80px 0 30px 0;
    }
    .section6 h3 {
        margin-bottom: 30px;
    }
    .partners-list .item {
        min-width: 33.333%;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }
    .partners-list .item .image-box {
        height: 80px;
    }
    /** Footer Start **/
    .footer {
        padding: 40px 0;
    }
    .footer-form h3 {
        margin-bottom: 40px;
    }
    .copy-right-text {
        margin-top: 60px;
    }
}

@media screen and (max-width:679px) {
    .quote {
        background: url(../images/quote.png) no-repeat right;
        width: 100%;
        height: 60px;
        margin-left: 0px;
        background-size: contain;
    }
    .address h1 {
        font-size: 28px;
    }
    .down-arrow2 {
        position: relative;
        left: 0;
        right: 0;
        margin-top: -20px;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        vertical-align: bottom;
    }
}

@media screen and (max-width:538px) {
    .address h1 {
        font-size: 25px;
    }
    h3 {
        font-size: 16px;
    }
    .section1 .inner-container h3 {
        margin-bottom: 40px;
        line-height: 32px;
        font-size: 16px;
    }
    .down-arrow2 {
        position: relative;
        left: 0;
        right: 0;
        margin-top: -25px;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        vertical-align: bottom;
    }
}


/*View :: 320px ::*/

@media screen and (max-width:479px) {
    h3 {
        font-size: 14px;
    }
    .section2 {
        min-height: 750px;
    }
    .address h1 {
        font-size: 22px;
    }
    .section1 .inner-container h3 {
        margin-bottom: 40px;
        line-height: 26px;
        font-size: 14px;
    }
    .section1 img {
        margin-bottom: 50px;
        width: 45%;
    }
    .banner-section .image-box {
        width: 100%;
        height: 95vh;
        position: relative;
    }
    .section1 {
        padding: 80px 0;
    }
    .quote {
        background: url(../images/quote.png) no-repeat right;
        width: 100%;
        height: 50px;
        margin-left: 20px;
        background-size: contain;
    }
    .copyright {
        margin-top: 85px;
        color: #beb9d5;
        font-size: 16px;
    }
    .site-logo {
        width: 200px;
        left: 0%;
        top: 60%
    }
    .site-logo1 {
        width: 200px;
        right: 0%;
        top: 30%
    }
    .section2 h2 {
        font-size: 28px;
    }
    .section2 h2:before {
        width: 35px;
        height: 30px;
    }
    .section2 h2:after {
        right: -20px;
        top: -20px;
        width: 35px;
        height: 30px;
    }
    .section2 strong.name {
        font-size: 14px;
        margin-top: 15px;
    }
    .testimonials-item {
        padding: 0 15px;
    }
    .box-list .image-box {
        height: 250px;
    }
    .full-h-slider .slick-arrow.slick-prev {
        left: 15px;
    }
    .full-h-slider .slick-arrow.slick-next {
        right: 15px;
    }
    .accordion .btn-close {
        right: 15px;
        top: 15px;
    }
    .box-list li {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }
    .section6 {
        padding: 60px 0 30px 0;
    }
    .section6 h3 {
        margin-bottom: 20px;
    }
    .partners-list .item {
        min-width: 50%;
        max-width: 50%;
        flex-basis: 50%;
    }
    .partners-list .item .image-box {
        height: 60px;
    }
    /** Footer Start **/
    .footer {
        padding: 30px 0;
    }
    .footer-form h3 {
        margin-bottom: 30px;
    }
    .copy-right-text {
        margin-top: 40px;
    }
}

@media screen and (max-width:376px) {
    .site-logo {
        width: 150px;
        left: 0%;
        top: 60%
    }
    .site-logo1 {
        width: 150px;
        right: 0%;
        top: 30%
    }
    .section1 .inner-container h3 {
        margin-bottom: 40px;
        line-height: 24px;
        font-size: 12px;
    }
    h3 {
        font-size: 12px;
    }
    .address h1 {
        font-size: 18px;
    }
    .copyright {
        margin-top: 85px;
        color: #beb9d5;
        font-size: 12px;
    }
    .address {
        margin-top: 90px;
        font-size: 36px;
    }
}