@charset "UTF-8";.animated {
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

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

@-webkit-keyframes bounce {
    0%,100%,20%,53%,80% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        -webkit-transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        -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%,100%,20%,53%,80% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        -webkit-transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        -webkit-transform: translate3d(0,-30px,0);
        -ms-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        transition-timing-function: cubic-bezier(0.755,.050,.855,.060);
        -webkit-transform: translate3d(0,-15px,0);
        -ms-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0)
    }

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

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

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

    25%,75% {
        opacity: 0
    }
}

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

    25%,75% {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

    30% {
        -webkit-transform: scale3d(1.25,.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)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
    0%,100%,20%,40%,60%,80% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.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)
    }

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

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

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

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

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        -ms-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

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

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        -ms-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

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

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

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

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

@keyframes bounceInDown {
    0%,100%,60%,75%,90% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

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

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

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

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

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

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

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

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

@keyframes bounceInLeft {
    0%,100%,60%,75%,90% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

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

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

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

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

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

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

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

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

@keyframes bounceInRight {
    0%,100%,60%,75%,90% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

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

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

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

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

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

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

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

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

@keyframes bounceInUp {
    0%,100%,60%,75%,90% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

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

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

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

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

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

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.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)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

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

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

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

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

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

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

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

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

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
    0% {
        opacity: 1
    }

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

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

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

    50% {
        opacity: 1
    }
}

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

    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(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.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(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -ms-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.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(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.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(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -ms-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.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(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.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(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -ms-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.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(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.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(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -ms-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.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)
    }

    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    100% {
        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(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.55,.055,.675,.19)
    }

    100% {
        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(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

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

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -ms-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.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)
    }

    100% {
        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);
        -ms-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        -ms-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        -ms-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)
    }

    100% {
        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);
        -ms-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        -ms-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        -ms-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(0.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(0.55,.055,.675,.19)
    }

    100% {
        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(0.175,.885,.32,1);
        animation-timing-function: cubic-bezier(0.175,.885,.32,1)
    }
}

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

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

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

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

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute!important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47,0,.74,.71)
}

.fancybox-is-open .fancybox-bg {
    opacity: 1;
    transition-timing-function: cubic-bezier(.22,.61,.36,1)
}

.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease,visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s,visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform,opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image::before {
    display: none
}

.fancybox-slide--html {
    padding: 8px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    position: relative;
    text-align: left;
    vertical-align: middle;
    box-shadow: 0 10px 20px rgba(0,0,0,.07)
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5,0,.14,1);
    color: #fff;
    -webkit-backface-visibility: hidden;
    background: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform,opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,.fancybox-spaceball {
    background: 0 0;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,.fancybox-video {
    background: 0 0;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30,30,30,.6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 30px
}

.fancybox-button,.fancybox-button:link,.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: 0
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: 0
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: none;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-button--fsexit svg:nth-child(1),.fancybox-button--pause svg:nth-child(1) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    transition: all .3s;
    background: #fff;
    border: 0;
    border-radius: 50%;
    color: #ff0013;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    position: absolute;
    right: -18px;
    top: -18px;
    z-index: 401
}

.fancybox-close-small:hover {
    transform: rotate(90deg);
    opacity: 1;
    color: #000
}

.fancybox-button svg {
    display: block
}

.fancybox-slide--image .fancybox-close-small {
    top: -2.5rem;
    right: 0
}

.fancybox-close-small:hover {
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    padding: 11px
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right)
}

.fancybox-caption {
    background: linear-gradient(to top,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,rgba(0,0,0,0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))
    }
}

.fancybox-caption--separate {
    margin-top: -50px
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all
}

.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: 0 0;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0,0,.25,1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%,0,0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%,0,0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0,0,0)
}

.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19,1,.22,1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5,1.5,1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5,.5,.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1,1,1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0,0,0) translate3d(-100%,0,0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0,0,0) translate3d(100%,0,0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1,1,1) translate3d(0,0,0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%,0,0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%,0,0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0,0,0) scale(1)
}

@media all and (max-height: 576px) {
    .fancybox-slide--image {
        padding:6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left:max(12px,env(safe-area-inset-left));
            padding-right: max(12px,env(safe-area-inset-right))
        }
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: 0;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,.3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0,0,0,.1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1
}

@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width:110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

.fancybox-fx-slide-in-out.fancybox-slide--previous {
    transform: translateY(-100%)
}

.fancybox-fx-slide-in-out.fancybox-slide--next {
    transform: translateY(100%)
}

.fancybox-fx-slide-in-out.fancybox-slide--current {
    transform: translateY(0)
}

.scroll-wrapper {
    overflow: hidden!important;
    padding: 0!important;
    position: relative
}

.scroll-wrapper>.scroll-content {
    border: none!important;
    box-sizing: content-box!important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none!important;
    overflow: scroll!important;
    padding: 0 10px 0 0;
    position: relative!important;
    top: 0;
    width: auto!important
}

.scroll-wrapper>.scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scroll-element {
    display: none
}

.scroll-element,.scroll-element div {
    box-sizing: content-box
}

.scroll-element.scroll-x.scroll-scrollx_visible,.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block
}

.scroll-element .scroll-arrow,.scroll-element .scroll-bar {
    cursor: default
}

.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999
}

.scroll-textarea>.scroll-content {
    overflow: hidden!important
}

.scroll-textarea>.scroll-content>textarea {
    border: none!important;
    box-sizing: border-box;
    height: 100%!important;
    margin: 0;
    max-height: none!important;
    max-width: none!important;
    overflow: scroll!important;
    outline: 0;
    padding: 2px;
    position: relative!important;
    top: 0;
    width: 100%!important
}

.scroll-textarea>.scroll-content>textarea::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scrollbar-inner>.scroll-element,.scrollbar-inner>.scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-inner>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-inner>.scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%
}

.scrollbar-inner>.scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px
}

.scrollbar-inner>.scroll-element .scroll-element_outer {
    overflow: hidden
}

.scrollbar-inner>.scroll-element .scroll-bar,.scrollbar-inner>.scroll-element .scroll-element_outer,.scrollbar-inner>.scroll-element .scroll-element_track {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px
}

.scrollbar-inner>.scroll-element .scroll-bar,.scrollbar-inner>.scroll-element .scroll-element_track {
    opacity: .4
}

.scrollbar-inner>.scroll-element .scroll-element_track {
    background-color: #e0e0e0
}

.scrollbar-inner>.scroll-element .scroll-bar {
    background-color: #c2c2c2
}

.scrollbar-inner>.scroll-element:hover .scroll-bar {
    background-color: #919191
}

.scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191
}

.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px
}

.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px
}

.scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px
}

.scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px
}

.scrollbar-outer>.scroll-element,.scrollbar-outer>.scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-outer>.scroll-element {
    background-color: #fff
}

.scrollbar-outer>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-outer>.scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    width: 100%
}

.scrollbar-outer>.scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 12px
}

.scrollbar-outer>.scroll-element.scroll-x .scroll-element_outer {
    height: 8px;
    top: 2px
}

.scrollbar-outer>.scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    width: 8px
}

.scrollbar-outer>.scroll-element .scroll-element_outer {
    overflow: hidden
}

.scrollbar-outer>.scroll-element .scroll-element_track {
    background-color: #eee
}

.scrollbar-outer>.scroll-element .scroll-bar,.scrollbar-outer>.scroll-element .scroll-element_outer,.scrollbar-outer>.scroll-element .scroll-element_track {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px
}

.scrollbar-outer>.scroll-element .scroll-bar {
    background-color: #d9d9d9
}

.scrollbar-outer>.scroll-element .scroll-bar:hover {
    background-color: #c2c2c2
}

.scrollbar-outer>.scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191
}

.scrollbar-outer>.scroll-content.scroll-scrolly_visible {
    left: -12px;
    margin-left: 12px
}

.scrollbar-outer>.scroll-content.scroll-scrollx_visible {
    top: -12px;
    margin-top: 12px
}

.scrollbar-outer>.scroll-element.scroll-x .scroll-bar {
    min-width: 10px
}

.scrollbar-outer>.scroll-element.scroll-y .scroll-bar {
    min-height: 10px
}

.scrollbar-outer>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -14px
}

.scrollbar-outer>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -14px
}

.scrollbar-outer>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -14px
}

.scrollbar-outer>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -14px
}

.scrollbar-macosx>.scroll-element,.scrollbar-macosx>.scroll-element div {
    background: 0 0;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-macosx>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-macosx>.scroll-element .scroll-element_track {
    display: none
}

.scrollbar-macosx>.scroll-element .scroll-bar {
    background-color: #6c6e71;
    display: block;
    opacity: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -ms-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.scrollbar-macosx:hover>.scroll-element .scroll-bar,.scrollbar-macosx>.scroll-element.scroll-draggable .scroll-bar {
    opacity: .7
}

.scrollbar-macosx>.scroll-element.scroll-x {
    bottom: 0;
    height: 0;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%
}

.scrollbar-macosx>.scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 0
}

.scrollbar-macosx>.scroll-element.scroll-x .scroll-bar {
    height: 7px;
    min-width: 10px;
    top: -9px
}

.scrollbar-macosx>.scroll-element.scroll-y .scroll-bar {
    left: -9px;
    min-height: 10px;
    width: 7px
}

.scrollbar-macosx>.scroll-element.scroll-x .scroll-element_outer {
    left: 2px
}

.scrollbar-macosx>.scroll-element.scroll-x .scroll-element_size {
    left: -4px
}

.scrollbar-macosx>.scroll-element.scroll-y .scroll-element_outer {
    top: 2px
}

.scrollbar-macosx>.scroll-element.scroll-y .scroll-element_size {
    top: -4px
}

.scrollbar-macosx>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px
}

.scrollbar-macosx>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px
}

.scrollbar-light>.scroll-element,.scrollbar-light>.scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-light>.scroll-element {
    background-color: #fff
}

.scrollbar-light>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-light>.scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.scrollbar-light>.scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left,#dbdbdb 0,#e8e8e8 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0,#dbdbdb),color-stop(100%,#e8e8e8));
    background: -webkit-linear-gradient(left,#dbdbdb 0,#e8e8e8 100%);
    background: -o-linear-gradient(left,#dbdbdb 0,#e8e8e8 100%);
    background: -ms-linear-gradient(left,#dbdbdb 0,#e8e8e8 100%);
    background: linear-gradient(to right,#dbdbdb 0,#e8e8e8 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.scrollbar-light>.scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%
}

.scrollbar-light>.scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 17px
}

.scrollbar-light>.scroll-element .scroll-bar {
    background: #fefefe;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left,#fefefe 0,#f5f5f5 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0,#fefefe),color-stop(100%,#f5f5f5));
    background: -webkit-linear-gradient(left,#fefefe 0,#f5f5f5 100%);
    background: -o-linear-gradient(left,#fefefe 0,#f5f5f5 100%);
    background: -ms-linear-gradient(left,#fefefe 0,#f5f5f5 100%);
    background: linear-gradient(to right,#fefefe 0,#f5f5f5 100%);
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.scrollbar-light>.scroll-content.scroll-scrolly_visible {
    left: -17px;
    margin-left: 17px
}

.scrollbar-light>.scroll-content.scroll-scrollx_visible {
    top: -17px;
    margin-top: 17px
}

.scrollbar-light>.scroll-element.scroll-x .scroll-bar {
    height: 10px;
    min-width: 10px;
    top: 0
}

.scrollbar-light>.scroll-element.scroll-y .scroll-bar {
    left: 0;
    min-height: 10px;
    width: 10px
}

.scrollbar-light>.scroll-element.scroll-x .scroll-element_outer {
    height: 12px;
    left: 2px;
    top: 2px
}

.scrollbar-light>.scroll-element.scroll-x .scroll-element_size {
    left: -4px
}

.scrollbar-light>.scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    top: 2px;
    width: 12px
}

.scrollbar-light>.scroll-element.scroll-y .scroll-element_size {
    top: -4px
}

.scrollbar-light>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px
}

.scrollbar-light>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px
}

.scrollbar-light>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px
}

.scrollbar-light>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px
}

.scrollbar-rail>.scroll-element,.scrollbar-rail>.scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-rail>.scroll-element {
    background-color: #fff
}

.scrollbar-rail>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-rail>.scroll-element .scroll-element_size {
    background-color: #999;
    background-color: rgba(0,0,0,.3)
}

.scrollbar-rail>.scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #666;
    background-color: rgba(0,0,0,.5)
}

.scrollbar-rail>.scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%
}

.scrollbar-rail>.scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 12px
}

.scrollbar-rail>.scroll-element .scroll-bar {
    background-color: #d0b9a0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0,0,0,.5)
}

.scrollbar-rail>.scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: 1px 1px 3px rgba(0,0,0,.6)
}

.scrollbar-rail>.scroll-content.scroll-scrolly_visible {
    left: -17px;
    margin-left: 17px
}

.scrollbar-rail>.scroll-content.scroll-scrollx_visible {
    margin-top: 17px;
    top: -17px
}

.scrollbar-rail>.scroll-element.scroll-x .scroll-bar {
    height: 10px;
    min-width: 10px;
    top: 1px
}

.scrollbar-rail>.scroll-element.scroll-y .scroll-bar {
    left: 1px;
    min-height: 10px;
    width: 10px
}

.scrollbar-rail>.scroll-element.scroll-x .scroll-element_outer {
    height: 15px;
    left: 5px
}

.scrollbar-rail>.scroll-element.scroll-x .scroll-element_size {
    height: 2px;
    left: -10px;
    top: 5px
}

.scrollbar-rail>.scroll-element.scroll-y .scroll-element_outer {
    top: 5px;
    width: 15px
}

.scrollbar-rail>.scroll-element.scroll-y .scroll-element_size {
    left: 5px;
    top: -10px;
    width: 2px
}

.scrollbar-rail>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -25px
}

.scrollbar-rail>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -25px
}

.scrollbar-rail>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -25px
}

.scrollbar-rail>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -25px
}

.scrollbar-dynamic>.scroll-element,.scrollbar-dynamic>.scroll-element div {
    background: 0 0;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-dynamic>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-dynamic>.scroll-element.scroll-x {
    bottom: 2px;
    height: 7px;
    left: 0;
    min-width: 100%;
    width: 100%
}

.scrollbar-dynamic>.scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 7px
}

.scrollbar-dynamic>.scroll-element .scroll-element_outer {
    opacity: .3;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px
}

.scrollbar-dynamic>.scroll-element .scroll-element_size {
    background-color: #ccc;
    opacity: 0;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
    transition: opacity .2s
}

.scrollbar-dynamic>.scroll-element .scroll-bar {
    background-color: #6c6e71;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px
}

.scrollbar-dynamic>.scroll-element.scroll-x .scroll-bar {
    bottom: 0;
    height: 7px;
    min-width: 24px;
    top: auto
}

.scrollbar-dynamic>.scroll-element.scroll-y .scroll-bar {
    left: auto;
    min-height: 24px;
    right: 0;
    width: 7px
}

.scrollbar-dynamic>.scroll-element.scroll-x .scroll-element_outer {
    bottom: 0;
    top: auto;
    left: 2px;
    -webkit-transition: height .2s;
    -moz-transition: height .2s;
    -o-transition: height .2s;
    -ms-transition: height .2s;
    transition: height .2s
}

.scrollbar-dynamic>.scroll-element.scroll-y .scroll-element_outer {
    left: auto;
    right: 0;
    top: 2px;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    -o-transition: width .2s;
    -ms-transition: width .2s;
    transition: width .2s
}

.scrollbar-dynamic>.scroll-element.scroll-x .scroll-element_size {
    left: -4px
}

.scrollbar-dynamic>.scroll-element.scroll-y .scroll-element_size {
    top: -4px
}

.scrollbar-dynamic>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px
}

.scrollbar-dynamic>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px
}

.scrollbar-dynamic>.scroll-element.scroll-draggable .scroll-element_outer,.scrollbar-dynamic>.scroll-element:hover .scroll-element_outer {
    overflow: hidden;
    opacity: .7
}

.scrollbar-dynamic>.scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size,.scrollbar-dynamic>.scroll-element:hover .scroll-element_outer .scroll-element_size {
    opacity: 1
}

.scrollbar-dynamic>.scroll-element.scroll-draggable .scroll-element_outer .scroll-bar,.scrollbar-dynamic>.scroll-element:hover .scroll-element_outer .scroll-bar {
    height: 100%;
    width: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px
}

.scrollbar-dynamic>.scroll-element.scroll-x.scroll-draggable .scroll-element_outer,.scrollbar-dynamic>.scroll-element.scroll-x:hover .scroll-element_outer {
    height: 20px;
    min-height: 7px
}

.scrollbar-dynamic>.scroll-element.scroll-y.scroll-draggable .scroll-element_outer,.scrollbar-dynamic>.scroll-element.scroll-y:hover .scroll-element_outer {
    min-width: 7px;
    width: 20px
}

.scrollbar-chrome>.scroll-element,.scrollbar-chrome>.scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-chrome>.scroll-element {
    background-color: #fff
}

.scrollbar-chrome>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.scrollbar-chrome>.scroll-element .scroll-element_track {
    background: #f1f1f1;
    border: 1px solid #dbdbdb
}

.scrollbar-chrome>.scroll-element.scroll-x {
    bottom: 0;
    height: 16px;
    left: 0;
    min-width: 100%;
    width: 100%
}

.scrollbar-chrome>.scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 16px
}

.scrollbar-chrome>.scroll-element .scroll-bar {
    background-color: #d9d9d9;
    border: 1px solid #bdbdbd;
    cursor: default;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.scrollbar-chrome>.scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    border-color: #a9a9a9
}

.scrollbar-chrome>.scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    border-color: #7e7e7e
}

.scrollbar-chrome>.scroll-content.scroll-scrolly_visible {
    left: -16px;
    margin-left: 16px
}

.scrollbar-chrome>.scroll-content.scroll-scrollx_visible {
    top: -16px;
    margin-top: 16px
}

.scrollbar-chrome>.scroll-element.scroll-x .scroll-bar {
    height: 8px;
    min-width: 10px;
    top: 3px
}

.scrollbar-chrome>.scroll-element.scroll-y .scroll-bar {
    left: 3px;
    min-height: 10px;
    width: 8px
}

.scrollbar-chrome>.scroll-element.scroll-x .scroll-element_outer {
    border-left: 1px solid #dbdbdb
}

.scrollbar-chrome>.scroll-element.scroll-x .scroll-element_track {
    height: 14px;
    left: -3px
}

.scrollbar-chrome>.scroll-element.scroll-x .scroll-element_size {
    height: 14px;
    left: -4px
}

.scrollbar-chrome>.scroll-element.scroll-y .scroll-element_outer {
    border-top: 1px solid #dbdbdb
}

.scrollbar-chrome>.scroll-element.scroll-y .scroll-element_track {
    top: -3px;
    width: 14px
}

.scrollbar-chrome>.scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    width: 14px
}

.scrollbar-chrome>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px
}

.scrollbar-chrome>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px
}

.scrollbar-chrome>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px
}

.scrollbar-chrome>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px
}

.scroll-wrapper>.scroll-element,.scroll-wrapper>.scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scroll-wrapper>.scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 5px;
    border-radius: 24px
}

.scroll-wrapper>.scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%
}

.scroll-wrapper>.scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 5px
}

.scroll-wrapper>.scroll-element .scroll-element_outer {
    overflow: hidden
}

.scroll-wrapper>.scroll-element .scroll-bar,.scroll-wrapper>.scroll-element .scroll-element_outer,.scroll-wrapper>.scroll-element .scroll-element_track {
    border-radius: 24px
}

.scroll-wrapper>.scroll-element .scroll-element_track {
    border-radius: 24px;
    width: 5px;
    left: 0
}

.scroll-wrapper>.scroll-element .scroll-bar {
    background-color: #cdd2dc
}

.scroll-wrapper>.scroll-element:hover .scroll-bar {
    background-color: #cdd2dc
}

.scroll-wrapper>.scroll-element.scroll-draggable .scroll-bar {
    background-color: #cdd2dc
}

.scroll-wrapper>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px
}

.scroll-wrapper>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px
}

.scroll-wrapper>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px
}

.scroll-wrapper>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px
}

.noUi-target,.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-target {
    position: relative
}

.noUi-base,.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-connects {
    overflow: hidden;
    z-index: 0
}

.noUi-connect,.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto
}

.noUi-vertical .noUi-origin {
    top: -100%;
    width: 0
}

.noUi-horizontal .noUi-origin {
    height: 0
}

.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute
}

.noUi-touch-area {
    height: 100%;
    width: 100%
}

.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin {
    -webkit-transition: transform .3s;
    transition: transform .3s
}

.noUi-state-drag * {
    cursor: inherit!important
}

.noUi-horizontal {
    height: 3px
}

.noUi-horizontal .noUi-handle {
    width: 15px;
    height: 15px;
    right: -7.5px;
    top: -6px
}

.noUi-vertical {
    width: 18px
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    bottom: -17px
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto
}

.noUi-target {
    background: #363636;
    border-radius: 0
}

.noUi-connects {
    border-radius: 0
}

.noUi-connect {
    background: #ff0013
}

.noUi-draggable {
    cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize
}

.noUi-handle {
    border: 3px solid #31364f;
    border-radius: 50%;
    background: #f6f7ff;
    cursor: default
}

.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px
}

.noUi-vertical .noUi-handle:after {
    top: 17px
}

[disabled] .noUi-connect {
    background: #b8b8b8
}

[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target {
    cursor: not-allowed
}

.noUi-pips,.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-pips {
    position: absolute;
    color: #999
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px
}

.noUi-marker {
    position: absolute;
    background: #ccc
}

.noUi-marker-sub {
    background: #aaa
}

.noUi-marker-large {
    background: #aaa
}

.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%
}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%,50%);
    transform: translate(-50%,50%)
}

.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%,50%);
    transform: translate(50%,50%)
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px
}

.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%
}

.noUi-value-vertical {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding-left: 25px
}

.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0,50%);
    transform: translate(0,50%)
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    left: 50%;
    bottom: 120%
}

.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    top: 50%;
    right: 120%
}

.noUi-horizontal .noUi-origin>.noUi-tooltip {
    -webkit-transform: translate(50%,0);
    transform: translate(50%,0);
    left: auto;
    bottom: 10px
}

.noUi-vertical .noUi-origin>.noUi-tooltip {
    -webkit-transform: translate(0,-18px);
    transform: translate(0,-18px);
    top: auto;
    right: 28px
}

@font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-android .swiper-slide,.swiper-wrapper {
    transform: translate3d(0,0,0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0,0,0,.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start:var(--swiper-centered-offset-before)}

.swiper-centered.swiper-horizontal>.swiper-wrapper: :before {
    height:100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start:var(--swiper-centered-offset-before)}

.swiper-centered.swiper-vertical>.swiper-wrapper: :before {
    width:100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0013;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px
}

.swiper-button-next .icon-right,.swiper-button-prev .icon-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    border-radius: 50%;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: #ff0013;
    color: #fff
}

.swiper-button-prev .icon-right {
    transform: rotate(180deg)
}

.swiper-button-next:hover,.swiper-button-prev:hover {
    color: #38ade8
}

.swiper-button-next:hover .icon-right,.swiper-button-prev:hover .icon-right {
    background: #38ade8
}

.swiper-button-next:active,.swiper-button-prev:active {
    color: #0c89c8
}

.swiper-button-next:active .icon-right,.swiper-button-prev:active .icon-right {
    background: #0c89c8
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    color: #d7d7d7;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-disabled .icon-right,.swiper-button-prev.swiper-button-disabled .icon-right {
    background: #d7d7d7
}

.swiper-button-next:after,.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev,.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none!important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0,-50%,0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform,.2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}

.swiper-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform,opacity,height
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}

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

.h {
    font-family: hicons!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 3em
}

.h-ul {
    margin-left: 2em;
    padding-left: 0;
    list-style: none
}

.h-ul>li {
    position: relative
}

.h-ul .bx {
    font-size: inherit;
    line-height: inherit;
    position: absolute;
    left: -2em;
    width: 2em;
    text-align: center
}

.h-beer:before {
    content: "\ea2c"
}

.h-bread:before {
    content: "\ea32"
}

.h-burger:before {
    content: "\ea8b"
}

.h-cake:before {
    content: "\ea8c"
}

.h-candy:before {
    content: "\ea8d"
}

.h-cookie:before {
    content: "\ea8e"
}

.h-donut:before {
    content: "\ea8f"
}

.h-mushroom:before {
    content: "\ea90"
}

.h-pizza:before {
    content: "\ea91"
}

.h-tea-bag:before {
    content: "\ea92"
}

.h-maximise-frame:before {
    content: "\e9f2"
}

.h-minimise-frame:before {
    content: "\e9fe"
}

.h-not-equal-to:before {
    content: "\e928"
}

.h-refresh-acw:before {
    content: "\e993"
}

.h-skip-next:before {
    content: "\ea75"
}

.h-apple:before {
    content: "\e900"
}

.h-banana:before {
    content: "\e901"
}

.h-discount-dollar:before {
    content: "\e902"
}

.h-discount-empty:before {
    content: "\e903"
}

.h-discount-euro:before {
    content: "\e904"
}

.h-discount-percentage:before {
    content: "\e905"
}

.h-discount-pound:before {
    content: "\e906"
}

.h-discount-yuan:before {
    content: "\e907"
}

.h-leaf:before {
    content: "\e908"
}

.h-link-2:before {
    content: "\e909"
}

.h-link:before {
    content: "\e90a"
}

.h-login:before {
    content: "\e90b"
}

.h-logout:before {
    content: "\e90c"
}

.h-orange:before {
    content: "\e90d"
}

.h-paper-bag:before {
    content: "\e90e"
}

.h-piano:before {
    content: "\e90f"
}

.h-user-add:before {
    content: "\e910"
}

.h-user-checked:before {
    content: "\e911"
}

.h-user-in:before {
    content: "\e912"
}

.h-user-out:before {
    content: "\e913"
}

.h-user-remove:before {
    content: "\e914"
}

.h-user-x:before {
    content: "\e915"
}

.h-user:before {
    content: "\e916"
}

.h-users:before {
    content: "\e917"
}

.h-triangle:before {
    content: "\e91d"
}

.h-alert-triangle:before {
    content: "\e918"
}

.h-face-sad:before {
    content: "\e919"
}

.h-female:before {
    content: "\e91a"
}

.h-intersex:before {
    content: "\e91b"
}

.h-male:before {
    content: "\e91c"
}

.h-transgender-2:before {
    content: "\e91e"
}

.h-transgender:before {
    content: "\e91f"
}

.h-dribbble:before {
    content: "\e920"
}

.h-alert-circle:before {
    content: "\e921"
}

.h-at:before {
    content: "\e922"
}

.h-circle:before {
    content: "\e923"
}

.h-help-circle:before {
    content: "\e924"
}

.h-hicon:before {
    content: "\e925"
}

.h-info:before {
    content: "\e926"
}

.h-pie-chart:before {
    content: "\e927"
}

.h-refresh-cw:before {
    content: "\e929"
}

.h-rotate-acw:before {
    content: "\e92a"
}

.h-rotate-cw:before {
    content: "\e92b"
}

.h-spotify:before {
    content: "\e92c"
}

.h-square-2:before {
    content: "\e92d"
}

.h-square:before {
    content: "\e92e"
}

.h-target:before {
    content: "\e92f"
}

.h-virus:before {
    content: "\e930"
}

.h-circle1:before {
    content: "\e931"
}

.h-help-circle1:before {
    content: "\e932"
}

.h-colour-picker:before {
    content: "\e967"
}

.h-high-performance:before {
    content: "\e9b1"
}

.h-low-performance:before {
    content: "\e9c8"
}

.h-medium-performance:before {
    content: "\e9cd"
}

.h-arrow-down-right-square:before {
    content: "\e933"
}

.h-airplay:before {
    content: "\e934"
}

.h-alert-square:before {
    content: "\e935"
}

.h-align-center:before {
    content: "\e936"
}

.h-align-justify:before {
    content: "\e937"
}

.h-align-left:before {
    content: "\e938"
}

.h-align-right:before {
    content: "\e939"
}

.h-anchor:before {
    content: "\e93a"
}

.h-archive:before {
    content: "\e93b"
}

.h-arrow-down-1:before {
    content: "\e93c"
}

.h-arrow-down-cricle:before {
    content: "\e93d"
}

.h-arrow-down-left-circle:before {
    content: "\e93e"
}

.h-arrow-down-left-square:before {
    content: "\e93f"
}

.h-arrow-down-left:before {
    content: "\e940"
}

.h-arrow-down-right-circle:before {
    content: "\e941"
}

.h-arrow-down-right:before {
    content: "\e942"
}

.h-arrow-down-square:before {
    content: "\e943"
}

.h-arrow-down:before {
    content: "\e944"
}

.h-arrow-left-cricle:before {
    content: "\e945"
}

.h-arrow-left-square:before {
    content: "\e946"
}

.h-arrow-right-cricle:before {
    content: "\e947"
}

.h-arrow-right-square:before {
    content: "\e948"
}

.h-arrow-right:before {
    content: "\e949"
}

.h-arrow-up-circle:before {
    content: "\e94a"
}

.h-arrow-up-left-cricle:before {
    content: "\e94b"
}

.h-arrow-up-left-square:before {
    content: "\e94c"
}

.h-arrow-up-left:before {
    content: "\e94d"
}

.h-arrow-up-right-circle:before {
    content: "\e94e"
}

.h-arrow-up-right-square:before {
    content: "\e94f"
}

.h-arrow-up-right:before {
    content: "\e950"
}

.h-arrow-up-square:before {
    content: "\e951"
}

.h-arrow-up:before {
    content: "\e952"
}

.h-award:before {
    content: "\e953"
}

.h-bag-2:before {
    content: "\e954"
}

.h-bag-3:before {
    content: "\e955"
}

.h-bag:before {
    content: "\e956"
}

.h-bar-chart-1:before {
    content: "\e957"
}

.h-bar-chart-2:before {
    content: "\e958"
}

.h-bar-chart-down:before {
    content: "\e959"
}

.h-bar-chart-up:before {
    content: "\e95a"
}

.h-battery-charging:before {
    content: "\e95b"
}

.h-battery-ending:before {
    content: "\e95c"
}

.h-battery-half:before {
    content: "\e95d"
}

.h-battery-off:before {
    content: "\e95e"
}

.h-battery:before {
    content: "\e95f"
}

.h-bell-off:before {
    content: "\e960"
}

.h-bell:before {
    content: "\e961"
}

.h-bitcoin-sign:before {
    content: "\e962"
}

.h-bluetooth:before {
    content: "\e963"
}

.h-bold:before {
    content: "\e964"
}

.h-book-open:before {
    content: "\e965"
}

.h-book:before {
    content: "\e966"
}

.h-bookmark:before {
    content: "\e968"
}

.h-bottombar:before {
    content: "\e969"
}

.h-box:before {
    content: "\e96a"
}

.h-briefcase:before {
    content: "\e96b"
}

.h-calendar-2:before {
    content: "\e96c"
}

.h-calendar-10:before {
    content: "\e96d"
}

.h-calendar-17:before {
    content: "\e96e"
}

.h-calendar-meeting:before {
    content: "\e96f"
}

.h-calendar-monday:before {
    content: "\e970"
}

.h-calendar:before {
    content: "\e971"
}

.h-camera-off:before {
    content: "\e972"
}

.h-camera:before {
    content: "\e973"
}

.h-cast:before {
    content: "\e974"
}

.h-check-circle-1:before {
    content: "\e975"
}

.h-check-circle-2:before {
    content: "\e976"
}

.h-check-square-1:before {
    content: "\e977"
}

.h-check-square-2:before {
    content: "\e978"
}

.h-check:before {
    content: "\e979"
}

.h-chevron-bottom:before {
    content: "\e97a"
}

.h-chevron-left:before {
    content: "\e97b"
}

.h-chevron-right:before {
    content: "\e97c"
}

.h-chevron-up:before {
    content: "\e97d"
}

.h-chevrons-down:before {
    content: "\e97e"
}

.h-chevrons-left:before {
    content: "\e97f"
}

.h-chevrons-right:before {
    content: "\e980"
}

.h-chevrons-up:before {
    content: "\e981"
}

.h-clipboard:before {
    content: "\e982"
}

.h-clock-1:before {
    content: "\e983"
}

.h-clock-2:before {
    content: "\e984"
}

.h-clock-3:before {
    content: "\e985"
}

.h-clock-4:before {
    content: "\e986"
}

.h-clock-5:before {
    content: "\e987"
}

.h-clock-6:before {
    content: "\e988"
}

.h-clock-7:before {
    content: "\e989"
}

.h-clock-8:before {
    content: "\e98a"
}

.h-cloud-off:before {
    content: "\e98b"
}

.h-cloud-rain-heavy:before {
    content: "\e98c"
}

.h-cloud-rain-light:before {
    content: "\e98d"
}

.h-cloud-storm:before {
    content: "\e98e"
}

.h-cloud:before {
    content: "\e98f"
}

.h-cloudy-moon:before {
    content: "\e990"
}

.h-cloudy:before {
    content: "\e991"
}

.h-code-1:before {
    content: "\e992"
}

.h-codepen:before {
    content: "\e994"
}

.h-coffee-expresso:before {
    content: "\e995"
}

.h-coffee:before {
    content: "\e996"
}

.h-columns:before {
    content: "\e997"
}

.h-command:before {
    content: "\e998"
}

.h-compass:before {
    content: "\e999"
}

.h-copy:before {
    content: "\e99a"
}

.h-corner-down-left:before {
    content: "\e99b"
}

.h-corner-down-right:before {
    content: "\e99c"
}

.h-corner-left-down:before {
    content: "\e99d"
}

.h-corner-left-up:before {
    content: "\e99e"
}

.h-corner-right-down:before {
    content: "\e99f"
}

.h-corner-right-up:before {
    content: "\e9a0"
}

.h-corner-up-left:before {
    content: "\e9a1"
}

.h-corner-up-right:before {
    content: "\e9a2"
}

.h-cpu:before {
    content: "\e9a3"
}

.h-credit-card:before {
    content: "\e9a4"
}

.h-crop:before {
    content: "\e9a5"
}

.h-cup:before {
    content: "\e9a6"
}

.h-database:before {
    content: "\e9a7"
}

.h-delete:before {
    content: "\e9a8"
}

.h-desktop:before {
    content: "\e9a9"
}

.h-disco:before {
    content: "\e9aa"
}

.h-dollar-sign:before {
    content: "\e9ab"
}

.h-download-cloud:before {
    content: "\e9ac"
}

.h-download:before {
    content: "\e9ad"
}

.h-drive:before {
    content: "\e9ae"
}

.h-drop:before {
    content: "\e9af"
}

.h-edit-2:before {
    content: "\e9b0"
}

.h-edit-3:before {
    content: "\e9b2"
}

.h-edit:before {
    content: "\e9b3"
}

.h-email:before {
    content: "\e9b4"
}

.h-euro-sign:before {
    content: "\e9b5"
}

.h-external-link:before {
    content: "\e9b6"
}

.h-eye-off:before {
    content: "\e9b7"
}

.h-eye:before {
    content: "\e9b8"
}

.h-face-mask:before {
    content: "\e9b9"
}

.h-face-smile:before {
    content: "\e9ba"
}

.h-face:before {
    content: "\e9bb"
}

.h-facebook:before {
    content: "\e9bc"
}

.h-fast-forward-x3:before {
    content: "\e9bd"
}

.h-fast-forward:before {
    content: "\e9be"
}

.h-figma:before {
    content: "\e9bf"
}

.h-file-add:before {
    content: "\e9c0"
}

.h-file-damaged:before {
    content: "\e9c1"
}

.h-file-doc:before {
    content: "\e9c2"
}

.h-file-presentation:before {
    content: "\e9c3"
}

.h-file-remove:before {
    content: "\e9c4"
}

.h-file-spreadsheet:before {
    content: "\e9c5"
}

.h-file-text:before {
    content: "\e9c6"
}

.h-file:before {
    content: "\e9c7"
}

.h-filter:before {
    content: "\e9c9"
}

.h-flag:before {
    content: "\e9ca"
}

.h-fn:before {
    content: "\e9cb"
}

.h-folder-add:before {
    content: "\e9cc"
}

.h-folder-locked:before {
    content: "\e9ce"
}

.h-folder-remove:before {
    content: "\e9cf"
}

.h-folder-verified:before {
    content: "\e9d0"
}

.h-folder:before {
    content: "\e9d1"
}

.h-fork:before {
    content: "\e9d2"
}

.h-frame:before {
    content: "\e9d3"
}

.h-framer:before {
    content: "\e9d4"
}

.h-gift-open:before {
    content: "\e9d5"
}

.h-gift:before {
    content: "\e9d6"
}

.h-github:before {
    content: "\e9d7"
}

.h-globe:before {
    content: "\e9d8"
}

.h-grid:before {
    content: "\e9d9"
}

.h-hard-drive:before {
    content: "\e9da"
}

.h-hashtag:before {
    content: "\e9db"
}

.h-headphone:before {
    content: "\e9dc"
}

.h-heart:before {
    content: "\e9dd"
}

.h-help-circle2:before {
    content: "\e9de"
}

.h-home:before {
    content: "\e9df"
}

.h-I-want-to-drink:before {
    content: "\e9e0"
}

.h-inbox:before {
    content: "\e9e1"
}

.h-instagram:before {
    content: "\e9e2"
}

.h-italic:before {
    content: "\e9e3"
}

.h-key:before {
    content: "\e9e4"
}

.h-knife:before {
    content: "\e9e5"
}

.h-label-empty:before {
    content: "\e9e6"
}

.h-label-full:before {
    content: "\e9e7"
}

.h-latte:before {
    content: "\e9e8"
}

.h-layers:before {
    content: "\e9e9"
}

.h-layout:before {
    content: "\e9ea"
}

.h-lens:before {
    content: "\e9eb"
}

.h-linkedin:before {
    content: "\e9ec"
}

.h-list:before {
    content: "\e9ed"
}

.h-loader-1:before {
    content: "\e9ee"
}

.h-locked:before {
    content: "\e9ef"
}

.h-map-pin:before {
    content: "\e9f0"
}

.h-map:before {
    content: "\e9f1"
}

.h-maximise:before {
    content: "\e9f3"
}

.h-menu:before {
    content: "\e9f4"
}

.h-message-empty-bubble:before {
    content: "\e9f5"
}

.h-message-empty-circle:before {
    content: "\e9f6"
}

.h-message-empty-square:before {
    content: "\e9f7"
}

.h-message-full-bubble:before {
    content: "\e9f8"
}

.h-message-full-square-1:before {
    content: "\e9f9"
}

.h-message-full-square:before {
    content: "\e9fa"
}

.h-mic-off:before {
    content: "\e9fb"
}

.h-mic:before {
    content: "\e9fc"
}

.h-microphone:before {
    content: "\e9fd"
}

.h-minimise:before {
    content: "\e9ff"
}

.h-minus-circle:before {
    content: "\ea00"
}

.h-minus-square:before {
    content: "\ea01"
}

.h-minus:before {
    content: "\ea02"
}

.h-moon:before {
    content: "\ea03"
}

.h-more-horizontal:before {
    content: "\ea04"
}

.h-more-vertical:before {
    content: "\ea05"
}

.h-mouse-pointer:before {
    content: "\ea06"
}

.h-move-horizontally:before {
    content: "\ea07"
}

.h-move-vertically:before {
    content: "\ea08"
}

.h-move:before {
    content: "\ea09"
}

.h-movie:before {
    content: "\ea0a"
}

.h-music:before {
    content: "\ea0b"
}

.h-navigator-2:before {
    content: "\ea0c"
}

.h-navigator-3:before {
    content: "\ea0d"
}

.h-navigator:before {
    content: "\ea0e"
}

.h-option:before {
    content: "\ea0f"
}

.h-package:before {
    content: "\ea10"
}

.h-paperclip:before {
    content: "\ea11"
}

.h-partially-sunny:before {
    content: "\ea12"
}

.h-pause:before {
    content: "\ea13"
}

.h-pen-tool:before {
    content: "\ea14"
}

.h-percent:before {
    content: "\ea15"
}

.h-phone-forwarded:before {
    content: "\ea16"
}

.h-phone-incoming:before {
    content: "\ea17"
}

.h-phone-missed:before {
    content: "\ea18"
}

.h-phone-off:before {
    content: "\ea19"
}

.h-phone-ring:before {
    content: "\ea1a"
}

.h-phone:before {
    content: "\ea1b"
}

.h-picture:before {
    content: "\ea1c"
}

.h-play:before {
    content: "\ea1d"
}

.h-plus-circle:before {
    content: "\ea1e"
}

.h-plus-square:before {
    content: "\ea1f"
}

.h-plus:before {
    content: "\ea20"
}

.h-pot:before {
    content: "\ea21"
}

.h-pound-sign:before {
    content: "\ea22"
}

.h-power:before {
    content: "\ea23"
}

.h-printer:before {
    content: "\ea24"
}

.h-radio:before {
    content: "\ea25"
}

.h-repeat-1:before {
    content: "\ea26"
}

.h-repeat:before {
    content: "\ea27"
}

.h-rewind-x3:before {
    content: "\ea28"
}

.h-rewind:before {
    content: "\ea29"
}

.h-rss:before {
    content: "\ea2a"
}

.h-save-1:before {
    content: "\ea2b"
}

.h-scissors:before {
    content: "\ea2d"
}

.h-send:before {
    content: "\ea2e"
}

.h-server:before {
    content: "\ea2f"
}

.h-settings:before {
    content: "\ea30"
}

.h-share:before {
    content: "\ea31"
}

.h-shield-off:before {
    content: "\ea33"
}

.h-shield-safe:before {
    content: "\ea34"
}

.h-shield:before {
    content: "\ea35"
}

.h-shopping-cart:before {
    content: "\ea36"
}

.h-shuffle-2:before {
    content: "\ea37"
}

.h-shuffle:before {
    content: "\ea38"
}

.h-sidebar-left:before {
    content: "\ea39"
}

.h-sidebar-right:before {
    content: "\ea3a"
}

.h-sketch:before {
    content: "\ea3b"
}

.h-skip-back:before {
    content: "\ea3c"
}

.h-slack:before {
    content: "\ea3d"
}

.h-slash:before {
    content: "\ea3e"
}

.h-slice:before {
    content: "\ea3f"
}

.h-sliders-1:before {
    content: "\ea40"
}

.h-sliders-2:before {
    content: "\ea41"
}

.h-smartphone:before {
    content: "\ea42"
}

.h-snow:before {
    content: "\ea43"
}

.h-soap:before {
    content: "\ea44"
}

.h-speaker:before {
    content: "\ea45"
}

.h-spoon:before {
    content: "\ea46"
}

.h-star:before {
    content: "\ea47"
}

.h-status-offline:before {
    content: "\ea48"
}

.h-status-ok:before {
    content: "\ea49"
}

.h-status-transfering:before {
    content: "\ea4a"
}

.h-sun-half:before {
    content: "\ea4b"
}

.h-sun:before {
    content: "\ea4c"
}

.h-sunrise:before {
    content: "\ea4d"
}

.h-sunset:before {
    content: "\ea4e"
}

.h-tablet:before {
    content: "\ea4f"
}

.h-tag-empty:before {
    content: "\ea50"
}

.h-tag-full:before {
    content: "\ea51"
}

.h-tape .path1:before {
    content: "\ea52";
    color: #333
}

.h-tape .path2:before {
    content: "\ea86";
    margin-left: -1em
}

.h-tape .path3:before {
    content: "\ea87";
    margin-left: -1em;
    color: #333
}

.h-tape .path4:before {
    content: "\ea88";
    margin-left: -1em
}

.h-tape .path5:before {
    content: "\ea89";
    margin-left: -1em;
    color: #333
}

.h-tape .path6:before {
    content: "\ea8a";
    margin-left: -1em;
    color: #333
}

.h-television-2:before {
    content: "\ea53"
}

.h-television:before {
    content: "\ea54"
}

.h-thermometer:before {
    content: "\ea55"
}

.h-thumbs-down:before {
    content: "\ea56"
}

.h-thumbs-up:before {
    content: "\ea57"
}

.h-toggle-left-2:before {
    content: "\ea58"
}

.h-toggle-left:before {
    content: "\ea59"
}

.h-toggle-right-2:before {
    content: "\ea5a"
}

.h-toggle-right:before {
    content: "\ea5b"
}

.h-tool:before {
    content: "\ea5c"
}

.h-topbar:before {
    content: "\ea5d"
}

.h-trash-1-open:before {
    content: "\ea5e"
}

.h-trash-1:before {
    content: "\ea5f"
}

.h-trash-2-open:before {
    content: "\ea60"
}

.h-trash-2:before {
    content: "\ea61"
}

.h-trash-3:before {
    content: "\ea62"
}

.h-trending-down:before {
    content: "\ea63"
}

.h-trending-up:before {
    content: "\ea64"
}

.h-truck:before {
    content: "\ea65"
}

.h-twitter:before {
    content: "\ea66"
}

.h-type:before {
    content: "\ea67"
}

.h-umbrella:before {
    content: "\ea68"
}

.h-underline:before {
    content: "\ea69"
}

.h-unlocked-2:before {
    content: "\ea6a"
}

.h-unlocked:before {
    content: "\ea6b"
}

.h-upload-cloud:before {
    content: "\ea6c"
}

.h-upload:before {
    content: "\ea6d"
}

.h-video-off:before {
    content: "\ea6e"
}

.h-video:before {
    content: "\ea6f"
}

.h-voicemail:before {
    content: "\ea70"
}

.h-volume-high:before {
    content: "\ea71"
}

.h-volume-low:before {
    content: "\ea72"
}

.h-volume-off:before {
    content: "\ea73"
}

.h-volume:before {
    content: "\ea74"
}

.h-whatsapp:before {
    content: "\ea76"
}

.h-wifi-off:before {
    content: "\ea77"
}

.h-wifi-on:before {
    content: "\ea78"
}

.h-wind:before {
    content: "\ea79"
}

.h-x-circle:before {
    content: "\ea7a"
}

.h-x-square:before {
    content: "\ea7b"
}

.h-x:before {
    content: "\ea7c"
}

.h-XD:before {
    content: "\ea7d"
}

.h-youtube-pause:before {
    content: "\ea7e"
}

.h-youtube-stop:before {
    content: "\ea7f"
}

.h-youtube:before {
    content: "\ea80"
}

.h-yuan-sign:before {
    content: "\ea81"
}

.h-zap-off:before {
    content: "\ea82"
}

.h-zap-on:before {
    content: "\ea83"
}

.h-zoom-in:before {
    content: "\ea84"
}

.h-zoom-out:before {
    content: "\ea85"
}

.fa,.fab,.fad,.fal,.far,.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite
}

.fa-pulse {
    -webkit-animation: fa-spin 1s steps(8) infinite;
    animation: fa-spin 1s steps(8) infinite
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.fa-flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1);
    transform: scale(-1)
}

:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em
}

.fa-stack-1x,.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: "\f26e"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-acquisitions-incorporated:before {
    content: "\f6af"
}

.fa-ad:before {
    content: "\f641"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-air-freshener:before {
    content: "\f5d0"
}

.fa-airbnb:before {
    content: "\f834"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-alipay:before {
    content: "\f642"
}

.fa-allergies:before {
    content: "\f461"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angry:before {
    content: "\f556"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-ankh:before {
    content: "\f644"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-alt:before {
    content: "\f5d1"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-archway:before {
    content: "\f557"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-artstation:before {
    content: "\f77a"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-atlas:before {
    content: "\f558"
}

.fa-atlassian:before {
    content: "\f77b"
}

.fa-atom:before {
    content: "\f5d2"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-award:before {
    content: "\f559"
}

.fa-aws:before {
    content: "\f375"
}

.fa-baby:before {
    content: "\f77c"
}

.fa-baby-carriage:before {
    content: "\f77d"
}

.fa-backspace:before {
    content: "\f55a"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-bacon:before {
    content: "\f7e5"
}

.fa-bacteria:before {
    content: "\e059"
}

.fa-bacterium:before {
    content: "\e05a"
}

.fa-bahai:before {
    content: "\f666"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-balance-scale-left:before {
    content: "\f515"
}

.fa-balance-scale-right:before {
    content: "\f516"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battle-net:before {
    content: "\f835"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bezier-curve:before {
    content: "\f55b"
}

.fa-bible:before {
    content: "\f647"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-biking:before {
    content: "\f84a"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-biohazard:before {
    content: "\f780"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blender:before {
    content: "\f517"
}

.fa-blender-phone:before {
    content: "\f6b6"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blog:before {
    content: "\f781"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-bone:before {
    content: "\f5d7"
}

.fa-bong:before {
    content: "\f55c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-book-dead:before {
    content: "\f6b7"
}

.fa-book-medical:before {
    content: "\f7e6"
}

.fa-book-open:before {
    content: "\f518"
}

.fa-book-reader:before {
    content: "\f5da"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-bootstrap:before {
    content: "\f836"
}

.fa-border-all:before {
    content: "\f84c"
}

.fa-border-none:before {
    content: "\f850"
}

.fa-border-style:before {
    content: "\f853"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-box:before {
    content: "\f466"
}

.fa-box-open:before {
    content: "\f49e"
}

.fa-box-tissue:before {
    content: "\e05b"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-brain:before {
    content: "\f5dc"
}

.fa-bread-slice:before {
    content: "\f7ec"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-briefcase-medical:before {
    content: "\f469"
}

.fa-broadcast-tower:before {
    content: "\f519"
}

.fa-broom:before {
    content: "\f51a"
}

.fa-brush:before {
    content: "\f55d"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-buffer:before {
    content: "\f837"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-burn:before {
    content: "\f46a"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-bus-alt:before {
    content: "\f55e"
}

.fa-business-time:before {
    content: "\f64a"
}

.fa-buy-n-large:before {
    content: "\f8a6"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-day:before {
    content: "\f783"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-calendar-week:before {
    content: "\f784"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-campground:before {
    content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
    content: "\f785"
}

.fa-candy-cane:before {
    content: "\f786"
}

.fa-cannabis:before {
    content: "\f55f"
}

.fa-capsules:before {
    content: "\f46b"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-car-alt:before {
    content: "\f5de"
}

.fa-car-battery:before {
    content: "\f5df"
}

.fa-car-crash:before {
    content: "\f5e1"
}

.fa-car-side:before {
    content: "\f5e4"
}

.fa-caravan:before {
    content: "\f8ff"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-carrot:before {
    content: "\f787"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cash-register:before {
    content: "\f788"
}

.fa-cat:before {
    content: "\f6be"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-centos:before {
    content: "\f789"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chair:before {
    content: "\f6c0"
}

.fa-chalkboard:before {
    content: "\f51b"
}

.fa-chalkboard-teacher:before {
    content: "\f51c"
}

.fa-charging-station:before {
    content: "\f5e7"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-double:before {
    content: "\f560"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-cheese:before {
    content: "\f7ef"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-chromecast:before {
    content: "\f838"
}

.fa-church:before {
    content: "\f51d"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-city:before {
    content: "\f64f"
}

.fa-clinic-medical:before {
    content: "\f7f2"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-meatball:before {
    content: "\f73b"
}

.fa-cloud-moon:before {
    content: "\f6c3"
}

.fa-cloud-moon-rain:before {
    content: "\f73c"
}

.fa-cloud-rain:before {
    content: "\f73d"
}

.fa-cloud-showers-heavy:before {
    content: "\f740"
}

.fa-cloud-sun:before {
    content: "\f6c4"
}

.fa-cloud-sun-rain:before {
    content: "\f743"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudflare:before {
    content: "\e07d"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-cocktail:before {
    content: "\f561"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-coins:before {
    content: "\f51e"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-dollar:before {
    content: "\f651"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comment-medical:before {
    content: "\f7f5"
}

.fa-comment-slash:before {
    content: "\f4b3"
}

.fa-comments:before {
    content: "\f086"
}

.fa-comments-dollar:before {
    content: "\f653"
}

.fa-compact-disc:before {
    content: "\f51f"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compress:before {
    content: "\f066"
}

.fa-compress-alt:before {
    content: "\f422"
}

.fa-compress-arrows-alt:before {
    content: "\f78c"
}

.fa-concierge-bell:before {
    content: "\f562"
}

.fa-confluence:before {
    content: "\f78d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-cookie:before {
    content: "\f563"
}

.fa-cookie-bite:before {
    content: "\f564"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-cotton-bureau:before {
    content: "\f89e"
}

.fa-couch:before {
    content: "\f4b8"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-creative-commons-by:before {
    content: "\f4e7"
}

.fa-creative-commons-nc:before {
    content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"
}

.fa-creative-commons-nd:before {
    content: "\f4eb"
}

.fa-creative-commons-pd:before {
    content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"
}

.fa-creative-commons-remix:before {
    content: "\f4ee"
}

.fa-creative-commons-sa:before {
    content: "\f4ef"
}

.fa-creative-commons-sampling:before {
    content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"
}

.fa-creative-commons-share:before {
    content: "\f4f2"
}

.fa-creative-commons-zero:before {
    content: "\f4f3"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-critical-role:before {
    content: "\f6c9"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crop-alt:before {
    content: "\f565"
}

.fa-cross:before {
    content: "\f654"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-crow:before {
    content: "\f520"
}

.fa-crown:before {
    content: "\f521"
}

.fa-crutch:before {
    content: "\f7f7"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-d-and-d-beyond:before {
    content: "\f6ca"
}

.fa-dailymotion:before {
    content: "\e052"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-deezer:before {
    content: "\e077"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-democrat:before {
    content: "\f747"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-dev:before {
    content: "\f6cc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-dharmachakra:before {
    content: "\f655"
}

.fa-dhl:before {
    content: "\f790"
}

.fa-diagnoses:before {
    content: "\f470"
}

.fa-diaspora:before {
    content: "\f791"
}

.fa-dice:before {
    content: "\f522"
}

.fa-dice-d20:before {
    content: "\f6cf"
}

.fa-dice-d6:before {
    content: "\f6d1"
}

.fa-dice-five:before {
    content: "\f523"
}

.fa-dice-four:before {
    content: "\f524"
}

.fa-dice-one:before {
    content: "\f525"
}

.fa-dice-six:before {
    content: "\f526"
}

.fa-dice-three:before {
    content: "\f527"
}

.fa-dice-two:before {
    content: "\f528"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-digital-tachograph:before {
    content: "\f566"
}

.fa-directions:before {
    content: "\f5eb"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-disease:before {
    content: "\f7fa"
}

.fa-divide:before {
    content: "\f529"
}

.fa-dizzy:before {
    content: "\f567"
}

.fa-dna:before {
    content: "\f471"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dog:before {
    content: "\f6d3"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-donate:before {
    content: "\f4b9"
}

.fa-door-closed:before {
    content: "\f52a"
}

.fa-door-open:before {
    content: "\f52b"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-dove:before {
    content: "\f4ba"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-drafting-compass:before {
    content: "\f568"
}

.fa-dragon:before {
    content: "\f6d5"
}

.fa-draw-polygon:before {
    content: "\f5ee"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drum:before {
    content: "\f569"
}

.fa-drum-steelpan:before {
    content: "\f56a"
}

.fa-drumstick-bite:before {
    content: "\f6d7"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dumbbell:before {
    content: "\f44b"
}

.fa-dumpster:before {
    content: "\f793"
}

.fa-dumpster-fire:before {
    content: "\f794"
}

.fa-dungeon:before {
    content: "\f6d9"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-ebay:before {
    content: "\f4f4"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edge-legacy:before {
    content: "\e078"
}

.fa-edit:before {
    content: "\f044"
}

.fa-egg:before {
    content: "\f7fb"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ello:before {
    content: "\f5f1"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-text:before {
    content: "\f658"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-equals:before {
    content: "\f52c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-ethernet:before {
    content: "\f796"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-evernote:before {
    content: "\f839"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-alt:before {
    content: "\f424"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fan:before {
    content: "\f863"
}

.fa-fantasy-flight-games:before {
    content: "\f6dc"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-faucet:before {
    content: "\e005"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-feather:before {
    content: "\f52d"
}

.fa-feather-alt:before {
    content: "\f56b"
}

.fa-fedex:before {
    content: "\f797"
}

.fa-fedora:before {
    content: "\f798"
}

.fa-female:before {
    content: "\f182"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-figma:before {
    content: "\f799"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-contract:before {
    content: "\f56c"
}

.fa-file-csv:before {
    content: "\f6dd"
}

.fa-file-download:before {
    content: "\f56d"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-export:before {
    content: "\f56e"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-import:before {
    content: "\f56f"
}

.fa-file-invoice:before {
    content: "\f570"
}

.fa-file-invoice-dollar:before {
    content: "\f571"
}

.fa-file-medical:before {
    content: "\f477"
}

.fa-file-medical-alt:before {
    content: "\f478"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-prescription:before {
    content: "\f572"
}

.fa-file-signature:before {
    content: "\f573"
}

.fa-file-upload:before {
    content: "\f574"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-fill:before {
    content: "\f575"
}

.fa-fill-drip:before {
    content: "\f576"
}

.fa-film:before {
    content: "\f008"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fingerprint:before {
    content: "\f577"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-alt:before {
    content: "\f7e4"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-firefox-browser:before {
    content: "\e007"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-first-order-alt:before {
    content: "\f50a"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-fish:before {
    content: "\f578"
}

.fa-fist-raised:before {
    content: "\f6de"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flag-usa:before {
    content: "\f74d"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-flushed:before {
    content: "\f579"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-minus:before {
    content: "\f65d"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-folder-plus:before {
    content: "\f65e"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frog:before {
    content: "\f52e"
}

.fa-frown:before {
    content: "\f119"
}

.fa-frown-open:before {
    content: "\f57a"
}

.fa-fulcrum:before {
    content: "\f50b"
}

.fa-funnel-dollar:before {
    content: "\f662"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-galactic-republic:before {
    content: "\f50c"
}

.fa-galactic-senate:before {
    content: "\f50d"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gas-pump:before {
    content: "\f52f"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-ghost:before {
    content: "\f6e2"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-gifts:before {
    content: "\f79c"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-alt:before {
    content: "\f841"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-cheers:before {
    content: "\f79f"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glass-martini-alt:before {
    content: "\f57b"
}

.fa-glass-whiskey:before {
    content: "\f7a0"
}

.fa-glasses:before {
    content: "\f530"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-globe-africa:before {
    content: "\f57c"
}

.fa-globe-americas:before {
    content: "\f57d"
}

.fa-globe-asia:before {
    content: "\f57e"
}

.fa-globe-europe:before {
    content: "\f7a2"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-pay:before {
    content: "\e079"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-gopuram:before {
    content: "\f664"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-greater-than:before {
    content: "\f531"
}

.fa-greater-than-equal:before {
    content: "\f532"
}

.fa-grimace:before {
    content: "\f57f"
}

.fa-grin:before {
    content: "\f580"
}

.fa-grin-alt:before {
    content: "\f581"
}

.fa-grin-beam:before {
    content: "\f582"
}

.fa-grin-beam-sweat:before {
    content: "\f583"
}

.fa-grin-hearts:before {
    content: "\f584"
}

.fa-grin-squint:before {
    content: "\f585"
}

.fa-grin-squint-tears:before {
    content: "\f586"
}

.fa-grin-stars:before {
    content: "\f587"
}

.fa-grin-tears:before {
    content: "\f588"
}

.fa-grin-tongue:before {
    content: "\f589"
}

.fa-grin-tongue-squint:before {
    content: "\f58a"
}

.fa-grin-tongue-wink:before {
    content: "\f58b"
}

.fa-grin-wink:before {
    content: "\f58c"
}

.fa-grip-horizontal:before {
    content: "\f58d"
}

.fa-grip-lines:before {
    content: "\f7a4"
}

.fa-grip-lines-vertical:before {
    content: "\f7a5"
}

.fa-grip-vertical:before {
    content: "\f58e"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-guilded:before {
    content: "\e07e"
}

.fa-guitar:before {
    content: "\f7a6"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hackerrank:before {
    content: "\f5f7"
}

.fa-hamburger:before {
    content: "\f805"
}

.fa-hammer:before {
    content: "\f6e3"
}

.fa-hamsa:before {
    content: "\f665"
}

.fa-hand-holding:before {
    content: "\f4bd"
}

.fa-hand-holding-heart:before {
    content: "\f4be"
}

.fa-hand-holding-medical:before {
    content: "\e05c"
}

.fa-hand-holding-usd:before {
    content: "\f4c0"
}

.fa-hand-holding-water:before {
    content: "\f4c1"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-middle-finger:before {
    content: "\f806"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-sparkles:before {
    content: "\e05d"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-hands:before {
    content: "\f4c2"
}

.fa-hands-helping:before {
    content: "\f4c4"
}

.fa-hands-wash:before {
    content: "\e05e"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-handshake-alt-slash:before {
    content: "\e05f"
}

.fa-handshake-slash:before {
    content: "\e060"
}

.fa-hanukiah:before {
    content: "\f6e6"
}

.fa-hard-hat:before {
    content: "\f807"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-hat-cowboy:before {
    content: "\f8c0"
}

.fa-hat-cowboy-side:before {
    content: "\f8c1"
}

.fa-hat-wizard:before {
    content: "\f6e8"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-head-side-cough:before {
    content: "\e061"
}

.fa-head-side-cough-slash:before {
    content: "\e062"
}

.fa-head-side-mask:before {
    content: "\e063"
}

.fa-head-side-virus:before {
    content: "\e064"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-headphones-alt:before {
    content: "\f58f"
}

.fa-headset:before {
    content: "\f590"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heart-broken:before {
    content: "\f7a9"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-helicopter:before {
    content: "\f533"
}

.fa-highlighter:before {
    content: "\f591"
}

.fa-hiking:before {
    content: "\f6ec"
}

.fa-hippo:before {
    content: "\f6ed"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hive:before {
    content: "\e07f"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-holly-berry:before {
    content: "\f7aa"
}

.fa-home:before {
    content: "\f015"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hornbill:before {
    content: "\f592"
}

.fa-horse:before {
    content: "\f6f0"
}

.fa-horse-head:before {
    content: "\f7ab"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-alt:before {
    content: "\f47d"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hospital-user:before {
    content: "\f80d"
}

.fa-hot-tub:before {
    content: "\f593"
}

.fa-hotdog:before {
    content: "\f80f"
}

.fa-hotel:before {
    content: "\f594"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-house-damage:before {
    content: "\f6f1"
}

.fa-house-user:before {
    content: "\e065"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-hryvnia:before {
    content: "\f6f2"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-ice-cream:before {
    content: "\f810"
}

.fa-icicles:before {
    content: "\f7ad"
}

.fa-icons:before {
    content: "\f86d"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-ideal:before {
    content: "\e013"
}

.fa-igloo:before {
    content: "\f7ae"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-infinity:before {
    content: "\f534"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-innosoft:before {
    content: "\e080"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-instagram-square:before {
    content: "\e055"
}

.fa-instalod:before {
    content: "\e081"
}

.fa-intercom:before {
    content: "\f7af"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-invision:before {
    content: "\f7b0"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itch-io:before {
    content: "\f83a"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-java:before {
    content: "\f4e4"
}

.fa-jedi:before {
    content: "\f669"
}

.fa-jedi-order:before {
    content: "\f50e"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-jira:before {
    content: "\f7b1"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joint:before {
    content: "\f595"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-journal-whills:before {
    content: "\f66a"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-kaaba:before {
    content: "\f66b"
}

.fa-kaggle:before {
    content: "\f5fa"
}

.fa-key:before {
    content: "\f084"
}

.fa-keybase:before {
    content: "\f4f5"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-khanda:before {
    content: "\f66d"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-kiss:before {
    content: "\f596"
}

.fa-kiss-beam:before {
    content: "\f597"
}

.fa-kiss-wink-heart:before {
    content: "\f598"
}

.fa-kiwi-bird:before {
    content: "\f535"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-landmark:before {
    content: "\f66f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laptop-code:before {
    content: "\f5fc"
}

.fa-laptop-house:before {
    content: "\e066"
}

.fa-laptop-medical:before {
    content: "\f812"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-laugh:before {
    content: "\f599"
}

.fa-laugh-beam:before {
    content: "\f59a"
}

.fa-laugh-squint:before {
    content: "\f59b"
}

.fa-laugh-wink:before {
    content: "\f59c"
}

.fa-layer-group:before {
    content: "\f5fd"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-less-than-equal:before {
    content: "\f537"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-luggage-cart:before {
    content: "\f59d"
}

.fa-lungs:before {
    content: "\f604"
}

.fa-lungs-virus:before {
    content: "\e067"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-mail-bulk:before {
    content: "\f674"
}

.fa-mailchimp:before {
    content: "\f59e"
}

.fa-male:before {
    content: "\f183"
}

.fa-mandalorian:before {
    content: "\f50f"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marked:before {
    content: "\f59f"
}

.fa-map-marked-alt:before {
    content: "\f5a0"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-markdown:before {
    content: "\f60f"
}

.fa-marker:before {
    content: "\f5a1"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mask:before {
    content: "\f6fa"
}

.fa-mastodon:before {
    content: "\f4f6"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-mdb:before {
    content: "\f8ca"
}

.fa-medal:before {
    content: "\f5a2"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-megaport:before {
    content: "\f5a3"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-meh-blank:before {
    content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
    content: "\f5a5"
}

.fa-memory:before {
    content: "\f538"
}

.fa-mendeley:before {
    content: "\f7b3"
}

.fa-menorah:before {
    content: "\f676"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-meteor:before {
    content: "\f753"
}

.fa-microblog:before {
    content: "\e01a"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-alt:before {
    content: "\f3c9"
}

.fa-microphone-alt-slash:before {
    content: "\f539"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microscope:before {
    content: "\f610"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mitten:before {
    content: "\f7b5"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mixer:before {
    content: "\e056"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill:before {
    content: "\f0d6"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-money-bill-wave:before {
    content: "\f53a"
}

.fa-money-bill-wave-alt:before {
    content: "\f53b"
}

.fa-money-check:before {
    content: "\f53c"
}

.fa-money-check-alt:before {
    content: "\f53d"
}

.fa-monument:before {
    content: "\f5a6"
}

.fa-moon:before {
    content: "\f186"
}

.fa-mortar-pestle:before {
    content: "\f5a7"
}

.fa-mosque:before {
    content: "\f678"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mountain:before {
    content: "\f6fc"
}

.fa-mouse:before {
    content: "\f8cc"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-mug-hot:before {
    content: "\f7b6"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neos:before {
    content: "\f612"
}

.fa-network-wired:before {
    content: "\f6ff"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nimblr:before {
    content: "\f5a8"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-not-equal:before {
    content: "\f53e"
}

.fa-notes-medical:before {
    content: "\f481"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-octopus-deploy:before {
    content: "\e082"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-oil-can:before {
    content: "\f613"
}

.fa-old-republic:before {
    content: "\f510"
}

.fa-om:before {
    content: "\f679"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-orcid:before {
    content: "\f8d2"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-otter:before {
    content: "\f700"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-pager:before {
    content: "\f815"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-paint-roller:before {
    content: "\f5aa"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-parachute-box:before {
    content: "\f4cd"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-parking:before {
    content: "\f540"
}

.fa-passport:before {
    content: "\f5ab"
}

.fa-pastafarianism:before {
    content: "\f67b"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-peace:before {
    content: "\f67c"
}

.fa-pen:before {
    content: "\f304"
}

.fa-pen-alt:before {
    content: "\f305"
}

.fa-pen-fancy:before {
    content: "\f5ac"
}

.fa-pen-nib:before {
    content: "\f5ad"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-pencil-ruler:before {
    content: "\f5ae"
}

.fa-penny-arcade:before {
    content: "\f704"
}

.fa-people-arrows:before {
    content: "\e068"
}

.fa-people-carry:before {
    content: "\f4ce"
}

.fa-pepper-hot:before {
    content: "\f816"
}

.fa-perbyte:before {
    content: "\e083"
}

.fa-percent:before {
    content: "\f295"
}

.fa-percentage:before {
    content: "\f541"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-person-booth:before {
    content: "\f756"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phoenix-squadron:before {
    content: "\f511"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-alt:before {
    content: "\f879"
}

.fa-phone-slash:before {
    content: "\f3dd"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-square-alt:before {
    content: "\f87b"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-photo-video:before {
    content: "\f87c"
}

.fa-php:before {
    content: "\f457"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-hat:before {
    content: "\f4e5"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-square:before {
    content: "\e01e"
}

.fa-piggy-bank:before {
    content: "\f4d3"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-pizza-slice:before {
    content: "\f818"
}

.fa-place-of-worship:before {
    content: "\f67f"
}

.fa-plane:before {
    content: "\f072"
}

.fa-plane-arrival:before {
    content: "\f5af"
}

.fa-plane-departure:before {
    content: "\f5b0"
}

.fa-plane-slash:before {
    content: "\e069"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-poll:before {
    content: "\f681"
}

.fa-poll-h:before {
    content: "\f682"
}

.fa-poo:before {
    content: "\f2fe"
}

.fa-poo-storm:before {
    content: "\f75a"
}

.fa-poop:before {
    content: "\f619"
}

.fa-portrait:before {
    content: "\f3e0"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-pray:before {
    content: "\f683"
}

.fa-praying-hands:before {
    content: "\f684"
}

.fa-prescription:before {
    content: "\f5b1"
}

.fa-prescription-bottle:before {
    content: "\f485"
}

.fa-prescription-bottle-alt:before {
    content: "\f486"
}

.fa-print:before {
    content: "\f02f"
}

.fa-procedures:before {
    content: "\f487"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-project-diagram:before {
    content: "\f542"
}

.fa-pump-medical:before {
    content: "\e06a"
}

.fa-pump-soap:before {
    content: "\e06b"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-quran:before {
    content: "\f687"
}

.fa-r-project:before {
    content: "\f4f7"
}

.fa-radiation:before {
    content: "\f7b9"
}

.fa-radiation-alt:before {
    content: "\f7ba"
}

.fa-rainbow:before {
    content: "\f75b"
}

.fa-random:before {
    content: "\f074"
}

.fa-raspberry-pi:before {
    content: "\f7bb"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-reacteurope:before {
    content: "\f75d"
}

.fa-readme:before {
    content: "\f4d5"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-receipt:before {
    content: "\f543"
}

.fa-record-vinyl:before {
    content: "\f8d9"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redhat:before {
    content: "\f7bc"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-remove-format:before {
    content: "\f87d"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-republican:before {
    content: "\f75e"
}

.fa-researchgate:before {
    content: "\f4f8"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-restroom:before {
    content: "\f7bd"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-rev:before {
    content: "\f5b2"
}

.fa-ribbon:before {
    content: "\f4d6"
}

.fa-ring:before {
    content: "\f70b"
}

.fa-road:before {
    content: "\f018"
}

.fa-robot:before {
    content: "\f544"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-route:before {
    content: "\f4d7"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-ruler:before {
    content: "\f545"
}

.fa-ruler-combined:before {
    content: "\f546"
}

.fa-ruler-horizontal:before {
    content: "\f547"
}

.fa-ruler-vertical:before {
    content: "\f548"
}

.fa-running:before {
    content: "\f70c"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-rust:before {
    content: "\e07a"
}

.fa-sad-cry:before {
    content: "\f5b3"
}

.fa-sad-tear:before {
    content: "\f5b4"
}

.fa-safari:before {
    content: "\f267"
}

.fa-salesforce:before {
    content: "\f83b"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-satellite:before {
    content: "\f7bf"
}

.fa-satellite-dish:before {
    content: "\f7c0"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-school:before {
    content: "\f549"
}

.fa-screwdriver:before {
    content: "\f54a"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-scroll:before {
    content: "\f70e"
}

.fa-sd-card:before {
    content: "\f7c2"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-dollar:before {
    content: "\f688"
}

.fa-search-location:before {
    content: "\f689"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-seedling:before {
    content: "\f4d8"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-shapes:before {
    content: "\f61f"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-shield-virus:before {
    content: "\e06c"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shoe-prints:before {
    content: "\f54b"
}

.fa-shopify:before {
    content: "\e057"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shopware:before {
    content: "\f5b5"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-shuttle-van:before {
    content: "\f5b6"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-signature:before {
    content: "\f5b7"
}

.fa-sim-card:before {
    content: "\f7c4"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sink:before {
    content: "\e06d"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-sith:before {
    content: "\f512"
}

.fa-skating:before {
    content: "\f7c5"
}

.fa-sketch:before {
    content: "\f7c6"
}

.fa-skiing:before {
    content: "\f7c9"
}

.fa-skiing-nordic:before {
    content: "\f7ca"
}

.fa-skull:before {
    content: "\f54c"
}

.fa-skull-crossbones:before {
    content: "\f714"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-slash:before {
    content: "\f715"
}

.fa-sleigh:before {
    content: "\f7cc"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-smile-beam:before {
    content: "\f5b8"
}

.fa-smile-wink:before {
    content: "\f4da"
}

.fa-smog:before {
    content: "\f75f"
}

.fa-smoking:before {
    content: "\f48d"
}

.fa-smoking-ban:before {
    content: "\f54d"
}

.fa-sms:before {
    content: "\f7cd"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowboarding:before {
    content: "\f7ce"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-snowman:before {
    content: "\f7d0"
}

.fa-snowplow:before {
    content: "\f7d2"
}

.fa-soap:before {
    content: "\e06e"
}

.fa-socks:before {
    content: "\f696"
}

.fa-solar-panel:before {
    content: "\f5ba"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-down-alt:before {
    content: "\f881"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-alpha-up-alt:before {
    content: "\f882"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-down-alt:before {
    content: "\f884"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-amount-up-alt:before {
    content: "\f885"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-down-alt:before {
    content: "\f886"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-numeric-up-alt:before {
    content: "\f887"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-sourcetree:before {
    content: "\f7d3"
}

.fa-spa:before {
    content: "\f5bb"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-speaker-deck:before {
    content: "\f83c"
}

.fa-spell-check:before {
    content: "\f891"
}

.fa-spider:before {
    content: "\f717"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-splotch:before {
    content: "\f5bc"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-spray-can:before {
    content: "\f5bd"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-square-root-alt:before {
    content: "\f698"
}

.fa-squarespace:before {
    content: "\f5be"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-stackpath:before {
    content: "\f842"
}

.fa-stamp:before {
    content: "\f5bf"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-and-crescent:before {
    content: "\f699"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-star-half-alt:before {
    content: "\f5c0"
}

.fa-star-of-david:before {
    content: "\f69a"
}

.fa-star-of-life:before {
    content: "\f621"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-stopwatch-20:before {
    content: "\e06f"
}

.fa-store:before {
    content: "\f54e"
}

.fa-store-alt:before {
    content: "\f54f"
}

.fa-store-alt-slash:before {
    content: "\e070"
}

.fa-store-slash:before {
    content: "\e071"
}

.fa-strava:before {
    content: "\f428"
}

.fa-stream:before {
    content: "\f550"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-stroopwafel:before {
    content: "\f551"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-suitcase-rolling:before {
    content: "\f5c1"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-surprise:before {
    content: "\f5c2"
}

.fa-suse:before {
    content: "\f7d6"
}

.fa-swatchbook:before {
    content: "\f5c3"
}

.fa-swift:before {
    content: "\f8e1"
}

.fa-swimmer:before {
    content: "\f5c4"
}

.fa-swimming-pool:before {
    content: "\f5c5"
}

.fa-symfony:before {
    content: "\f83d"
}

.fa-synagogue:before {
    content: "\f69b"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tablets:before {
    content: "\f490"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tape:before {
    content: "\f4db"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-teamspeak:before {
    content: "\f4f9"
}

.fa-teeth:before {
    content: "\f62e"
}

.fa-teeth-open:before {
    content: "\f62f"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-temperature-high:before {
    content: "\f769"
}

.fa-temperature-low:before {
    content: "\f76b"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-tenge:before {
    content: "\f7d7"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-the-red-yeti:before {
    content: "\f69d"
}

.fa-theater-masks:before {
    content: "\f630"
}

.fa-themeco:before {
    content: "\f5c6"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-think-peaks:before {
    content: "\f731"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-tiktok:before {
    content: "\e07b"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-tint:before {
    content: "\f043"
}

.fa-tint-slash:before {
    content: "\f5c7"
}

.fa-tired:before {
    content: "\f5c8"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-toilet:before {
    content: "\f7d8"
}

.fa-toilet-paper:before {
    content: "\f71e"
}

.fa-toilet-paper-slash:before {
    content: "\e072"
}

.fa-toolbox:before {
    content: "\f552"
}

.fa-tools:before {
    content: "\f7d9"
}

.fa-tooth:before {
    content: "\f5c9"
}

.fa-torah:before {
    content: "\f6a0"
}

.fa-torii-gate:before {
    content: "\f6a1"
}

.fa-tractor:before {
    content: "\f722"
}

.fa-trade-federation:before {
    content: "\f513"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-traffic-light:before {
    content: "\f637"
}

.fa-trailer:before {
    content: "\e041"
}

.fa-train:before {
    content: "\f238"
}

.fa-tram:before {
    content: "\f7da"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-trash-restore:before {
    content: "\f829"
}

.fa-trash-restore-alt:before {
    content: "\f82a"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-trello:before {
    content: "\f181"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-truck-loading:before {
    content: "\f4de"
}

.fa-truck-monster:before {
    content: "\f63b"
}

.fa-truck-moving:before {
    content: "\f4df"
}

.fa-truck-pickup:before {
    content: "\f63c"
}

.fa-tshirt:before {
    content: "\f553"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-ubuntu:before {
    content: "\f7df"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbraco:before {
    content: "\f8e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-umbrella-beach:before {
    content: "\f5ca"
}

.fa-uncharted:before {
    content: "\e084"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-unity:before {
    content: "\e049"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-unsplash:before {
    content: "\e07c"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-ups:before {
    content: "\f7e0"
}

.fa-usb:before {
    content: "\f287"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-alt:before {
    content: "\f406"
}

.fa-user-alt-slash:before {
    content: "\f4fa"
}

.fa-user-astronaut:before {
    content: "\f4fb"
}

.fa-user-check:before {
    content: "\f4fc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-clock:before {
    content: "\f4fd"
}

.fa-user-cog:before {
    content: "\f4fe"
}

.fa-user-edit:before {
    content: "\f4ff"
}

.fa-user-friends:before {
    content: "\f500"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-user-injured:before {
    content: "\f728"
}

.fa-user-lock:before {
    content: "\f502"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-minus:before {
    content: "\f503"
}

.fa-user-ninja:before {
    content: "\f504"
}

.fa-user-nurse:before {
    content: "\f82f"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-shield:before {
    content: "\f505"
}

.fa-user-slash:before {
    content: "\f506"
}

.fa-user-tag:before {
    content: "\f507"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-users-cog:before {
    content: "\f509"
}

.fa-users-slash:before {
    content: "\e073"
}

.fa-usps:before {
    content: "\f7e1"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-vector-square:before {
    content: "\f5cb"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-vest:before {
    content: "\e085"
}

.fa-vest-patches:before {
    content: "\e086"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-vial:before {
    content: "\f492"
}

.fa-vials:before {
    content: "\f493"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-video-slash:before {
    content: "\f4e2"
}

.fa-vihara:before {
    content: "\f6a7"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-virus:before {
    content: "\e074"
}

.fa-virus-slash:before {
    content: "\e075"
}

.fa-viruses:before {
    content: "\e076"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-voicemail:before {
    content: "\f897"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-mute:before {
    content: "\f6a9"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vote-yea:before {
    content: "\f772"
}

.fa-vr-cardboard:before {
    content: "\f729"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-walking:before {
    content: "\f554"
}

.fa-wallet:before {
    content: "\f555"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-watchman-monitoring:before {
    content: "\e087"
}

.fa-water:before {
    content: "\f773"
}

.fa-wave-square:before {
    content: "\f83e"
}

.fa-waze:before {
    content: "\f83f"
}

.fa-weebly:before {
    content: "\f5cc"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weight-hanging:before {
    content: "\f5cd"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-wind:before {
    content: "\f72e"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-wine-bottle:before {
    content: "\f72f"
}

.fa-wine-glass:before {
    content: "\f4e3"
}

.fa-wine-glass-alt:before {
    content: "\f5ce"
}

.fa-wix:before {
    content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
    content: "\f730"
}

.fa-wodu:before {
    content: "\e088"
}

.fa-wolf-pack-battalion:before {
    content: "\f514"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wpressr:before {
    content: "\f3e4"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-x-ray:before {
    content: "\f497"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yammer:before {
    content: "\f840"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yarn:before {
    content: "\f7e3"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yin-yang:before {
    content: "\f6ad"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

.fa-zhihu:before {
    content: "\f63f"
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../webfonts/fa-brands-400.eot);
    src: url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: "Font Awesome 5 Brands"
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../webfonts/fa-regular-400.eot);
    src: url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")
}

.fab,.far {
    font-weight: 400
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(../webfonts/fa-solid-900.eot);
    src: url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa,.far,.fas {
    font-family: "Font Awesome 5 Free"
}

.fa,.fas {
    font-weight: 900
}

[data-tooltip] {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

[data-tooltip]:after,[data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

[data-tooltip]:before {
    content: '';
    border: 6px solid transparent
}

[data-tooltip]:after {
    height: 22px;
    padding: 11px 11px 0 11px;
    font-size: 13px;
    line-height: 11px;
    content: attr(data-tooltip);
    white-space: nowrap
}

[data-tooltip].simptip-position-top:before {
    border-top-color: #323232
}

[data-tooltip].simptip-position-top:after {
    background-color: #323232;
    color: #ecf0f1
}

[data-tooltip].simptip-position-bottom:before {
    border-bottom-color: #323232
}

[data-tooltip].simptip-position-bottom:after {
    background-color: #323232;
    color: #ecf0f1
}

[data-tooltip].simptip-position-left:before {
    border-left-color: #323232
}

[data-tooltip].simptip-position-left:after {
    background-color: #323232;
    color: #ecf0f1
}

[data-tooltip].simptip-position-right:before {
    border-right-color: #323232
}

[data-tooltip].simptip-position-right:after {
    background-color: #323232;
    color: #ecf0f1
}

[data-tooltip].simptip-position-top.half-arrow:before {
    border-right: 7px solid #323232
}

[data-tooltip].simptip-position-bottom.half-arrow:before {
    border-right: 7px solid #323232
}

[data-tooltip]:focus,[data-tooltip]:hover {
    background-color: transparent
}

[data-tooltip]:focus:after,[data-tooltip]:focus:before,[data-tooltip]:hover:after,[data-tooltip]:hover:before {
    opacity: 1;
    visibility: visible
}

.simptip-position-left:after,.simptip-position-left:before,.simptip-position-right:after,.simptip-position-right:before {
    bottom: 50%
}

.simptip-position-left:before,.simptip-position-right:before {
    margin-bottom: -5px
}

.simptip-position-left:after,.simptip-position-right:after {
    margin-bottom: -14.66667px
}

.half-arrow.simptip-position-left:before,.half-arrow.simptip-position-right:before {
    bottom: 16px;
    border-style: none;
    border-top: 7px solid transparent
}

.simptip-multiline.simptip-position-left:after,.simptip-multiline.simptip-position-left:before,.simptip-multiline.simptip-position-right:after,.simptip-multiline.simptip-position-right:before {
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    margin-bottom: 0
}

.simptip-multiline.simptip-position-left:before,.simptip-multiline.simptip-position-right:before {
    margin-bottom: 0
}

.simptip-multiline.half-arrow.simptip-position-left:before,.simptip-multiline.half-arrow.simptip-position-right:before {
    margin-bottom: -2px
}

.simptip-position-right:after,.simptip-position-right:before {
    left: 100%
}

.simptip-position-right:before {
    margin-left: -2px
}

.simptip-position-right:after {
    margin-left: 10px
}

.simptip-position-right.simptip-movable:before {
    margin-left: -10px
}

.simptip-position-right.simptip-movable:after {
    margin-left: 2px
}

.simptip-position-right.simptip-movable:hover:after,.simptip-position-right.simptip-movable:hover:before {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px)
}

.simptip-position-right.simptip-movable.half-arrow:before {
    margin-left: -5px
}

.simptip-position-right.simptip-movable.simptip-multiline:hover:after,.simptip-position-right.simptip-movable.simptip-multiline:hover:before {
    -webkit-transform: translate(10px,50%);
    -moz-transform: translate(10px,50%);
    -ms-transform: translate(10px,50%);
    -o-transform: translate(10px,50%);
    transform: translate(10px,50%)
}

.simptip-position-right.half-arrow:before {
    margin-left: 3px;
    border-right: 7px solid #323232
}

.simptip-position-left:after,.simptip-position-left:before {
    right: 100%
}

.simptip-position-left:before {
    margin-right: -2px
}

.simptip-position-left:after {
    margin-right: 10px
}

.simptip-position-left.simptip-movable:before {
    margin-right: -10px
}

.simptip-position-left.simptip-movable:after {
    margin-right: 2px
}

.simptip-position-left.simptip-movable:hover:after,.simptip-position-left.simptip-movable:hover:before {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px)
}

.simptip-position-left.simptip-movable.half-arrow:before {
    margin-right: -5px
}

.simptip-position-left.simptip-movable.simptip-multiline:hover:after,.simptip-position-left.simptip-movable.simptip-multiline:hover:before {
    -webkit-transform: translate(-10px,50%);
    -moz-transform: translate(-10px,50%);
    -ms-transform: translate(-10px,50%);
    -o-transform: translate(-10px,50%);
    transform: translate(-10px,50%)
}

.simptip-position-left.half-arrow:before {
    margin-right: 3px;
    border-left: 7px solid #323232
}

.simptip-position-bottom:after,.simptip-position-bottom:before,.simptip-position-top:after,.simptip-position-top:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.simptip-position-bottom:after,.simptip-position-top:after {
    width: auto
}

.half-arrow.simptip-position-bottom:before,.half-arrow.simptip-position-top:before {
    border-style: none;
    border-right: 7px solid #323232
}

.simptip-position-bottom:after,.simptip-position-bottom:before {
    top: 100%
}

.simptip-position-bottom:before {
    margin-top: -5px
}

.simptip-position-bottom:after {
    margin-top: 7px
}

.simptip-position-bottom:hover:after,.simptip-position-bottom:hover:before {
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.simptip-position-bottom.simptip-movable:before {
    margin-top: -15px
}

.simptip-position-bottom.simptip-movable:after {
    margin-top: -3px
}

.simptip-position-bottom.simptip-movable:hover:after,.simptip-position-bottom.simptip-movable:hover:before {
    -webkit-transform: translate(-50%,10px);
    -moz-transform: translate(-50%,10px);
    -ms-transform: translate(-50%,10px);
    -o-transform: translate(-50%,10px);
    transform: translate(-50%,10px)
}

.simptip-position-bottom.simptip-movable.half-arrow:before {
    margin-top: -10px
}

.simptip-position-bottom.half-arrow:before {
    margin-top: 0;
    border-top: 7px solid transparent
}

.simptip-position-top:after,.simptip-position-top:before {
    bottom: 100%
}

.simptip-position-top:before {
    margin-bottom: -5px
}

.simptip-position-top:after {
    margin-bottom: 7px
}

.simptip-position-top:hover:after,.simptip-position-top:hover:before {
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.simptip-position-top.simptip-movable:before {
    margin-bottom: -15px
}

.simptip-position-top.simptip-movable:after {
    margin-bottom: -3px
}

.simptip-position-top.simptip-movable:hover:after,.simptip-position-top.simptip-movable:hover:before {
    -webkit-transform: translate(-50%,-10px);
    -moz-transform: translate(-50%,-10px);
    -ms-transform: translate(-50%,-10px);
    -o-transform: translate(-50%,-10px);
    transform: translate(-50%,-10px)
}

.simptip-position-top.simptip-movable.half-arrow:before {
    margin-bottom: -10px
}

.simptip-position-top.half-arrow:before {
    margin-bottom: 0;
    border-bottom: 7px solid transparent
}

.simptip-movable:after,.simptip-movable:before {
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear
}

.simptip-smooth:after {
    -webkit-border-radius: 4px;
    border-radius: 4px
}

.simptip-fade:after,.simptip-fade:before {
    -webkit-transition: opacity .2s linear,visibility .2s linear;
    -moz-transition: opacity .2s linear,visibility .2s linear;
    -o-transition: opacity .2s linear,visibility .2s linear;
    -ms-transition: opacity .2s linear,visibility .2s linear;
    transition: opacity .2s linear,visibility .2s linear
}

.simptip-multiline:after {
    height: auto;
    width: 250px;
    padding: 11px;
    line-height: 19px;
    white-space: normal;
    text-align: left
}

.simptip-success.simptip-position-top:before {
    border-top-color: #62c462
}

.simptip-success.simptip-position-top:after {
    background-color: #62c462;
    color: #ecf0f1
}

.simptip-success.simptip-position-bottom:before {
    border-bottom-color: #62c462
}

.simptip-success.simptip-position-bottom:after {
    background-color: #62c462;
    color: #ecf0f1
}

.simptip-success.simptip-position-left:before {
    border-left-color: #62c462
}

.simptip-success.simptip-position-left:after {
    background-color: #62c462;
    color: #ecf0f1
}

.simptip-success.simptip-position-right:before {
    border-right-color: #62c462
}

.simptip-success.simptip-position-right:after {
    background-color: #62c462;
    color: #ecf0f1
}

.simptip-success.simptip-position-top.half-arrow:before {
    border-right: 7px solid #62c462
}

.simptip-success.simptip-position-bottom.half-arrow:before {
    border-right: 7px solid #62c462
}

.simptip-info.simptip-position-top:before {
    border-top-color: #ff0013
}

.simptip-info.simptip-position-top:after {
    background-color: #ff0013;
    color: #ecf0f1
}

.simptip-info.simptip-position-bottom:before {
    border-bottom-color: #ff0013
}

.simptip-info.simptip-position-bottom:after {
    background-color: #ff0013;
    color: #ecf0f1
}

.simptip-info.simptip-position-left:before {
    border-left-color: #ff0013
}

.simptip-info.simptip-position-left:after {
    background-color: #ff0013;
    color: #ecf0f1
}

.simptip-info.simptip-position-right:before {
    border-right-color: #ff0013
}

.simptip-info.simptip-position-right:after {
    background-color: #ff0013;
    color: #ecf0f1
}

.simptip-info.simptip-position-top.half-arrow:before {
    border-right: 7px solid #ff0013
}

.simptip-info.simptip-position-bottom.half-arrow:before {
    border-right: 7px solid #ff0013
}

.simptip-danger.simptip-position-top:before {
    border-top-color: #e74c3c
}

.simptip-danger.simptip-position-top:after {
    background-color: #e74c3c;
    color: #ecf0f1
}

.simptip-danger.simptip-position-bottom:before {
    border-bottom-color: #e74c3c
}

.simptip-danger.simptip-position-bottom:after {
    background-color: #e74c3c;
    color: #ecf0f1
}

.simptip-danger.simptip-position-left:before {
    border-left-color: #e74c3c
}

.simptip-danger.simptip-position-left:after {
    background-color: #e74c3c;
    color: #ecf0f1
}

.simptip-danger.simptip-position-right:before {
    border-right-color: #e74c3c
}

.simptip-danger.simptip-position-right:after {
    background-color: #e74c3c;
    color: #ecf0f1
}

.simptip-danger.simptip-position-top.half-arrow:before {
    border-right: 7px solid #e74c3c
}

.simptip-danger.simptip-position-bottom.half-arrow:before {
    border-right: 7px solid #e74c3c
}

.simptip-warning.simptip-position-top:before {
    border-top-color: #e67e22
}

.simptip-warning.simptip-position-top:after {
    background-color: #e67e22;
    color: #ecf0f1
}

.simptip-warning.simptip-position-bottom:before {
    border-bottom-color: #e67e22
}

.simptip-warning.simptip-position-bottom:after {
    background-color: #e67e22;
    color: #ecf0f1
}

.simptip-warning.simptip-position-left:before {
    border-left-color: #e67e22
}

.simptip-warning.simptip-position-left:after {
    background-color: #e67e22;
    color: #ecf0f1
}

.simptip-warning.simptip-position-right:before {
    border-right-color: #e67e22
}

.simptip-warning.simptip-position-right:after {
    background-color: #e67e22;
    color: #ecf0f1
}

.simptip-warning.simptip-position-top.half-arrow:before {
    border-right: 7px solid #e67e22
}

.simptip-warning.simptip-position-bottom.half-arrow:before {
    border-right: 7px solid #e67e22
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%
}

html {
    font-size: 16px!important
}

body {
    margin: 0;
    padding: 0;
    font-family: Sora,sans-serif;
    background: #fff;
    height: 100%;
    color: #34373e;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

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

blockquote,q {
    quotes: none
}

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

table {
    border-collapse: collapse;
    border-width: 0;
    padding: 0;
    margin: 0
}

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

input,textarea {
    color: #333;
    font-family: Sora,sans-serif;
    outline: 0;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-appearance: none
}

button,input[type=button],input[type=submit] {
    cursor: pointer
}

td {
    margin: 0;
    padding: 0
}

form {
    padding: 0;
    margin: 0
}

a {
    color: #ff0013;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    text-decoration: none;
    outline: 0;
    -webkit-tap-highlight-color: transparent
}

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

a:active,a:focus {
    color: #0c89c8
}

a,button,div,span {
    outline: 0!important
}

img {
    vertical-align: middle;
    max-width: 100%;
}

button,input[type=button],input[type=submit] {
    -webkit-appearance: none;
    outline: 0
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:after,:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.clearfix:after,.wrapper:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

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

[class*=" icon-"],[class^=icon-] {
    font-family: icomoon!important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-success:before {
    content: "\e906";
    color: #84e4a4
}

.icon-arrow_down:before {
    content: "\e900"
}

.icon-arrow_long:before {
    content: "\e901";
    color: #ff0013
}

.icon-attachment:before {
    content: "\e902"
}

.icon-canceled:before {
    content: "\e903";
    color: #ffb1b1
}

.icon-checked:before {
    content: "\e904"
}

.icon-close:before {
    content: "\e905"
}

.icon-delete:before {
    content: "\e90a"
}

.icon-done:before {
    content: "\e90b";
    color: #152a54
}

.icon-dots:before {
    content: "\e90c"
}

.icon-error_outline:before {
    content: "\e90d";
    color: #152a54
}

.icon-facebook:before {
    content: "\e90e"
}

.icon-filter:before {
    content: "\e90f"
}

.icon-gavel:before {
    content: "\e910"
}

.icon-google:before {
    content: "\e911"
}

.icon-grading:before {
    content: "\e912"
}

.icon-help_outline:before {
    content: "\e913"
}

.icon-inbox:before {
    content: "\e914"
}

.icon-monetization:before {
    content: "\e915"
}

.icon-play:before {
    content: "\e916"
}

.icon-right:before {
    content: "\e917";
    color: #fff
}

.icon-scatter_plot:before {
    content: "\e918"
}

.icon-send:before {
    content: "\e91a";
    color: #fff
}

.icon-settings:before {
    content: "\e91b"
}

.icon-time:before {
    content: "\e91c";
    color: #508d89
}

.icon-twitter:before {
    content: "\e91d"
}

.icon-upload:before {
    content: "\e91e"
}

.icon-view .path1:before {
    content: "\e91f";
    color: #6f737b
}

.icon-view .path2:before {
    content: "\e920";
    margin-left: -1em;
    color: #fff
}

.icon-youtube:before {
    content: "\e921"
}

.jq-checkbox {
    width: 16px;
    display: inline-block;
    height: 16px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid #ccc;
    margin-right: 11px;
    top: -2px
}

.jq-checkbox.checked {
    border-color: #39c
}

.jq-checkbox.checked .jq-checkbox__div {
    width: 8px;
    height: 8px;
    margin: 2px 0 0 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #39c
}

.jq-checkbox.disabled {
    opacity: .5
}

.jq-radio {
    width: 16px;
    display: inline-block;
    height: 16px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid #ccc;
    margin-right: 11px;
    top: -2px
}

.jq-radio.checked {
    border-color: #39c
}

.jq-radio.checked .jq-radio__div {
    width: 8px;
    height: 8px;
    margin: 2px 0 0 2px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #39c
}

.jq-radio.disabled {
    opacity: .5
}

.jq-file {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    background: #fff;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    height: 58px;
    border: 1px solid #c8e6f5;
    padding: 2px
}

.jq-file input {
    position: absolute;
    top: 0;
    right: 0;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    font-size: 100px;
    cursor: pointer;
    line-height: 1em
}

.jq-file__name {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    position: relative;
    padding: 14px 120px 14px 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 14px;
    color: #bebebe;
    line-height: 1.7;
    font-family: Sora,sans-serif;
    background: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.jq-file__browse {
    position: absolute;
    top: 2px;
    right: 2px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    height: 52px;
    padding: 5px 5px;
    font-family: Sora,sans-serif;
    text-align: center;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    width: 108px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ff0013;
    border: 1px solid transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.jq-file:hover .jq-file__browse {
    color: #fff;
    background: #38ade8
}

.jq-file:active .jq-file__browse {
    color: #fff;
    background: #0c89c8
}

.jq-file.focused .jq-file__browse {
    color: #fff;
    background: #0c89c8
}

.jq-file.disabled .jq-file__browse {
    color: #fff;
    background: #d7d7d7
}

.jq-file.changed .jq-file__name {
    color: #34373e
}

.jq-file.changed {
    border-color: #80c3e4
}

.jq-selectbox {
    vertical-align: middle;
    cursor: pointer;
    width: 100%
}

.jq-selectbox .placeholder {
    color: #34373e
}

.jq-selectbox__select {
    height: 58px;
    padding: 18px 35px 18px 18px;
    border: 1px solid #c8e6f5;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #fff;
    line-height: 20px;
    color: #34373e;
    font-size: 14px;
    z-index: 1;
    font-family: Sora,sans-serif
}

.jq-selectbox.error .jq-selectbox__select,.jq-selectbox.error.placeholder .jq-selectbox__select {
    border-color: #ffb1b1;
    color: #f77a68
}

.jq-selectbox.changed .jq-selectbox__select {
    border-color: #80c3e4
}

.jq-selectbox.disabled .jq-selectbox__select {
    border-color: #ccc;
    background: #f5f5f5;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #888
}

.jq-selectbox__select-text {
    display: block;
    width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.jq-selectbox__trigger {
    position: absolute;
    top: 0;
    right: 0
}

.jq-selectbox__trigger-arrow {
    position: absolute;
    top: 17px;
    right: 19px;
    width: 24px;
    height: 24px;
    background: url(../svg/arrow_down.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.jq-selectbox.opened .jq-selectbox__select {
    -webkit-border-radius: 12px 12px 0 0;
    border-radius: 12px 12px 0 0
}

.jq-selectbox.opened .jq-selectbox__trigger-arrow {
    background-image: url(../svg/arrow_down-rev.svg);
    top: 18px
}

.jq-selectbox__dropdown {
    overflow: hidden;
    top: 100%!important;
    padding: 16px 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 20px;
    left: 0;
    font-size: 14px;
    border: 1px solid #c8e6f5;
    background: #fff;
    margin-top: -3px;
    z-index: 1;
    -webkit-border-radius: 0 0 12px 12px;
    border-radius: 0 0 12px 12px
}

.jq-selectbox__search {
    margin: 5px
}

.jq-selectbox__search input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 5px 27px 6px 8px;
    outline: 0;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
    -webkit-box-shadow: inset 1px 1px #f1f1f1;
    box-shadow: inset 1px 1px #f1f1f1;
    color: #333;
    -webkit-appearance: textfield
}

.jq-selectbox__search input::-webkit-search-cancel-button,.jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none
}

.jq-selectbox__not-found {
    margin: 5px;
    padding: 5px 8px 6px;
    background: #f0f0f0;
    font-size: 13px
}

.jq-selectbox ul {
    margin: 0;
    padding: 0
}

.jq-selectbox li {
    min-height: 18px;
    padding: 7px 19px 7px 19px;
    line-height: 20px
}

.jq-selectbox li:hover {
    color: #38ade8
}

.jq-selectbox li.sel,.jq-selectbox li.selected {
    color: #38ade8
}

.jq-selectbox li.placeholder,.jq-selectbox.placeholder .jq-selectbox__select {
    color: #c2c2c2
}

.jq-selectbox li.placeholder {
    display: none!important
}

.jq-selectbox li.disabled {
    color: #ccc;
    background: 0 0
}

.jq-selectbox li.disabled:hover {
    background: 0 0
}

.jq-selectbox li.optgroup {
    font-weight: 700
}

.jq-selectbox li.optgroup:hover {
    background: 0 0;
    color: #231f20;
    cursor: default
}

.jq-selectbox li.option {
    padding-left: 25px
}

.header {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-order: 1;
    left: 0;
    right: 0;
    z-index: 150;
    top: 0;
    width: 100%;
    position: absolute
}

.header_cols {
    height: 101px;
    padding-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #c6cae0;
    position: relative
}

.header_logo {
    width: 290px;
    position: relative;
    z-index: 11
}

.header_logo a {
    font-size: 0;
    display: block
}

.header_nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header_nav ul li {
    margin: 0 30.5px 1px 0;
    position: relative
}

.header_nav ul li a {
    font-size: 16px;
    color: #34373e;
    line-height: 20px
}

.header_nav ul li a:hover {
    color: #38ade8
}

.header_nav ul li a:active,.header_nav ul li a:focus {
    color: #0c89c8
}

.header_nav ul li.active a {
    color: #38ade8
}

.header_nav ul ul {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    list-style: none
}

.header_nav ul ul li {
    margin: 0
}

.header_nav ul ul li a {
    padding: 10px 23px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    font-weight: 500;
    font-size: 12px;
    color: #000
}

.header_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header_lang {
    width: 70px;
    right: 200px;
    top: 34px;
    position: absolute;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #34373e;
    text-transform: uppercase;
    z-index: 6
}

.header_lang_opener {
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header_lang_opener:after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../svg/arrow_down.svg) no-repeat center
}

.header_lang_flag {
    margin: -3px 5px 0 6px;
    width: 18px;
    height: 18px
}

.header_lang .jq-selectbox__select {
    background: 0 0;
    border: none;
    height: 40px;
    padding: 5px 23px 5px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #34373e
}

.header_lang .jq-selectbox__trigger-arrow {
    right: 0;
    width: 18px;
    height: 18px;
    top: 11px
}

.header_lang .jq-selectbox.opened .jq-selectbox__trigger-arrow {
    top: 11px
}

.header_lang .jq-selectbox__select-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header_lang .jq-selectbox li {
    padding: 4px 22px 4px 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header_lang .jq-selectbox li:after,.header_lang .jq-selectbox__select-text:after {
    display: block;
    content: '';
    width: 18px;
    height: 18px;
    margin-top: -1px
}

.header_lang .jq-selectbox__dropdown {
    left: -20px;
    right: 0;
    padding: 5px 0 5px;
    font-size: 16px;
    font-weight: 600;
    width: auto;
    min-width: 100%
}

.header_btn {
    margin-left: 175px
}

.header_btn .btn {
    height: 52px;
    width: 149px;
    padding: 5px
}

.en .jq-selectbox__select-text:after,.jq-selectbox li.en:after {
    background: url(../svg/united-kingdom.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.ch .jq-selectbox__select-text:after,.jq-selectbox li.ch:after {
    background: url(../svg/china.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.de .jq-selectbox__select-text:after,.jq-selectbox li.de:after {
    background: url(../svg/germany.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.es .jq-selectbox__select-text:after,.jq-selectbox li.es:after {
    background: url(../svg/spain.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.br .jq-selectbox__select-text:after,.jq-selectbox li.br:after {
    background: url(../svg/brasilflag.png) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.fr .jq-selectbox__select-text:after,.jq-selectbox li.fr:after {
    background: url(../svg/france.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.it .jq-selectbox__select-text:after,.jq-selectbox li.it:after {
    background: url(../svg/italy.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.jp .jq-selectbox__select-text:after,.jq-selectbox li.jp:after {
    background: url(../svg/japan.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.jq-selectbox li.kr:after,.kr .jq-selectbox__select-text:after {
    background: url(../svg/south-korea.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.jq-selectbox li.ru:after,.ru .jq-selectbox__select-text:after {
    background: url(../svg/russia.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.jq-selectbox li.tr:after,.tr .jq-selectbox__select-text:after {
    background: url(../svg/turkey.svg) no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.header_opener {
    margin-left: auto;
    display: none;
    z-index: 50;
    height: 30px;
    width: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header_opener span {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    background: #34373e;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 24px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    height: 3px;
    display: block;
    margin: 0
}

.header_opener span:after,.header_opener span:before {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    content: '';
    background: #34373e;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    height: 3px;
    display: block;
    width: 100%;
    position: absolute
}

.header_opener span:before {
    top: 8px;
    right: 0
}

.header_opener span:after {
    bottom: 8px;
    left: 0
}

.header_opener.active span {
    background: 0 0
}

.header_opener.active span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.header_opener.active span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

@media screen and (max-width: 1199px) {
    .header_nav ul li {
        margin:0 22px 1px 0
    }

    .header_lang {
        right: 152px
    }

    .header_btn {
        margin-left: 105px
    }

    .header_btn .btn {
        width: 130px;
        z-index: 5
    }
}

@media screen and (max-width: 1023px) {
    .noscroll-tablet body {
        overflow:hidden
    }

    .header_cols {
        height: 65px;
        padding-top: 0;
        position: relative
    }

    .header.open .header_mob {
        left: 0
    }

    .header.open .header_cols:before {
        height: 85px;
        content: '';
        z-index: 5;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: -webkit-linear-gradient(top,#fff 0,#fff 51%,rgba(255,255,255,0) 100%);
        background: -webkit-gradient(linear,left top,left bottom,from(white),color-stop(51%,#fff),to(rgba(255,255,255,0)));
        background: -o-linear-gradient(top,#fff 0,#fff 51%,rgba(255,255,255,0) 100%);
        background: linear-gradient(to bottom,#fff 0,#fff 51%,rgba(255,255,255,0) 100%)
    }

    .header_opener {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .header_mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 70px 20px 20px;
        position: fixed;
        background: #fff;
        top: 0;
        height: 100%;
        overflow: auto;
        z-index: 1;
        width: 100%;
        left: 100%;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        text-align: center
    }

    .header_nav ul {
        display: block;
        text-align: center
    }

    .header_nav ul li {
        margin: 10px 0
    }

    .header_nav ul li a {
        font-size: 20px;
        line-height: 34px
    }

    .header_btn {
        margin-left: 0;
        margin-top: 20px
    }

    .header_btn .btn {
        width: 200px;
        z-index: 5
    }

    .header_lang {
        top: 13px;
        right: 50px
    }
}

@media screen and (max-width: 374px) {
    .header_lang {
        right:40px
    }
}

.footer {
    text-align: left;
    width: 100%;
    min-width: 320px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    background: #ebfdfd;
    -webkit-order: 3;
    position: relative
}

.footer_cols {
    padding: 70px 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer_cols_left {
    width: 410px
}

.footer_cols_right {
    width: 509px
}

.footer_copy {
    padding: 15px 20px;
    text-align: center;
    font-size: 12px;
    color: #34373e;
    background: #c8e6f5
}

.footer_logo {
    width: 85%;
    margin-bottom: 24px
}

.footer_logo a {
    display: block;
    font-size: 0
}

.footer_nav {
    margin: -5px 0 83px 9px
}

.footer_nav ul {
    list-style: none;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    max-width: 364px
}

.footer_nav ul li {
    margin-bottom: 13px
}

.footer_nav ul li a {
    color: #34373e
}

.footer_nav ul li a:hover {
    color: #38ade8
}

.footer_soc h4 {
    font-weight: 700
}

.footer_btn {
    margin: 27px 0 48px
}

.footer .form-control {
    font-weight: 600
}

.footer .form_group.filled {
    border-color: #c8e6f5
}

.soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.soc_item {
    font-size: 18px;
    width: 42px;
    height: 42px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 11px;
    background: #fff
}

@media screen and (max-width: 767px) {
    .footer_cols {
        display:block;
        padding: 50px 0
    }

    .footer_cols_left {
        width: 100%
    }

    .footer_cols_right {
        width: 100%
    }

    .footer_nav {
        margin: 50px 0 60px 0
    }
}

.discount {
    background: #131920;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    position: relative;
    padding: 11px 40px
}

.main-wrapper {
    padding: 0;
    min-width: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.wrapper {
    min-width: 320px;
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%
}

.wow {
    visibility: hidden
}

ol {
    list-style-position: inside
}

p {
    padding: 0 0 20px 0
}

.h1,h1 {
    font-size: 50px;
    line-height: 1.27;
    color: #152a54;
    padding: 0 0 19px 0;
    font-weight: 600
}

.h1 span,h1 span {
    color: #ff0013
}

.corn {
    position: relative;
    display: inline-block
}

.corn:before {
    content: '';
    position: absolute;
    border: .5px solid #ff0013;
    left: -5px;
    right: -5px;
    top: -1px;
    bottom: -1px;
    opacity: .5
}

.corn-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0
}

.corn-top:before {
    content: '';
    position: absolute;
    left: -5px;
    top: -1px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #ff0013;
    border-left: 2px solid #ff0013
}

.corn-top:after {
    content: '';
    position: absolute;
    right: -5px;
    top: -1px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #ff0013;
    border-right: 2px solid #ff0013
}

.corn-bot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0
}

.corn-bot:before {
    content: '';
    position: absolute;
    left: -5px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #ff0013;
    border-left: 2px solid #ff0013
}

.corn-bot:after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #ff0013;
    border-right: 2px solid #ff0013
}

.h2,h2 {
    font-size: 30px;
    line-height: 1.27;
    color: #152a54;
    padding: 0 0 20px 0;
    font-weight: 600;
    text-transform: capitalize
}

.h2 span,h2 span {
    color: #ff0013
}

.h3,h3 {
    font-size: 24px;
    line-height: 1.27;
    color: #152a54;
    padding: 0 0 23px 0;
    font-weight: 600
}

.h3 .corn:before,h3 .corn:before {
    left: -7px;
    right: -7px;
    top: -6px;
    bottom: -6px
}

.h3 .corn .corn-top:before,h3 .corn .corn-top:before {
    left: -7px;
    top: -6px
}

.h3 .corn .corn-top:after,h3 .corn .corn-top:after {
    right: -7px;
    top: -6px
}

.h3 .corn .corn-bot:before,h3 .corn .corn-bot:before {
    left: -7px;
    bottom: -6px
}

.h3 .corn .corn-bot:after,h3 .corn .corn-bot:after {
    right: -7px;
    bottom: -6px
}

.h4,h4 {
    font-size: 20px;
    line-height: 1.25;
    color: #152a54;
    padding: 0 0 20px 0;
    font-weight: 400
}

.h5,h5 {
    color: #152a54;
    font-weight: 600;
    padding: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.3
}

.h6,h6 {
    color: #152a54;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3
}

.aligncenter {
    display: block;
    margin: 0 auto
}

.alignleft {
    float: left
}

.alignright {
    float: right
}

.text-left {
    text-align: left!important
}

.text-center {
    text-align: center!important
}

.text-right {
    text-align: right!important
}

.nowrap {
    white-space: nowrap!important
}

.loaded .main-wrapper {
    visibility: hidden;
    opacity: 0
}

.icon-load {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background-color: #fff;
    z-index: 200
}

.loaded .icon-load {
    display: block
}

.content {
    min-width: 320px;
    text-align: left;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-order: 2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-grow: 1
}

.btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    vertical-align: middle;
    height: 56px;
    padding: 5px 23px;
    font-family: Sora,sans-serif;
    text-align: center;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #ff0013;
    border: 1px solid transparent;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.btn:hover {
    color: #fff;
    background: #38ade8
}

.btn:active,.btn:focus {
    color: #fff;
    background: #0c89c8
}

.btn.disabled,.btn:disabled {
    color: #fff;
    background: #d7d7d7
}

.btn img {
    min-width: 20px
}

.btn .icon-inbox {
    margin-left: 10px;
    font-size: 24px
}

.btn .icon-filter {
    margin-left: 10px;
    font-size: 24px
}

.btn_loader {
    width: 40px
}

.btn_txt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-bord {
    background: #fff;
    border: 1px solid #67d4c0;
    color: #37759e
}

.btn-bord_txt {
    background: -webkit-gradient(linear,left top,left bottom,from(#6ee0cf),to(#65d1bd));
    background: -webkit-linear-gradient(top,#6ee0cf 0,#65d1bd 100%);
    background: -o-linear-gradient(top,#6ee0cf 0,#65d1bd 100%);
    background: linear-gradient(180deg,#6ee0cf 0,#65d1bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.btn-bord:hover {
    color: #37759e;
    background: #f3fffd
}

.btn-bord:active,.btn-bord:focus {
    color: #37759e;
    background: #e3fffa
}

.btn-bord.disabled,.btn-bord:disabled {
    background: #f7fcff;
    border-color: #d7d7d7;
    color: #d7d7d7
}

.btn-hid {
    display: none
}

.btn-arr:before {
    height: 26px;
    margin-top: -13px;
    position: absolute;
    content: '';
    left: 9px;
    right: 4px;
    top: 100%;
    background: #cbf3ff;
    -webkit-filter: blur(30px);
    filter: blur(30px)
}

.btn-arr .icon-right {
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    width: 24px;
    height: 24px;
    position: relative;
    line-height: 1
}

.btn-arr .icon-right:after {
    content: '';
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,.2);
    top: 2px;
    left: 2px
}

.btn-arr.disabled:before,.btn-arr:disabled:before {
    background: #f8f8f8
}

.btn-black {
    color: #fff;
    background: #292727
}

.form_row {
    margin-bottom: 16px
}

.form_label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    padding: 0 0 16px 0;
    color: #152a54
}

.form_cols {
    margin-left: -20px;
    margin-right: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.form_cols_item {
    width: 33.33%;
    padding: 0 20px
}

.form_cols_left {
    padding: 0 20px;
    width: 50%;
    max-width: 486px
}

.form_cols_right {
    padding: 0 20px;
    width: 49%;
    max-width: 452px;
    margin-left: auto
}

.form_btn {
    text-align: right
}

label.error {
    font-size: 1.4rem;
    position: absolute;
    color: #b50000;
    top: 100%;
    left: 2rem;
    right: 0;
    line-height: 1.6rem;
    font-weight: 300
}

.form-control {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    position: relative;
    padding: 10px 20px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 58px;
    font-size: 14px;
    color: #34373e;
    line-height: 1.7;
    font-family: Sora,sans-serif;
    background: 0 0;
    border: 1px solid #c8e6f5;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.form-control.filled {
    border-color: #80c3e4
}

.form-control.error {
    border-color: #ffb1b1
}

textarea.form-control {
    height: 294px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    resize: none
}

.form-control::-webkit-input-placeholder {
    color: #c2c2c2;
    opacity: 1
}

.form-control:-moz-placeholder {
    color: #c2c2c2;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #c2c2c2;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #c2c2c2;
    opacity: 1
}

.form_group {
    position: relative;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    background: #fff;
    height: 58px;
    border: 1px solid #c8e6f5;
    padding: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.form_group .form-control {
    height: 52px;
    border: none;
    padding: 14px 18px;
    text-align: left;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.form_group .btn {
    height: 52px;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.form_group.filled {
    border-color: #80c3e4
}

.form_group.error {
    border-color: #ffb1b1
}

.form_group.error .form-control {
    color: #f77a68
}

.form_group.error .form-control::-webkit-input-placeholder {
    color: #f77a68
}

.form_group.error .form-control:-moz-placeholder {
    color: #f77a68
}

.form_group.error .form-control::-moz-placeholder {
    color: #f77a68
}

.form_group.error .form-control:-ms-input-placeholder {
    color: #f77a68
}

.form_group.error .btn {
    background: #ffb1b1
}

span.error {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    color: #f32a0e;
    text-align: left
}

.form_inp {
    position: relative
}

.form_inp.error {
    margin-bottom: 15px
}

.error .form-control {
    color: #f77a68;
    border-color: #ffb1b1
}

.error .form-control::-webkit-input-placeholder {
    color: #f77a68
}

.error .form-control:-moz-placeholder {
    color: #f77a68
}

.error .form-control::-moz-placeholder {
    color: #f77a68
}

.error .form-control:-ms-input-placeholder {
    color: #f77a68
}

.filled .form-control {
    border-color: #80c3e4
}

.form_block {
    margin-bottom: 32px
}

.form_block:last-child {
    margin-bottom: 0
}

.form_group-upload .form-control {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: url(../img/file.png) no-repeat 17px center;
    -webkit-background-size: 14px 14px;
    background-size: 14px;
    font-weight: 400;
    padding-left: 41px
}

.form_group-upload .form-control .placeholder {
    color: #bebebe;
    font-size: 14px
}

.help {
    font-size: 24px;
    margin: 0 0 0 6px;
    display: inline-block;
    vertical-align: middle;
    line-height: 0
}

.form_block-unicode {
    margin-top: 40px
}

.form_block-unicode .form-control {
    max-width: 312px
}

.btn-addaddr {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0 41px
}

.range_fl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: none
}

.range_fl .form_inp {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 16px 0 18px;
    max-width: 717px
}

.range_fl .form_inp.error {
    margin-bottom: 15px
}

.range_fl.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.range_fl .range_val1 {
    background: #b89898
}

.range_fl .range_val2 {
    background: #b8b598
}

.range_fl .range_val3 {
    background: rgba(92,94,137,.6)
}

.range_fl .range_val4 {
    background: rgba(151,90,149,.6)
}

.range_fl .range_val5 {
    background: rgba(95,139,177,.6)
}

.range_fl .range_val6 {
    background: rgba(75,133,93,.6)
}

.range_fl .range_val7 {
    background: rgba(151,88,43,.6)
}

.range_fl .range_val8 {
    background: rgba(60,108,90,.6)
}

.range_val {
    background: #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    width: 205px;
    height: 54px;
    font-weight: 600;
    font-size: 16px;
    line-height: 54px;
    text-align: center
}

.range_val_time {
    color: #152a54;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden
}

.range_val_pers {
    background: #ccc;
    color: #fff;
    width: 86px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    min-width: 86px
}

.range_val1.noUi-connect {
    background: #b15f5f
}

.range_val1.noUi-handle {
    border-color: #b15f5f
}

.range_val1 .range_val_pers {
    background: #b15f5f
}

.range_val2.noUi-connect {
    background: #a59d54
}

.range_val2.noUi-handle {
    border-color: #a59d54
}

.range_val2 .range_val_pers {
    background: #a59d54
}

.range_val3.noUi-connect {
    background: #5c5e89
}

.range_val3.noUi-handle {
    border-color: #5c5e89
}

.range_val3 .range_val_pers {
    background: #5c5e89
}

.range_val4.noUi-connect {
    background: #975a95
}

.range_val4.noUi-handle {
    border-color: #975a95
}

.range_val4 .range_val_pers {
    background: #975a95
}

.range_val5.noUi-connect {
    background: #5f8bb1
}

.range_val5.noUi-handle {
    border-color: #5f8bb1
}

.range_val5 .range_val_pers {
    background: #5f8bb1
}

.range_val6.noUi-connect {
    background: #4b855d
}

.range_val6.noUi-handle {
    border-color: #4b855d
}

.range_val6 .range_val_pers {
    background: #4b855d
}

.range_val7.noUi-connect {
    background: #97582b
}

.range_val7.noUi-handle {
    border-color: #97582b
}

.range_val7 .range_val_pers {
    background: #97582b
}

.range_val8.noUi-connect {
    background: #3c6c5a
}

.range_val8.noUi-handle {
    border-color: #3c6c5a
}

.range_val8 .range_val_pers {
    background: #3c6c5a
}

.range_slider {
    margin: 4px 0 28px
}

.btn-addaddr.hid {
    display: none
}

.range_adressess.single .link-remove {
    opacity: 0;
    visibility: hidden
}

.link-remove {
    height: 54px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    color: #152a54;
    line-height: 0
}

.link-remove.hid {
    opacity: 0;
    visibility: hidden
}

#slider-range1 {
    background: #a59d54
}

.checks_item {
    color: #222;
    padding: 0 0 20px;
    color: #6f737b
}

.checks_item label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
    position: relative
}

.checks_item input[type=checkbox] {
    position: absolute
}

.checks_item_txt {
    padding-left: 48px;
    position: relative
}

.checks_item_txt:before {
    width: 30px;
    height: 30px;
    border: 2px solid #cceefc;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px
}

.checks_item_txt b {
    color: #152a54
}

.checks_item_txt a {
    text-decoration: underline;
    font-weight: 700
}

.checks_item_txt a:hover {
    text-decoration: none
}

.checks_item input:checked+.checks_item_txt:before {
    background: url(../svg/check.svg) no-repeat center #cceefc;
    -webkit-background-size: 20px 20px;
    background-size: 20px
}

.m-show {
    display: none
}

.js-bg {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat
}

.bg-light {
    background: -webkit-gradient(linear,left top,left bottom,from(#faffff),to(#fff));
    background: -webkit-linear-gradient(top,#faffff 0,#fff 100%);
    background: -o-linear-gradient(top,#faffff 0,#fff 100%);
    background: linear-gradient(180deg,#faffff 0,#fff 100%)
}

.bg-sky {
    background: -webkit-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#e7fdfc 100%);
    background: -o-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#e7fdfc 100%);
    background: radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#e7fdfc 100%)
}

.section {
    padding: 100px 0
}

.section_title {
    text-align: center
}

.section_txt {
    font-size: 20px;
    line-height: 25px;
    color: #6f737b
}

.section_cats {
    margin: 0 -5px 10px;
    font-size: 0
}

.section_cats_item {
    text-transform: capitalize;
    background: #e6fffd;
    margin: 0 5px 10px;
    color: #508d89;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.section_btn {
    text-align: center
}

.link-play {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.link-play:disabled {
    color: #d7d7d7
}

.link-play .icon-play {
    font-size: 15px;
    margin-right: 20px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    background: #e4f6fe;
    width: 52px;
    min-width: 52px;
    height: 52px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.icon-play {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

a:hover .icon-play {
    background: #e4f6fe
}

a:active .icon-play,a:focus .icon-play {
    background: #cfeffd
}

a:disabled .icon-play {
    background: #f7fcff
}

.bg-img {
    position: absolute;
    z-index: 0
}

.section-welcome {
    position: relative;
    padding: 163px 0 100px;
    background: -webkit-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#e7fdfc 100%);
    background: -o-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#e7fdfc 100%);
    background: radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#e7fdfc 100%)
}

.welcome {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.welcome_img {
    width: 49.55%;
    text-align: center;
    margin-bottom: 27px;
    position: relative
}

.welcome_img:before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    bottom: -5%;
    left: -5%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 54px #fff;
    box-shadow: 0 0 54px #fff;
    background: -webkit-radial-gradient(center,ellipse cover,#fff 0,rgba(255,255,255,.9) 62%,rgba(255,255,255,0) 90%);
    background: -webkit-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.9) 62%,rgba(255,255,255,0) 90%);
    background: -o-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.9) 62%,rgba(255,255,255,0) 90%);
    background: radial-gradient(ellipse at center,#fff 0,rgba(255,255,255,.9) 62%,rgba(255,255,255,0) 90%)
}

.welcome_img_in {
    position: relative;
    width: 551px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    max-width: 100%;
    margin: 0 auto
}

.welcome_img img {
    width: 551px
}

.welcome_img video {
    position: absolute;
    top: 1px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 551px;
    height: 100%;
    max-width: 100%
}

.welcome_cont {
    width: 47%;
    margin-bottom: 8px
}

.welcome_txt {
    margin-bottom: 20px;
    max-width: 500px;
    color: #6f737b
}

.welcome_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.welcome_btn .btn {
    margin-right: 30px
}

.welcome .h1,.welcome h1 {
    margin: 21px 0 0 6px
}

.bg-img1 {
    width: 302px;
    top: 0;
    left: 0
}

.bg-img2 {
    width: 169px;
    top: 0;
    right: 0
}

.section-logos {
    z-index: 2;
    height: 134px;
    background: #fff;
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    overflow: hidden;
    position: relative
}

.logos_slider .swiper-slide {
    width: auto
}

.logos_slider_img {
    margin: 30px 42.5px;
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.logos_slider_img img {
    max-height: 100%;
    height: 100px
}

.section-coins {
    position: relative;
    overflow: hidden
}

.section-coins .wrapper {
    max-width: 1046px
}

.coins {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    margin: 30px -20px 50px;
    position: relative
}

.coins_item {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    z-index: 1;
    margin: 20px;
    position: relative;
    width: calc(25% - 40px);
    padding: 53px 0 0;
    height: 220px;
    background: #fff;
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.coins_item_icon {
    height: 107px;
    width: 121px;
    margin: 0 auto 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.coins_item_bg {
    max-height: 100%
}

.coins_item_sign {
    height: 94px;
    position: absolute;
    left: 15px;
    top: 4px
}

.coins_item_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #152a54
}

.coins_item_soon {
    background: #eff8fe;
    position: absolute;
    top: 10px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    color: #ff0013;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 4px 16px
}

.coins a:hover {
    -webkit-box-shadow: 5px 18px 45px rgba(0,0,0,.1);
    box-shadow: 5px 18px 45px rgba(0,0,0,.1);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.coins:before {
    z-index: 0;
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -420px;
    width: 255px;
    height: 251px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.coins:after {
    z-index: 0;
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    margin-left: 132px;
    width: 255px;
    height: 251px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.bg-img3 {
    width: 211px;
    top: -232px;
    left: 0
}

.bg-img4 {
    width: 255px;
    top: 30px;
    right: 50%;
    margin-right: -918px;
    -webkit-transform: rotate(80.91deg);
    -ms-transform: rotate(80.91deg);
    transform: rotate(80.91deg)
}

.bg-img5 {
    width: 235px;
    bottom: -367px;
    right: 0
}

.section-piqs {
    position: relative
}

.piqs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 1px -40px -40px
}

.piqs_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    margin: 40px;
    width: calc(50% - 80px);
    -webkit-box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    -webkit-border-radius: 12px;
    border-radius: 12px;
    padding: 30px
}

.piqs_item_icon {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    min-width: 100px
}

.piqs_item_icon img {
    max-height: 100%
}

.piqs_item_cont {
    padding-left: 18px
}

.piqs_item_title {
    margin: 0 0 9px;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #152a54
}

.piqs_item_txt {
    margin-left: 3px;
    max-width: 410px;
    color: #6f737b
}

.bg-img6 {
    width: 255px;
    top: 0;
    left: 0
}

.bg-img7 {
    width: 259px;
    top: 0;
    right: 0
}

.section-about {
    position: relative;
    overflow: hidden
}

.about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.about_left {
    width: 47%
}

.about_right {
    width: 49.2%
}

.about_txt {
    color: #6f737b;
    max-width: 350px
}

.about_item {
    margin-top: 54px;
    padding-bottom: 10.5px;
    position: relative;
    z-index: 2
}

.about_item_title {
    padding: 0 0 23px 7px;
    text-transform: capitalize
}

.about_item_txt {
    color: #6f737b;
    max-width: 566px
}

.about_img {
    position: relative;
    max-width: 538px;
    margin-top: 69px;
    margin-bottom: 65px
}

.about_img:before {
    z-index: 0;
    content: '';
    position: absolute;
    top: -13px;
    right: 52px;
    width: 107px;
    height: 59px;
    background: url(../svg/back2.svg) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.about_img:after {
    z-index: 0;
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 255px;
    height: 251px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.about_video {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 30px;
    border-radius: 30px
}

.about_video:before {
    content: '';
    display: block;
    padding-bottom: 74.8%;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    z-index: 1;
    position: relative;
    background: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));
    background: -webkit-linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,.2));
    background: -o-linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,.2));
    background: linear-gradient(0deg,rgba(0,0,0,.2),rgba(0,0,0,.2))
}

.about_video_cover {
    -webkit-border-radius: 30px;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0
}

.about_video .icon-play {
    z-index: 2;
    margin: -28px 0 0 -28px;
    background: rgba(255,255,255,.71);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.about_video_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 4;
    position: absolute;
    -webkit-box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    right: 26px;
    bottom: -37px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: #70e4cd;
    height: 60px;
    padding: 10px 9px 10px 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 170%;
    color: #fff
}

.about_video_title .pattern3 {
    margin-right: 10px
}

.about_video .pattern1 {
    z-index: 2;
    position: absolute;
    top: -31px;
    left: 40px
}

.about_video .pattern2 {
    z-index: 2;
    position: absolute;
    bottom: -11px;
    left: 22px
}

.pattern1 {
    width: 60px;
    height: 60px;
    background: #eff8fe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    -webkit-border-radius: 6px;
    border-radius: 6px
}

.pattern2 {
    width: 69px;
    height: 45px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 0 2px 6px 0
}

.pattern3 {
    width: 40px;
    height: 40px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    box-shadow: 2px 4px 22px -6px rgba(67,74,82,.36);
    -webkit-border-radius: 8px;
    border-radius: 8px
}

.bg-img8 {
    width: 457px;
    bottom: -425px;
    right: 0
}

.section-how {
    position: relative;
    overflow: hidden
}

.acc {
    position: relative;
    margin: 49px 0 0 0;
    min-height: 492px
}

.acc_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 550px;
    margin-bottom: 39px
}

.acc_item:last-child {
    margin-bottom: 0
}

.acc_item:last-child .acc_item_cont:before {
    display: none
}

.acc_item_num {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    margin: 8px;
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0 0 0 8px #ebf9ff;
    box-shadow: 0 0 0 8px #ebf9ff;
    border: 8px solid #c3ebff;
    background: #9fdfff;
    min-width: 42px;
    width: 42px;
    height: 42px;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.acc_item_cont {
    position: relative;
    padding-left: 19px
}

.acc_item_cont:before {
    content: '';
    position: absolute;
    left: -30px;
    width: 2px;
    top: 30px;
    bottom: -60px;
    background: #c8e6f5
}

.acc_item_title {
    color: #152a54;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    padding: 16px 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    cursor: pointer
}

.acc_item_title:hover {
    color: #ff0013
}

.acc_item_txt {
    display: none;
    color: #6f737b;
    margin-bottom: -9px;
    margin-top: -5px;
    max-width: 400px
}

.acc_item_img {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    opacity: 0;
    z-index: 0;
    position: absolute;
    top: -7px;
    right: 3.65%;
    height: 500px;
    width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.acc_item_img img {
    max-height: 100%
}

.acc_item.open .acc_item_num {
    background: #ff0013
}

.acc_item.open .acc_item_title {
    color: #ff0013;
    font-size: 24px;
    line-height: 30px;
    padding: 14px 0
}

.acc_item.open .acc_item_img {
    opacity: 1;
    z-index: 3
}

.anon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    margin: 30px -20px 44px
}

.anon_item {
    width: 290px;
    margin: 20px;
    position: relative;
    z-index: 2
}

.anon_item_img {
    margin-bottom: 26px;
    height: 250px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.anon_item_img img {
    max-height: 87.2%;
    max-width: 90.4%
}

.anon_item_title {
    max-width: 250px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 20px;
    color: #152a54;
    line-height: 1.5
}

.anon_item_txt {
    color: #6f737b;
    max-width: 192px;
    margin: 14px auto 0
}

.anon:before {
    z-index: 0;
    content: '';
    position: absolute;
    top: 21px;
    left: 50%;
    margin-left: -417px;
    width: 255px;
    height: 251px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.anon:after {
    z-index: 0;
    content: '';
    position: absolute;
    top: 98px;
    left: 50%;
    margin-left: 93px;
    width: 255px;
    height: 251px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.section-why {
    padding: 70px 0;
    position: relative;
    overflow: hidden
}

.why {
    margin: 3px auto 0;
    max-width: 910px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.why_item {
    width: 400px;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.why_item_img {
    overflow: hidden;
    margin-top: auto;
    max-width: 350px;
    height: 150px;
    background: #fff;
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    -webkit-border-radius: 16px;
    border-radius: 16px
}

.why_item_title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #152a54
}

.why_item_txt {
    color: #6f737b;
    margin-bottom: 20px
}

.bg-img10 {
    width: 249px;
    top: 0;
    left: 0
}

.bg-img11 {
    width: 120px;
    top: 0;
    right: 0
}

.section-articles {
    position: relative
}

.section-articles .section_title {
    text-align: left
}

.section-articles .section_btn {
    position: absolute;
    right: 20px;
    top: 86px
}

.section-articles .articles {
    margin-bottom: -24px
}

.articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -65px 16px 0;
    position: relative
}

.articles:before {
    z-index: 0;
    content: '';
    position: absolute;
    top: 99px;
    left: 50%;
    margin-left: -599px;
    width: 359px;
    height: 352px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.articles:after {
    z-index: 0;
    content: '';
    position: absolute;
    top: 294px;
    left: 50%;
    margin-left: 146px;
    width: 293px;
    height: 287px;
    background: url(../img/back1.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain
}

.articles_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(33.33% - 65px);
    z-index: 2;
    position: relative;
    overflow: hidden;
    margin: 41px 65px 24px 0;
    background: #fff;
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.articles_item_img {
    -webkit-border-radius: 12px 12px 0 0;
    border-radius: 12px 12px 0 0;
    position: relative
}

.articles_item_img:before {
    content: '';
    display: block;
    padding-bottom: 59%
}

.articles_item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.articles_item_date {
    font-size: 14px;
    padding: 4px 14px;
    line-height: 18px;
    color: #508d89;
    background: #d1ffe6;
    top: 20px;
    left: 20px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    position: absolute
}

.articles_item_cont {
    min-height: 320px;
    padding: 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.articles_item_title {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    margin-bottom: 14px;
    margin-top: 1px;
    color: #152a54;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px
}

.articles_item_title a {
    color: currentColor
}

.articles_item_txt {
    max-width: 400px;
    color: #6f737b;
    margin-bottom: 20px
}

.articles_item_bot {
    margin-bottom: -3px;
    margin-top: auto;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.articles_item_time {
    color: #508d89;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.articles_item_time [class*=" icon-"],.articles_item_time [class^=icon-] {
    margin-right: 5px
}

.articles_item_views {
    color: #6f737b;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.articles_item_views [class*=" icon-"],.articles_item_views [class^=icon-] {
    font-size: 18px;
    margin-left: 5px
}

.articles_item:hover .articles_item_title {
    color: #38ade8
}

.bg-img12 {
    width: 255px;
    top: 112px;
    right: -126px;
    -webkit-transform: rotate(80.91deg);
    -ms-transform: rotate(80.91deg);
    transform: rotate(80.91deg)
}

.link-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3
}

.sorting {
    margin-bottom: -1px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 3
}

.sorting_item {
    width: 200px
}

.sorting .jq-selectbox__select {
    padding-top: 19px;
    height: 58px;
    padding-left: 0;
    color: #31364f;
    font-size: 16px;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-width: 0 0 1px 0;
    border-color: #d3d3d3
}

.sorting .jq-selectbox__dropdown {
    margin-top: 0;
    color: #6f737b;
    font-size: 14px;
    line-height: 18px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    left: -15px;
    width: calc(100% + 30px);
    padding: 8px 15px
}

.sorting .jq-selectbox li {
    line-height: 18px;
    padding: 8px 0 8px 0
}

.sorting .jq-selectbox li.sel,.sorting .jq-selectbox li.selected {
    background: 0 0;
    color: #38ade8
}

.sorting .jq-selectbox__trigger-arrow {
    top: 17px;
    right: 0
}

.sorting .jq-selectbox.opened .jq-selectbox__trigger-arrow {
    background-image: url(../svg/arrow_down.svg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.search {
    position: relative;
    width: 310px
}

.search_inp {
    font-weight: 400;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-width: 0 0 1px 0;
    padding: 10px 40px 10px 0;
    border-color: #d3d3d3;
    font-size: 16px
}

.search_btn {
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    cursor: pointer;
    background: 0 0
}

.search .form-control::-webkit-input-placeholder {
    color: #6f737b;
    opacity: 1
}

.search .form-control:-moz-placeholder {
    color: #6f737b;
    opacity: 1
}

.search .form-control::-moz-placeholder {
    color: #6f737b;
    opacity: 1
}

.search .form-control:-ms-input-placeholder {
    color: #6f737b;
    opacity: 1
}

.section-revs {
    padding: 81px 0 80px
}

.section-revs .section_txt {
    margin: 1px auto 0;
    max-width: 515px;
    line-height: 170%
}

.revs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 0 -65px 0 0
}

.revs_item {
    margin: 61px 65px 58px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(33.33% - 65px);
    position: relative;
    background: #fff;
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    padding: 20px;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.revs_item:before {
    content: '“';
    position: absolute;
    top: -17px;
    left: 10px;
    color: #ff0013;
    font-weight: 600;
    font-size: 65px;
    line-height: 1
}

.revs_item:after {
    content: '”';
    position: absolute;
    bottom: -50px;
    right: 10px;
    color: #ff0013;
    font-weight: 600;
    font-size: 65px;
    line-height: 1
}

.revs_item_txt {
    max-width: 330px;
    color: #6f737b;
    margin: 10px 0 0 10px
}

.revs_item_bot {
    max-width: 330px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #dcdde4;
    padding-top: 20px;
    margin-top: 47px
}

.revs_item_ava {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #eff8fe;
    padding: 9px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    margin-right: 10px;
    min-width: 56px
}

.revs_item_ava img {
    max-height: 100%
}

.revs_item_name {
    color: #152a54;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px
}

.section-offer {
    position: relative
}

.offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.offer_cont {
    width: 420px;
    margin-top: 18px
}

.offer_txt {
    color: #6f737b;
    margin: 1px 0 40px
}

.offer_img {
    width: 573px;
    text-align: center;
    margin-right: 2.9%;
    margin-bottom: 35px
}

.offer .h2,.offer h2 {
    padding-left: 6px
}

.offer .h2 .corn:before,.offer h2 .corn:before {
    left: -7px;
    right: -7px
}

.offer .h2 .corn-top:before,.offer h2 .corn-top:before {
    left: -7px
}

.offer .h2 .corn-top:after,.offer h2 .corn-top:after {
    right: -7px
}

.offer .h2 .corn-bot:before,.offer h2 .corn-bot:before {
    left: -7px
}

.offer .h2 .corn-bot:after,.offer h2 .corn-bot:after {
    right: -7px
}

.bg-img13 {
    width: 293px;
    top: 194px;
    left: 50%;
    margin-left: -979px
}

.bg-img14 {
    width: 926px;
    top: 404px;
    top: 59.3%;
    left: 50%;
    margin-left: -720px
}

.section-welcomewhy {
    padding: 158px 0 100px
}

.section-welcomewhy .welcome {
    margin-bottom: 0
}

.section-welcomewhy .welcome_img {
    margin-bottom: 0;
    width: 52%
}

.section-welcomewhy .welcome_img:before {
    display: none
}

.section-welcomewhy .welcome_cont {
    margin-bottom: 77px
}

.section-welcomewhy .piqs-inline {
    margin: -58px auto -73px
}

.piqs-inline {
    padding: 0 37px;
    z-index: 2;
    position: relative;
    max-width: 1084px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255,255,255,.75);
    -webkit-box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    -webkit-border-radius: 12px;
    border-radius: 12px;
    height: 163px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.piqs-inline .piqs_item {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    background: 0 0;
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.piqs-inline .piqs_item_icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: 12px auto 21px
}

.piqs-inline .piqs_item_title {
    font-size: 16px;
    line-height: 20px
}

.piqs-inline .piqs_item_cont {
    padding: 0
}

.section-crypt {
    position: relative;
    overflow: hidden
}

.crbg-img1 {
    top: -47px;
    left: 0;
    width: 393px
}

.crbg-img2 {
    bottom: -677px;
    right: 0;
    width: 353px
}

.crbg-img3 {
    top: 127px;
    right: 50%;
    margin-right: -831px;
    width: 283px
}

.crypt_txt {
    margin: 0 auto 80px;
    color: #6f737b;
    max-width: 640px;
    text-align: center
}

.scenarios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.scenarios_slider {
    margin: 30px 0 0
}

.scenarios_slider .swiper-button-next,.scenarios_slider .swiper-button-prev {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 75px;
    right: auto;
    top: 100%;
    left: 100%;
    margin-left: -75px;
    margin-top: -88px
}

.scenarios_slider .swiper-button-next .icon-right,.scenarios_slider .swiper-button-prev .icon-right {
    margin: 0 2px 0 12px
}

.scenarios_slider .swiper-button-prev {
    left: 50.7%;
    margin-left: 0
}

.scenarios_slider .swiper-button-prev .icon-right {
    margin: 0 12px 0 2px
}

.scenarios_slider .swiper-button-next {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.scenarios_cont {
    width: 49.25%;
    padding-bottom: 96px
}

.scenarios_cont ol {
    margin-top: 17px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px
}

.scenarios_img {
    margin-bottom: -2px;
    width: 588px;
    width: 47%;
    height: 588px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.scenarios_img img {
    max-height: 100%
}

.list-nums {
    list-style: none;
    counter-reset: counter
}

.list-nums li {
    min-height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-transform: capitalize;
    padding: 0 0 0 62px;
    margin-bottom: 38px;
    counter-increment: counter
}

.list-nums li:before {
    top: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: counter(counter);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 52px;
    height: 52px;
    background: #c3ebff;
    ont-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0
}

.section-info {
    position: relative;
    overflow: hidden;
    padding: 156px 0
}

.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.info_cont {
    padding-right: 5.3%;
    margin-top: 20px
}

.info_img {
    width: 588px;
    text-align: center;
    min-width: 45.233%;
    position: relative
}

.info_img-video {
    position: relative
}

.info_img-video:before {
    content: '';
    display: block;
    padding-bottom: 93.535%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 30px #fff;
    box-shadow: 0 0 30px #fff;
    background: -webkit-radial-gradient(center,ellipse cover,#fff 0,rgba(255,255,255,.95) 65%,rgba(255,255,255,0) 77%);
    background: -webkit-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.95) 65%,rgba(255,255,255,0) 77%);
    background: -o-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.95) 65%,rgba(255,255,255,0) 77%);
    background: radial-gradient(ellipse at center,#fff 0,rgba(255,255,255,.95) 65%,rgba(255,255,255,0) 77%)
}

.info_img-video video {
    position: absolute;
    top: 9%;
    left: 9%;
    width: 82%;
    height: 82%
}

.info_txt {
    margin-top: 3px;
    color: #6f737b
}

.info h2 {
    min-height: 62px
}

.info_btn {
    margin: 20px 0 22px
}

.info_vid {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 30px #fff;
    box-shadow: 0 0 30px #fff
}

.inbg-img1 {
    top: 0;
    left: 0;
    width: 694px
}

.inbg-img2 {
    bottom: 0;
    right: 0;
    width: 384px
}

.inbg-img3 {
    top: 218px;
    left: 50%;
    margin-left: -789px;
    width: 255px
}

.inbg-img4 {
    bottom: -95px;
    left: 50%;
    margin-left: -599px;
    width: 203px
}

.inbg-img5 {
    top: 0;
    left: 50%;
    margin-left: -500px;
    width: 753px
}

.inbg-img6 {
    bottom: 0;
    right: 0;
    width: 176px
}

.inbg-img7 {
    bottom: 64px;
    left: 50%;
    margin-left: -756px;
    width: 218px
}

.inbg-img8 {
    bottom: -84px;
    left: 50%;
    margin-left: -287px;
    width: 203px
}

.section-qualit {
    position: relative;
    overflow: hidden
}

.qualit {
    min-height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.qualit_cont {
    width: 49.25%;
    padding-top: 21px
}

.qualit_img {
    text-align: center;
    width: 461px
}

.qualit_txt {
    margin-top: 3px;
    color: #6f737b
}

.qualit h2 {
    min-height: 62px
}

.qbg-img1 {
    bottom: -1060px;
    right: 0;
    width: 683px
}

.qbg-img2 {
    top: 104px;
    right: -70px;
    width: 203px
}

.qbg-img3 {
    left: -94px;
    bottom: -37px;
    width: 267px
}

.section-head {
    padding: 156px 0 65px;
    position: relative;
    overflow: hidden;
    text-align: center
}

.section-head .join_form {
    margin: 19px auto 0;
    max-width: 530px
}

.section-head .section_txt {
    margin: 1px auto 0;
    max-width: 490px;
    line-height: 170%
}

.section-head .section_btn {
    margin-top: 19px
}

.section-head .section_title:last-child .section_txt:last-child {
    margin-bottom: -2px
}

.section-head .section_title:last-child .section_txt:last-child p {
    padding-bottom: 0
}

.section-head .more_link {
    text-align: left;
    width: 100%;
    max-width: 532px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.head_txt {
    color: #6f737b;
    max-width: 660px;
    margin: 0 auto
}

.headbg-img1 {
    width: 275px;
    top: 151px;
    left: -109px
}

.headbg-img2 {
    width: 275px;
    top: 323px;
    right: -80px
}

.headbg-img3 {
    width: 309px;
    left: -128px;
    top: 135px;
    -webkit-transform: rotate(-106deg);
    -ms-transform: rotate(-106deg);
    transform: rotate(-106deg)
}

.headbg-img4 {
    width: 339px;
    right: -120px;
    top: 133px
}

.headbg-img5 {
    width: 263px;
    -webkit-transform: rotate(202deg);
    -ms-transform: rotate(202deg);
    transform: rotate(202deg);
    left: 77px;
    top: 195px
}

.headbg-img6 {
    width: 263px;
    -webkit-transform: rotate(202deg);
    -ms-transform: rotate(202deg);
    transform: rotate(202deg);
    right: -104px;
    top: 109px
}

.headbg-img7 {
    width: 258px;
    -webkit-transform: rotate(-112deg);
    -ms-transform: rotate(-112deg);
    transform: rotate(-112deg);
    left: -63px;
    top: 211px
}

.headbg-img8 {
    width: 258px;
    -webkit-transform: rotate(201deg);
    -ms-transform: rotate(201deg);
    transform: rotate(201deg);
    right: -75px;
    top: 169px
}

.more {
    margin-top: 16px;
    margin-bottom: -4px
}

.more_link {
    font-weight: 600;
    line-height: 1.25;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.more_link_txt {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.more_link .icon-arrow_long {
    margin-left: 18px;
    font-size: 26px
}

.section-headrestore .h1,.section-headrestore h1 {
    padding: 0 0 14px 0
}

.section-infosm {
    padding: 74px 0
}

.section-infosm .info_img {
    min-width: 45.8%
}

.section-infosm .info_img img {
    width: 460px
}

.section-infosm .info h2 {
    min-height: 58px;
    padding: 0 0 19px 0
}

.section-infosm .info_txt {
    margin-top: 0
}

.inbg-img9 {
    top: 72px;
    left: 50%;
    margin-left: -830px;
    width: 327px
}

.inbg-img10 {
    top: 449px;
    left: 50%;
    margin-left: 438px;
    width: 327px
}

.inbg-img11 {
    left: 50%;
    bottom: -437px;
    width: 750px;
    margin-left: -345px
}

.hbg-img1 {
    right: 0;
    width: 213px;
    top: -52px
}

.section-join {
    position: relative;
    overflow: hidden;
    padding: 100px 50px 0
}

.join {
    padding: 145px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    background: -webkit-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#eefefd 0,#e7fdfc 100%);
    background: -o-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#eefefd 0,#e7fdfc 100%);
    background: radial-gradient(122.94% 205.69% at 20.94% 28.28%,#eefefd 0,#e7fdfc 100%)
}

.join_form {
    max-width: 420px;
    margin: 20px auto 0;
    position: relative;
    z-index: 1
}

.join .section_title {
    position: relative;
    z-index: 1
}

.jbg-img1 {
    width: 416px;
    bottom: 0;
    left: 0
}

.jbg-img2 {
    width: 413px;
    top: 0;
    right: 0
}

.earn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 35px -10px 29px;
    text-align: center
}

.earn_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    margin: 10px;
    width: calc(25% - 20px);
    -webkit-box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    box-shadow: 11px 18px 45px rgba(0,0,0,.05);
    -webkit-border-radius: 12px;
    border-radius: 12px;
    padding: 10px 20px 24px;
    height: 220px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.earn_item_icon {
    background: #ecf7fe;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 76px;
    height: 76px;
    margin: 0 auto 14px
}

.earn_item_icon img {
    width: 34px;
    height: 34px;
    -o-object-fit: contain;
    object-fit: contain
}

.earn_item_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #152a54
}

.section-how.bg-sky {
    padding-top: 80px
}

.section-affil {
    padding: 170px 0 106px;
    position: relative;
    overflow: hidden
}

.section-affil .section_title {
    text-align: left
}

.afbg-img1 {
    width: 113px;
    right: 50%;
    margin-right: -234px;
    top: 212px
}

.afbg-img2 {
    width: 284px;
    right: 50%;
    margin-right: -924px;
    top: 371px
}

.afbg-img3 {
    width: 562px;
    right: 50%;
    margin-right: -627px;
    top: 137px
}

.affil {
    max-width: 1218px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.affil_left {
    width: 442px;
    margin-top: 17px
}

.affil h1 {
    padding-bottom: 24px
}

.affil .form-control {
    font-weight: 400
}

.affil .form_block {
    margin: 7px 0 20px
}

.btn-icon {
    padding: 15px
}

.graf {
    text-align: center;
    width: 400px;
    background: #fff;
    -webkit-box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    -webkit-border-radius: 46px;
    border-radius: 46px;
    padding: 32px
}

.graf_img {
    margin-bottom: 30px;
    padding: 34px 32px 32px;
    height: 195px;
    background: -webkit-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#abedfc 100%);
    background: -o-radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#abedfc 100%);
    background: radial-gradient(122.94% 205.69% at 20.94% 28.28%,#fefeff 0,#abedfc 100%);
    -webkit-border-radius: 40px;
    border-radius: 40px
}

.graf_title {
    margin-bottom: 20px;
    color: #6f737b;
    font-size: 20px;
    line-height: 25px
}

.graf_big {
    margin-bottom: 10px;
    color: #31364f;
    font-weight: 600;
    font-size: 30px;
    line-height: 38px
}

.graf_sm {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 30px;
    color: #686b79
}

.graf_btn {
    margin: 32px 0 0
}

.graf .btn {
    width: 163px
}

.btn-load,.btn-load:hover {
    background: #0c89c8
}

.pagenavi {
    margin-top: 41px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px
}

.pagenavi_next,.pagenavi_prev {
    width: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ff0013;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px
}

.pagenavi_next .icon-right,.pagenavi_prev .icon-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    min-width: 20px;
    margin: 0 2px 0 12px;
    width: 20px;
    height: 20px;
    background: #ff0013;
    color: #fff
}

.pagenavi_prev .icon-right {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin: 0 12px 0 2px
}

.pagenavi_next:hover,.pagenavi_prev:hover {
    color: #38ade8
}

.pagenavi_next:hover .icon-right,.pagenavi_prev:hover .icon-right {
    background: #38ade8
}

.pagenavi_next:active,.pagenavi_prev:active {
    color: #0c89c8
}

.pagenavi_next:active .icon-right,.pagenavi_prev:active .icon-right {
    background: #0c89c8
}

.pagenavi_next.disabled,.pagenavi_prev.disabled {
    color: #d7d7d7;
    cursor: auto;
    pointer-events: none
}

.pagenavi_next.disabled .icon-right,.pagenavi_prev.disabled .icon-right {
    background: #d7d7d7
}

.pagenavi_current {
    display: inline-block;
    line-height: 21px;
    min-width: 27px;
    text-align: center;
    margin-right: 10px;
    background: #ff0013;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    color: #fff;
    padding: 5px 8px 6px
}

.link-back {
    margin-bottom: 22px;
    text-transform: capitalize;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ff0013;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px
}

.link-back .icon-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    min-width: 20px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin: 0 12px 0 2px;
    width: 20px;
    height: 20px;
    background: #ff0013;
    color: #fff
}

.link-back:hover {
    color: #38ade8
}

.link-back:hover .icon-right {
    background: #38ade8
}

.link-back:active {
    color: #0c89c8
}

.link-back:active .icon-right {
    background: #0c89c8
}

.section-offs {
    padding: 100px 50px 0
}

.section-data {
    position: relative;
    overflow: hidden;
    padding-top: 116px
}

.data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 82px 58px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 30px;
    border-radius: 30px
}

.data_left {
    position: relative;
    z-index: 1
}

.data_right {
    position: relative;
    z-index: 1;
    padding-left: 42px
}

.data .graf_img {
    height: 189px
}

.data .graf_big {
    margin-bottom: 22px
}

.dbg-img1 {
    width: 419px;
    bottom: 0;
    left: 0
}

.dbg-img2 {
    width: 752px;
    bottom: 0;
    right: 0
}

.numbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.numbs_item {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    margin: 15px;
    width: calc(50% - 30px);
    -webkit-box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 30px;
    height: 145px
}

.numbs_item_icon {
    background: #eff8fe;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    width: 77px;
    height: 77px;
    min-width: 77px
}

.numbs_item_cont {
    padding-left: 20px
}

.numbs_item_title {
    font-size: 16px;
    line-height: 20px;
    color: #6f737b;
    margin-bottom: 15px
}

.numbs_item_big {
    font-weight: 600;
    font-size: 23px;
    line-height: 30px;
    white-space: nowrap
}

.table {
    width: 100%
}

.table_bg {
    padding: 40px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    position: relative
}

.table th {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
    color: #152a54
}

.table thead th {
    background: #fff;
    padding: 26px 10px
}

.table thead th:first-child {
    -webkit-border-radius: 25px 0 0 25px;
    border-radius: 25px 0 0 25px;
    padding-left: 39px
}

.table thead th:last-child {
    -webkit-border-radius: 0 25px 25px 0;
    border-radius: 0 25px 25px 0;
    padding-right: 39px
}

.table td {
    font-weight: 600;
    padding: 36px 10px 2px;
    font-size: 16px;
    line-height: 20px;
    color: #152a54
}

.table td:first-child {
    padding-left: 39px
}

.table td:last-child {
    padding-right: 39px
}

.table .th1 {
    width: 35.6%
}

.table .th2 {
    width: 32.7%
}

.table tbody tr:first-child td {
    padding-top: 40px
}

.section-qualit-vs {
    overflow: visible;
    padding-top: 149px
}

.section-qualit-vs .qualit {
    min-height: 100px
}

.section-qualit-vs .qualit h2 {
    min-height: 57px
}

.section-qualit-vs .fees_img {
    position: relative;
    margin: 7px 0;
    width: 46%
}

.section-qualit-vs .fees_img:before {
    left: -10px;
    top: -49px;
    content: '';
    position: absolute;
    z-index: 0;
    background: url(../img/back3.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    width: 562px;
    height: 512px
}

.section-qualit-vs .qualit_txt {
    margin-top: 0
}

.fees {
    position: relative;
    width: 500px;
    height: 461px;
    text-align: center;
    margin: 35px auto 39px;
    z-index: 1
}

.fees_item {
    position: absolute;
    width: 240px;
    height: 214px;
    background: #fff;
    -webkit-box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    box-shadow: 11px 12px 40px rgba(0,0,0,.05);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 24px
}

.fees_item1 {
    top: 0;
    left: 0
}

.fees_item2 {
    top: 13px;
    right: 0
}

.fees_item3 {
    bottom: 0;
    left: 21.2%
}

.fees_item_img {
    -webkit-border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
    height: 98px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.fees_item_img img {
    height: 100%
}

.fees_item_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-transform: capitalize
}

.qbg-img4 {
    top: 0;
    right: 0;
    width: 935px
}

.section-faq.section {
    padding: 59px 0 0
}

.faq {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid #c6c6c6
}

.faq_item {
    border-bottom: 1px solid #c6c6c6
}

.faq_item_opener {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    padding: 34px 60px 33px 0;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize
}

.faq_item_opener [class*=" icon-"],.faq_item_opener [class^=icon-] {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    font-size: 24px;
    position: absolute;
    top: 35px;
    right: 32px
}

.faq_item_opener:hover {
    color: #ff0013
}

.faq_item_opener:hover [class*=" icon-"],.faq_item_opener:hover [class^=icon-] {
    color: #ff0013
}

.faq_item_drop {
    display: none;
    color: #6f737b;
    max-width: 800px;
    margin: -17px auto 13px
}

.faq_item.open .faq_item_opener [class*=" icon-"],.faq_item.open .faq_item_opener [class^=icon-] {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #ff0013
}

.section-article {
    position: relative;
    padding: 128px 0 0
}

.article_cover {
    position: relative
}

.article_cover:before {
    content: '';
    display: block;
    padding-bottom: 30.8%
}

.article_cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0
}

.article_inner {
    background: #fff;
    padding: 60px 8.5% 0;
    margin: -80px 8.45% 0;
    position: relative
}

.article_date {
    font-size: 20px;
    line-height: 25px;
    color: #6f737b;
    margin-bottom: 18px
}

.article_txt {
    color: #6f737b;
    margin-bottom: 18px
}

.article_txt p strong {
    color: #152a54;
    font-weight: 600
}

.article_txt blockquote {
    margin: 19px 0 20px;
    color: #152a54;
    background: #f3f3f3;
    padding: 31px 30px 29px;
    font-weight: 600;
    font-size: 20px;
    line-height: 160%
}

.article_txt blockquote p {
    max-width: 720px;
    padding: 0;
    margin: 0 auto
}

.article_share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #eae8e8;
    padding-top: 20px
}

.article_share_title {
    margin-right: 39px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #152a54
}

.article ul {
    list-style: none;
    padding: 6px 0 15px
}

.article ul li {
    padding-bottom: 5px;
    position: relative;
    padding-left: 21px
}

.article ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    background: #152a54
}

.article ol {
    list-style-position: inside;
    padding: 6px 0 15px
}

.article ol li {
    padding-bottom: 5px
}

.article .h1,.article h1 {
    font-size: 30px;
    padding-bottom: 20px
}

.article .h2,.article h2 {
    font-size: 25px
}

.article .h3,.article h3 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 25px
}

.article .h4,.article h4 {
    font-size: 18px
}

.article p img {
    margin: 20px 0 21px;
    height: auto
}

.share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.share_item {
    font-size: 19px;
    margin-right: 11px;
    color: #3352e2;
    width: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    background: #fff;
    -webkit-box-shadow: -4px 4px 25px rgba(222,222,222,.32);
    box-shadow: -4px 4px 25px rgba(222,222,222,.32);
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.share_item:hover {
    color: #38ade8
}

.section-blog {
    padding: 54px 0 0
}

.section-similar {
    padding-bottom: 0
}

.section-similar .articles {
    margin-top: -11px
}

.section-similar .articles:after,.section-similar .articles:before {
    display: none
}

.section-similar .articles:last-child {
    margin-bottom: -24px
}

.section-error {
    padding: 110px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center
}

.errorpage {
    margin: 0 auto;
    max-width: 770px
}

.errorpage_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #152a54
}

.errorpage_txt {
    color: #6f737b;
    margin-top: 20px
}

.errorpage_img {
    margin: 32px auto 40px;
    max-width: 90%
}

.errorpage_img span {
    font-weight: 500;
    line-height: 1;
    font-size: 240px;
    margin: 85px 0 0;
    display: block;
    background: -webkit-gradient(linear,left top,left bottom,from(#9ed7ff),to(#6162df));
    background: -webkit-linear-gradient(top,#9ed7ff 0,#6162df 100%);
    background: -o-linear-gradient(top,#9ed7ff 0,#6162df 100%);
    background: linear-gradient(180deg,#9ed7ff 0,#6162df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.errorpage_img-bg {
    background: url(../svg/err-bg.svg) no-repeat bottom;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    width: 539px;
    position: relative
}

.errorpage_img-bg:before {
    content: '';
    display: block;
    padding-bottom: 54.36%
}

.errorpage_img-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 41%;
    width: 20.04%;
    background: url(../svg/girl.svg) no-repeat top;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    height: 99px;
    z-index: 5
}

.errorpage_img-bg span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3.6%;
    letter-spacing: -13px
}

.section-order {
    padding: 155px 0 0
}

.section-order h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px
}

.order {
    max-width: 1080px;
    margin: 21px auto 0
}

.order_head {
    background: -webkit-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: -o-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    margin-bottom: 36px
}

.order_cont {
    background: -webkit-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: -o-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    -webkit-border-radius: 20px;
    border-radius: 20px;
    padding: 50px 50px
}

.order_title {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #152a54
}

.order_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 45px
}

.order_nav .btn-arr {
    margin-left: auto
}

.order_nav .btn-back {
    margin-left: 0
}

.order .form-control {
    padding: 10px 17px;
    background: #fff;
    height: 54px
}

.order .form_block {
    margin-bottom: 40px
}

.order .form_group {
    border-color: #bbc5f3
}

.order_checks {
    margin: 30px 0 -25px
}

.order_subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 24px;
    color: #6f737b
}

.order_btn {
    text-align: center;
    margin: 40px 0 30px
}

.order_btn:last-child {
    margin-bottom: 0
}

.order h3 {
    margin: 40px 0 -1px;
    text-align: center
}

.order h4 {
    font-weight: 600;
    color: #152a54;
    margin: 24px 0 0
}

.order .coins {
    margin: 20px -32px -25px
}

.anim {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    width: 222px;
    height: 130px;
    background: #fff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    line-height: 20px;
    margin: 29px auto 30px
}

.steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    padding: 20px 0 17px
}

.steps_item {
    width: 20%;
    position: relative
}

.steps_item:before {
    content: '';
    position: absolute;
    top: 21px;
    left: 50%;
    width: 100%;
    z-index: 0;
    border-top: 2px dashed #9fd7ff
}

.steps_item:last-child:before {
    display: none
}

.steps_item_icon {
    margin: 0 auto 14px;
    color: #31364f;
    position: relative;
    font-size: 24px;
    width: 46px;
    background: #99c1ff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 46px;
    -webkit-border-radius: 6px;
    border-radius: 6px
}

.steps_item_icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.55);
    -webkit-border-radius: 6px;
    border-radius: 6px
}

.steps_item_icon .icon-checked {
    display: none
}

.steps_item_icon img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.steps_item_title {
    font-size: 14px;
    color: #31364f
}

.steps_item.active .steps_item_icon:before {
    opacity: 0
}

.steps_item.active .steps_item_title {
    font-weight: 700
}

.steps_item.done:before {
    border-color: #a8ffcb
}

.steps_item.done .steps_item_icon {
    color: #a8ffcb
}

.steps_item.done .steps_item_icon:before {
    opacity: 0
}

.steps_item.done .steps_item_icon [class^=icon-],.steps_item.done .steps_item_icon img {
    display: none
}

.steps_item.done .steps_item_icon .icon-checked {
    display: block
}

.steps_item.done .steps_item_title {
    color: #6f737b
}

.warning {
    padding: 17px 17px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fdf4fc;
    border: 1px solid #ffb1b1;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.warning_icon {
    font-size: 24px;
    color: #152a54;
    line-height: 0;
    margin-right: 8px
}

.warning_txt {
    color: #6f737b;
    line-height: 20px
}

.warning_txt b {
    font-weight: 600;
    color: #152a54
}

.warning_txt .c-blue {
    color: #65a3fb
}

.warning_txt .c-vio {
    color: #96a0d2
}

.btn-back .icon-right {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-right: 10px;
    margin-left: 0
}

.c-blue {
    color: #65a3fb
}

.c-vio {
    color: #96a0d2
}

.loader {
    text-align: center
}

.loader_img {
    width: 42px;
    height: 42px;
    margin: 0 auto 16px
}

.loader_txt {
    color: #152a54;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px
}

.transfer_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 40px 0 36px
}

.transfer_link_qr {
    padding: 15px;
    margin-right: 18px;
    width: 142px;
    min-width: 142px;
    height: 142px;
    background: #fff;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.transfer_link .form_row {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0
}

.send_cols {
    margin: 30px 0 4px
}

.transactions {
    white-space: nowrap;
    overflow: auto
}

.transactions table {
    width: 100%
}

.transactions table tr {
    border-bottom: 1px solid #bbc5f3
}

.transactions table th {
    font-weight: 600;
    padding: 6px 18px 16px 0;
    color: #152a54
}

.transactions table th:last-child {
    padding-right: 0
}

.transactions table .th2 {
    width: 23.7%
}

.transactions table .th3 {
    width: 22.7%
}

.transactions table .th4 {
    width: 102px
}

.transactions table td {
    font-size: 14px;
    line-height: 18px;
    padding: 18px 18px 17px 0;
    color: #34373e
}

.transactions table td:last-child {
    padding-right: 0
}

.section-order+.section-blog {
    padding-top: 100px;
    padding-bottom: 11px
}

.section-blog .section_title+form {
    margin-top: 15px
}

.message-green {
    margin-bottom: 20px;
    color: #152a54;
    background: #d6f3dd;
    border: 1px solid #a8ffcb;
    padding: 15px 19px 16px;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.message-green p b {
    font-weight: 600
}

.message-green p:last-child {
    padding-bottom: 0
}

.message-blue {
    margin-bottom: 20px;
    color: #31364f;
    background: #e1f4ff;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    padding: 20px
}

.message-blue p b {
    font-weight: 600
}

.message-blue p:last-child {
    padding-bottom: 0
}

.message-blue .c-blue {
    color: #ff0013
}

.message-blue h4 {
    margin: 0;
    padding: 6px 0 10px 0
}

.order_subtitle+.anim {
    margin: 29px auto 40px
}

.section-contact {
    padding: 154px 0 0
}

.contact {
    max-width: 1080px;
    padding: 52px 50px 50px;
    margin: 13px auto 0;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background: -webkit-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: -o-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%)
}

.contact .form-control {
    background: #fff
}

.contact .form_btn {
    text-align: center
}

.contact .form_btn .btn {
    padding: 5px 23px
}

.contact .form_cols {
    margin-top: 15px;
    margin-bottom: 8px
}

.contact .btn {
    padding: 5px 11px
}

.contact .jq-selectbox {
    width: 276px
}

.contact .form_row {
    margin-bottom: 24px
}

.contact span.error {
    display: none!important
}

.file_inp {
    position: relative;
    z-index: 0
}

.file_inp .icon-upload {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    left: 20px;
    top: 23px;
    font-size: 12px;
    color: #bebebe
}

.file_inp .jq-file__name {
    padding-left: 42px
}

.form_group-upload {
    position: relative
}

.form_group-upload .jq-file__name {
    text-align: left;
    padding-left: 42px;
    background: url(../img/file.png) no-repeat 17px center;
    -webkit-background-size: 14px 14px;
    background-size: 14px
}

.form_group-upload .jq-file__browse {
    display: none
}

.form_group-upload .btn {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 52px;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.chart {
    max-width: 1080px;
    margin: 19px auto 0;
    padding: 50px 50px 50px;
    background: -webkit-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: -o-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    -webkit-border-radius: 20px;
    border-radius: 20px
}

.chart_close {
    text-align: right;
    margin: 24px 0 7px 0
}

.chart_close .icon-close {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    margin-right: 12px;
    background: #ff0013;
    width: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 20px
}

.chart_close_link {
    padding: 0 4px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.chart_close_link:hover .icon-close {
    background: #38ade8
}

.chart_close_link:active .icon-close,.chart_close_link:focus .icon-close {
    background: #0c89c8
}

.chart_cont {
    background: #fff;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    padding: 0 55px 36px 36px
}

.chart_scroll {
    height: 464px;
    margin-right: -41px
}

.chart .scroll-wrapper>.scroll-content {
    padding: 0 41px 0 0
}

.chart .scroll-wrapper>.scroll-element.scroll-y {
    top: 28px;
    bottom: 23px;
    height: auto
}

.chart .form_cols {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.chart .form_cols_item {
    width: 50%;
    max-width: 482px
}

.chart .form_label {
    padding: 0 0 10px 0
}

.chart_form {
    margin-top: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: .5px solid #dcdcdc;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.chart_form_message {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.chart_form textarea.form-control {
    font-size: 16px;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: 51px;
    padding: 12px 0
}

.chart_form button {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.chart_form .btn-icon {
    margin-left: 6px
}

.chart_form_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.chart_form .ava {
    margin-right: 10px;
    min-width: 32px
}

.btn-dots,.btn-file {
    background: 0 0;
    color: #152a54
}

.btn-dots:hover,.btn-file:hover {
    color: #0c89c8
}

.dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 36px 0 0
}

.dialog_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 24px
}

.dialog_item .ava {
    margin-right: 12px
}

.dialog_item-right {
    margin-left: auto
}

.dialog_item-right .dialog_item_txt {
    background: #eaeeff;
    -webkit-border-radius: 15px 15px 0px 15px;
    border-radius: 15px 15px 0 15px
}

.dialog_item_inf {
    color: #152a54;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 8px
}

.dialog_item_txt {
    width: 456px;
    color: #6f737b;
    padding: 19px 18px 20px;
    background: #f5f7fb;
    -webkit-border-radius: 15px 15px 15px 0px;
    border-radius: 15px 15px 15px 0
}

.ava {
    width: 32px;
    min-width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.win {
    overflow: visible;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    padding: 66px 54px 60px;
    background: -webkit-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: -o-radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%);
    background: radial-gradient(48.56% 58.58% at 27.12% 51.44%,#fefeff 0,#edfefd 100%)
}

.win_bg {
    -webkit-border-radius: 20px 20px 0px 0px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 94px;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: -webkit-linear-gradient(203.41deg,#b6f8f6 25.2%,#f5fffe 88.72%);
    background: -o-linear-gradient(203.41deg,#b6f8f6 25.2%,#f5fffe 88.72%);
    background: linear-gradient(246.59deg,#b6f8f6 25.2%,#f5fffe 88.72%)
}

.win_bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 230px;
    height: 94px;
    background: url(../svg/win-uz.svg) no-repeat 0 0;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.win_icon {
    position: relative;
    z-index: 3;
    font-size: 24px;
    margin: 0 auto 30px;
    width: 56px;
    height: 56px;
    position: relative;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.win_icon:before {
    content: '';
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.win_title {
    margin-bottom: 10px;
    color: #152a54;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px
}

.win_txt {
    color: #6f737b;
    margin-bottom: 32px
}

.win_form {
    text-align: left
}

.win .form_cols_item {
    width: 50%
}

.win_btn {
    text-align: center;
    margin-top: 8px
}

.win_btn .btn {
    height: 58px
}

.win .form_row {
    margin-bottom: 30px
}

.win .filled .form-control {
    border-color: #c8e6f5
}

.form_group .status {
    padding-left: 17px
}

.win-success {
    width: 772px;
    position: relative
}

.win-success:before {
    margin-left: -56px;
    content: '';
    position: absolute;
    z-index: 1;
    top: 33px;
    width: 118px;
    height: 106px;
    left: 50%;
    background: url(../img/balloons.png) no-repeat center
}

.win-success .win_icon {
    color: #84e4a4;
    margin: 0 auto 42px
}

.win-success .win_icon:before {
    border: 1px solid #fff;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px
}

.win-error {
    width: 600px
}

.win-error .win_icon:before {
    border: 2px solid #ffb1b1;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px
}

.fileloader {
    text-align: center;
    color: #6f737b;
    margin: 33px auto 38px;
    background: #fff;
    padding: 23px 20px 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    max-width: 392px
}

.fileloader p {
    font-size: 14px;
    padding: 14px 0 11px
}

.fileloader .icon-upload {
    font-size: 20px;
    color: #152a54
}

.fakelink {
    position: relative;
    color: #ff0013;
    font-weight: 600;
    cursor: pointer
}

.fakelink span {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    border-bottom: 1px solid currentColor;
    line-height: 1;
    display: inline-block
}

.fakelink input {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.fakelink:hover span {
    border-color: transparent
}

.status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.status_circ {
    width: 14px;
    height: 14px;
    background: #237026;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 10px
}

.status_txt {
    font-size: 14px
}

.win-error-sm,.win-success-sm {
    width: 400px;
    padding-bottom: 40px
}

.win-error-sm:before,.win-success-sm:before {
    display: none
}

.win-error-sm .btn,.win-success-sm .btn {
    min-width: 100px
}

.win-success-sm .win_icon:before {
    border: 2px solid #84e4a4;
    top: -6px;
    left: -6px;
    bottom: -6px;
    right: -6px
}

.js-scroll {
    overflow: auto
}

.video-anim {
    -webkit-box-shadow: 0 0 35px #fff;
    box-shadow: 0 0 35px #fff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 220px;
    width: 220px;
    line-height: 0;
    font-size: 0;
    margin: 29px auto 30px;
    background: #fff;
    position: relative;
    -webkit-border-radius: 50;
    border-radius: 50%
}

.video-anim video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%
}

.video-anim .video-anim_wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.video-anim img {
    margin: 0 auto;
    display: block;
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.video-anim:before {
    content: '';
    position: absolute;
    top: -17px;
    right: -17px;
    bottom: -17px;
    left: -17px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 30px #fff;
    box-shadow: 0 0 30px #fff;
    background: -webkit-radial-gradient(center,ellipse cover,#fff 0,rgba(255,255,255,.95) 113px,rgba(255,255,255,0) 140px);
    background: -webkit-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.95) 113px,rgba(255,255,255,0) 140px);
    background: -o-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.95) 113px,rgba(255,255,255,0) 140px);
    background: radial-gradient(ellipse at center,#fff 0,rgba(255,255,255,.95) 113px,rgba(255,255,255,0) 140px)
}

.order_subtitle+.video-anim {
    margin: 29px auto 40px
}

@media screen and (max-height: 799px) {
    .section-error {
        padding-top:150px;
        padding-bottom: 50px
    }
}

@media screen and (max-width: 1439px) {
    .numbs {
        margin:-10px
    }

    .numbs_item {
        padding: 20px;
        height: auto;
        width: calc(100% - 20px);
        margin: 10px
    }

    .data_right {
        max-width: 400px
    }

    .data {
        padding: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media screen and (max-width: 1299px) {
    .h1,h1 {
        font-size:45px
    }

    .section-welcomewhy .welcome_img,.welcome_img {
        width: 47.55%
    }

    .welcome_cont {
        width: 50%
    }

    .logos_slider_img {
        margin: 30px 30px
    }

    .section-coins .wrapper {
        max-width: 1010px
    }

    .coins {
        margin: 30px -15px 50px
    }

    .coins_item {
        width: calc(25% - 30px);
        margin: 20px 15px
    }

    .piqs {
        margin: 1px -20px -20px
    }

    .piqs_item {
        margin: 20px;
        width: calc(50% - 40px)
    }

    .about_right {
        padding-top: 24px
    }

    .about_item {
        margin-top: 30px;
        padding-bottom: 0
    }

    .acc_item_img {
        right: 0
    }

    .anon {
        margin: 30px -15px 44px
    }

    .anon_item {
        margin: 15px
    }

    .anon_item_img {
        max-width: 223px;
        margin: 0 auto 26px;
        height: 223px
    }

    .articles {
        margin: 0 -40px 40px 0
    }

    .articles_item {
        width: calc(33.33% - 40px);
        margin: 40px 40px 0 0
    }

    .revs {
        margin: 0 -40px 0 0
    }

    .revs_item {
        margin: 40px 40px 40px 0;
        width: calc(33.33% - 40px)
    }

    .offer_img {
        width: 551px;
        margin-right: 0
    }

    .info_cont {
        padding-right: 2.3%
    }

    .piqs-inline {
        padding: 0 0
    }

    .join {
        padding: 115px 20px
    }

    .fees {
        width: 470px;
        height: 447px;
        margin: 5px auto 9px
    }

    .fees_item {
        width: 224px;
        height: 206px;
        padding: 20px
    }

    .section-qualit-vs .fees_img:before {
        width: 109%;
        background-position: center;
        top: -44px
    }

    .qbg-img4 {
        top: -90px
    }

    .headbg-img7 {
        left: -114px
    }

    .headbg-img8 {
        right: -121px
    }

    .order_cont {
        padding: 40px
    }

    .welcome_img:before {
        -webkit-box-shadow: 0 0 50px #fff;
        box-shadow: 0 0 50px #fff;
        background: -webkit-radial-gradient(center,ellipse cover,#fff 0,rgba(255,255,255,.9) 65%,rgba(255,255,255,0) 90%);
        background: -webkit-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.9) 65%,rgba(255,255,255,0) 90%);
        background: -o-radial-gradient(center,ellipse,#fff 0,rgba(255,255,255,.9) 65%,rgba(255,255,255,0) 90%);
        background: radial-gradient(ellipse at center,#fff 0,rgba(255,255,255,.9) 65%,rgba(255,255,255,0) 90%)
    }

    .welcome_img {
        width: 468px
    }
}

@media screen and (min-width: 1024px) {
    .acc-rev {
        margin:41px 0 0 0;
        min-height: 520px
    }

    .acc-rev .acc_item {
        margin-bottom: 50px;
        padding-right: 0;
        padding-left: 550px;
        padding-left: 50.8%
    }

    .acc-rev .acc_item:last-child {
        margin-bottom: 0
    }

    .acc-rev .acc_item_img {
        right: auto;
        top: -33px;
        left: 0;
        height: 588px;
        width: 588px
    }

    .acc-rev .acc_item_cont {
        padding-left: 31px
    }

    .acc-rev .acc_item_title {
        text-transform: capitalize
    }

    .acc-rev .acc_item_txt {
        margin-bottom: -19px
    }
}

@media screen and (max-width: 1299px) and (min-width:1024px) {
    .acc-rev {
        min-height:492px
    }

    .acc-rev .acc_item {
        padding-left: 52.8%;
        margin-bottom: 39px
    }

    .acc-rev .acc_item_img {
        top: -7px;
        height: 500px;
        width: 500px
    }

    .acc-rev .acc_item_cont {
        padding-left: 19px
    }
}

@media screen and (max-width: 1023px) {
    .h1,h1 {
        font-size:40px
    }

    .section {
        padding: 70px 0
    }

    .section-welcome {
        padding: 120px 0 100px
    }

    .welcome {
        display: block
    }

    .welcome_cont {
        width: 100%;
        text-align: center
    }

    .welcome_img {
        width: 80%;
        margin: 30px auto 0;
        max-width: 420px
    }

    .welcome_img img {
        width: 420px
    }

    .welcome_txt {
        margin: 0 auto 10px
    }

    .welcome_btn {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .welcome .h1,.welcome h1 {
        margin: 21px 0 0 0
    }

    .section-logos {
        height: auto
    }

    .logos_slider_img {
        height: 60px;
        margin: 20px 10px
    }

    .coins {
        margin: 30px -10px 40px
    }

    .coins_item {
        width: calc(25% - 20px);
        margin: 0 10px 20px;
        height: 210px;
        max-width: 235px
    }

    .coins:before {
        margin-left: -307px;
        width: 220px;
        height: 236px
    }

    .coins:after {
        margin-left: 100px;
        width: 220px;
        height: 236px
    }

    .bg-img3 {
        width: 211px;
        top: -232px;
        left: -81px
    }

    .bg-img5 {
        width: 235px;
        bottom: -367px;
        right: -42px
    }

    .piqs {
        margin: 20px auto -10px;
        max-width: 590px
    }

    .piqs_item {
        margin: 10px 0;
        width: 100%
    }

    .bg-img6 {
        left: -85px
    }

    .bg-img7 {
        right: -54px
    }

    .about {
        display: block
    }

    .about_left {
        width: 100%;
        text-align: center
    }

    .about_right {
        width: 100%
    }

    .about_txt {
        margin: 0 auto
    }

    .about_img {
        margin: 40px auto 60px;
        max-width: 460px
    }

    .about_item_txt {
        max-width: 100%
    }

    .acc {
        margin: 30px 0 0 0
    }

    .acc_item {
        padding-right: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        margin-bottom: 20px
    }

    .acc_item:before {
        content: '';
        position: absolute;
        left: 28px;
        width: 2px;
        top: 30px;
        bottom: -30px;
        background: #c8e6f5
    }

    .acc_item:last-child:before {
        display: none
    }

    .acc_item_cont {
        width: calc(100% - 60px)
    }

    .acc_item_cont:before {
        display: none
    }

    .acc_item_img {
        position: static;
        display: none;
        margin: 20px auto 0;
        height: auto;
        max-width: 420px;
        width: 80%
    }

    .acc_item.open .acc_item_img {
        display: block
    }

    .anon {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -10px 50px
    }

    .anon:before {
        margin-left: -200px;
        width: 220px;
        height: 236px
    }

    .anon:after {
        margin-left: 100px;
        width: 220px;
        height: 236px;
        top: 350px
    }

    .anon_item {
        width: calc(50% - 20px);
        margin: 30px 10px 0
    }

    .anon_item_txt {
        max-width: 310px
    }

    .anon_item_txt br {
        display: none
    }

    .bg-img10 {
        top: -376px;
        left: -56px
    }

    .bg-img11 {
        right: -33px
    }

    .why_item {
        width: 335px
    }

    .why_item_img {
        max-width: 335px;
        height: 144px
    }

    .section-articles .section_title {
        text-align: center
    }

    .section-articles .section_btn {
        position: static
    }

    .section-articles .articles {
        margin-bottom: 50px
    }

    .articles {
        margin: 0 -30px 30px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .articles_item {
        width: calc(50% - 30px);
        margin: 30px 30px 0 0
    }

    .revs {
        margin: 0 -30px 0 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .revs_item {
        margin: 30px 30px 40px 0;
        width: calc(50% - 30px)
    }

    .offer {
        display: block
    }

    .offer_cont {
        width: 100%;
        text-align: center
    }

    .offer_img {
        width: 80%;
        margin: 40px auto 0;
        -webkit-transform: translateX(6%);
        -ms-transform: translateX(6%);
        transform: translateX(6%)
    }

    .offer_img img {
        width: 420px
    }

    .offer_txt {
        max-width: 380px;
        margin: 0 auto 40px
    }

    .offer .h2,.offer h2 {
        padding-left: 0
    }

    .bg-img13 {
        margin-left: -579px
    }

    .bg-img14 {
        display: none
    }

    .info {
        display: block
    }

    .info_cont {
        width: 100%
    }

    .info_img {
        margin: 20px auto 0;
        height: auto;
        max-width: 420px;
        width: 80%
    }

    .info_img-vid {
        width: 90%
    }

    .qualit {
        display: block
    }

    .qualit_cont {
        width: 100%
    }

    .qualit_img {
        margin: 20px auto 0;
        height: auto;
        max-width: 420px;
        width: 80%
    }

    .scenarios {
        display: block
    }

    .scenarios_cont {
        width: 100%;
        padding: 0
    }

    .scenarios_img {
        margin: 0 auto 45px;
        height: auto;
        max-width: 420px;
        width: 80%
    }

    .scenarios h3 {
        text-align: center
    }

    .scenarios_slider .swiper-button-next {
        margin-top: -50px
    }

    .scenarios_slider .swiper-button-prev {
        left: 0;
        margin-top: -50px
    }

    .list-nums li {
        margin-bottom: 24px
    }

    .section-welcomewhy .welcome_cont {
        margin-bottom: 0
    }

    .section-welcomewhy .welcome_img {
        width: 80%
    }

    .section-welcomewhy .piqs-inline {
        margin: -40px auto -73px
    }

    .piqs-inline {
        height: 144px
    }

    .crbg-img1 {
        left: -116px
    }

    .section-join {
        padding: 20px 0 0
    }

    .join {
        padding: 70px 20px
    }

    .earn_item {
        width: calc(50% - 20px)
    }

    .jbg-img1 {
        width: 274px
    }

    .jbg-img2 {
        width: 310px;
        right: -80px;
        top: -30px
    }

    .section-offs {
        padding: 20px 0 0
    }

    .graf {
        padding: 20px;
        width: 330px;
        -webkit-border-radius: 36px;
        border-radius: 36px
    }

    .graf_img {
        margin-bottom: 20px;
        padding: 20px;
        height: 170px;
        -webkit-border-radius: 30px;
        border-radius: 30px
    }

    .graf_title {
        margin-bottom: 15px
    }

    .graf_big {
        margin-bottom: 8px
    }

    .graf_sm {
        margin-bottom: 7px
    }

    .graf_btn {
        margin: 20px 0 0
    }

    .affil_left {
        width: 360px
    }

    .data {
        padding: 35px
    }

    .data .graf_img {
        height: 170px
    }

    .data .graf_title {
        margin-bottom: 15px
    }

    .data .graf_big {
        margin-bottom: 8px
    }

    .data .graf_sm {
        margin-bottom: 7px
    }

    .data_right {
        padding-left: 35px
    }

    .numbs_item_title {
        margin-bottom: 10px
    }

    .numbs_item_icon {
        width: 67px;
        height: 67px;
        min-width: 67px
    }

    .section-affil {
        padding: 120px 0 70px
    }

    .table thead th {
        font-size: 16px;
        line-height: 20px;
        padding: 18px 10px
    }

    .table thead th:first-child {
        padding-left: 20px
    }

    .table thead th:last-child {
        padding-right: 20px
    }

    .table td {
        padding: 24px 10px 2px;
        font-size: 15px;
        line-height: 18px
    }

    .table td:first-child {
        padding-left: 20px
    }

    .table td:last-child {
        padding-right: 20px
    }

    .table .th1 {
        width: 27.6%
    }

    .table .th2 {
        width: auto
    }

    .table tbody tr:first-child td {
        padding-top: 30px
    }

    .table_bg {
        padding: 35px
    }

    .dbg-img1 {
        width: 358px
    }

    .dbg-img2 {
        width: 637px
    }

    .section-qualit-vs .fees_img {
        margin: 20px auto 0;
        width: 100%
    }

    .section-qualit-vs .fees_img:before {
        width: auto;
        right: -10px
    }

    .fees {
        width: 495px;
        height: 470px
    }

    .faq_item_opener {
        padding: 24px 50px 23px 0
    }

    .faq_item_opener [class*=" icon-"],.faq_item_opener [class^=icon-] {
        top: 25px;
        right: 22px
    }

    .faq_item_drop {
        margin: -7px auto 3px
    }

    .section-blog {
        padding: 54px 0 0
    }

    .section-article {
        padding: 80px 0 0
    }

    .article_inner {
        margin: 0 0 0;
        padding: 30px 0 0
    }

    .article_cover {
        margin: 0 -20px;
        min-height: 200px
    }

    .section-similar {
        padding-bottom: 0
    }

    .headbg-img7 {
        left: -174px
    }

    .headbg-img8 {
        right: -171px
    }

    .section-error {
        padding-top: 90px;
        padding-bottom: 30px
    }

    .order_cont {
        padding: 30px
    }

    .section-contact,.section-order {
        padding: 90px 0 0
    }

    .order {
        margin: 0
    }

    .order_head {
        margin-bottom: 20px
    }

    .steps {
        padding: 15px 10px 12px
    }

    .steps_item_title {
        line-height: 1.3
    }

    .form_cols {
        margin-left: -9px;
        margin-right: -9px
    }

    .form_cols_item {
        padding: 0 9px
    }

    .form_cols_left {
        padding: 0 9px;
        margin: 0 auto
    }

    .form_cols_right {
        padding: 0 9px;
        margin: 0 auto
    }

    .order .coins {
        margin: 20px -25px -25px
    }

    .contact {
        padding: 30px
    }

    .contact .form_row {
        margin-bottom: 16px
    }

    .contact h3 {
        text-align: center
    }

    textarea.form-control {
        height: 278px
    }

    .chart {
        padding: 30px
    }

    .chart_cont {
        padding: 0 25px 25px 25px
    }

    .chart_scroll {
        margin-right: -15px
    }

    .chart .scroll-wrapper>.scroll-content {
        padding: 0 15px 0 0
    }

    .dialog {
        padding-top: 25px
    }

    .chart_form {
        margin-top: 25px
    }

    .fancybox-close-small {
        top: 5px;
        right: 5px
    }

    .errorpage_img span {
        font-size: 200px
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size:15px
    }

    .h1,h1 {
        font-size: 35px
    }

    .h2,h2 {
        font-size: 26px
    }

    .h3,h3 {
        font-size: 22px
    }

    .h4,h4 {
        font-size: 18px
    }

    .section_txt {
        font-size: 18px;
        line-height: 24px
    }

    .section_cats_item {
        font-size: 14px;
        line-height: 18px;
        padding: 6px 12px
    }

    .logos_slider_img {
        height: 60px;
        margin: 20px 0
    }

    .coins {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .coins_item {
        width: calc(50% - 20px)
    }

    .coins_item_soon {
        font-size: 15px;
        line-height: 19px
    }

    .piqs {
        max-width: 500px
    }

    .piqs_item {
        padding: 20px
    }

    .piqs_item_icon {
        width: 80px;
        height: 80px;
        min-width: 80px
    }

    .piqs_item_title {
        font-size: 18px;
        line-height: 24px
    }

    .bg-img6 {
        left: -155px
    }

    .bg-img7 {
        right: -117px
    }

    .acc_item_title,.anon_item_title,.coins_item_title,.why_item_title {
        font-size: 18px;
        line-height: 24px
    }

    .acc_item.open .acc_item_title {
        font-size: 22px;
        line-height: 28px
    }

    .why {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }

    .articles_item {
        width: calc(100% - 30px);
        margin: 30px 30px 0 0
    }

    .articles_item_cont {
        min-height: 100px
    }

    .revs_item {
        margin: 30px 30px 15px 0;
        width: calc(100% - 30px)
    }

    .revs_item_txt {
        max-width: 100%;
        margin: 10px 0 0 0
    }

    .revs_item_bot {
        max-width: 100%;
        margin-top: 25px
    }

    .piqs-inline {
        height: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .piqs-inline .piqs_item {
        width: 50%;
        padding: 10px 0
    }

    .scenarios_cont ol {
        margin-top: 10px;
        font-size: 18px;
        line-height: 24px
    }

    .list-nums li {
        padding: 0 0 0 58px;
        min-height: 42px
    }

    .list-nums li:before {
        width: 42px;
        height: 42px;
        font-size: 18px;
        line-height: 24px
    }

    .section-head {
        padding: 120px 0 50px
    }

    .section-head .join_form {
        margin: 8px auto 0
    }

    .affil {
        display: block
    }

    .affil_left {
        width: 100%;
        max-width: 442px;
        margin: 0 auto 40px
    }

    .section-affil .section_title {
        text-align: center
    }

    .data {
        display: block;
        padding: 20px
    }

    .data_right {
        padding: 20px 0 0 0;
        margin: 0 auto;
        max-width: 325px
    }

    .dbg-img1 {
        width: 358px;
        top: 0;
        bottom: auto
    }

    .dbg-img2 {
        display: none
    }

    .graf {
        width: 360px;
        max-width: 100%;
        margin: 0 auto
    }

    .table_bg {
        border: 2px solid #ff0013;
        padding: 0 0 6px;
        overflow: auto
    }

    .table thead th {
        font-size: 15px;
        line-height: 18px;
        padding: 12px 7px
    }

    .table thead th:first-child {
        padding-left: 10px;
        -webkit-border-radius: 25px 0 0 0px;
        border-radius: 25px 0 0 0
    }

    .table thead th:last-child {
        padding-right: 10px;
        -webkit-border-radius: 0 25px 0 0px;
        border-radius: 0 25px 0 0
    }

    .table td {
        padding: 15px 7px 10px;
        font-size: 14px;
        line-height: 18px
    }

    .table td:first-child {
        padding-left: 10px
    }

    .table td:last-child {
        padding-right: 10px
    }

    .table .th1 {
        min-width: 112px
    }

    .table .th2 {
        width: auto
    }

    .table tbody tr:first-child td {
        padding-top: 20px
    }

    .pagenavi {
        margin-top: 20px
    }

    .section-head .section_btn {
        margin-top: 0
    }

    .search {
        width: 260px
    }

    .article_date {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 15px
    }

    .article_inner {
        padding: 23px 0 0
    }

    .article_txt blockquote {
        margin: 10px 0 15px;
        font-size: 18px;
        padding: 20px
    }

    .article_txt p {
        padding-bottom: 15px
    }

    .article_txt .h1,.article_txt h1 {
        padding-bottom: 15px
    }

    .article_txt .h3,.article_txt h3 {
        padding-bottom: 10px
    }

    .article_share_title {
        margin-right: 23px
    }

    .article p img {
        margin: 10px 0 10px
    }

    .section-similar .articles:last-child {
        margin-bottom: 0
    }

    .m-hid {
        display: none
    }

    .m-show {
        display: block
    }

    .form_group-upload .form-control {
        padding-left: 18px;
        background: 0 0
    }

    .form_group-upload .placeholder {
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis
    }

    .errorpage_txt {
        margin-top: 15px
    }

    .errorpage_img {
        margin: 5px auto 30px
    }

    .form_block-unicode {
        margin-top: 30px
    }

    .form_label {
        padding: 0 0 10px 0
    }

    .order .form_block {
        margin-bottom: 25px
    }

    .warning {
        padding: 15px 15px
    }

    .order_cont {
        padding: 30px 20px;
        margin: 0 -20px;
        -webkit-border-radius: 0;
        border-radius: 0
    }

    .range_val_pers {
        min-width: 75px;
        width: 75px
    }

    .range_val {
        width: 195px
    }

    .range_fl .form_inp {
        margin: 0 10px 0 14px
    }

    .form_cols {
        margin-left: 0;
        margin-right: 0
    }

    .form_cols_item {
        padding: 0 0;
        width: 100%
    }

    .form_cols_left {
        padding: 0 0;
        width: 100%
    }

    .form_cols_right {
        padding: 0 0;
        width: 100%
    }

    .order_title {
        font-size: 19px
    }

    .order h3 {
        margin: 27px 0 -1px
    }

    .transactions table th {
        padding: 3px 18px 12px 0
    }

    .transactions table td {
        font-size: 13px;
        line-height: 17px;
        padding: 15px 18px 15px 0
    }

    .order .coins {
        margin: 20px 25px -25px
    }

    .contact {
        padding: 30px 20px;
        display: block
    }

    .contact .jq-selectbox {
        width: 100%
    }

    textarea.form-control {
        height: 178px
    }

    .chart .form_cols_item {
        width: 100%;
        max-width: 100%
    }

    .chart_close {
        margin: 4px 0 7px 0
    }

    .chart_cont {
        padding: 0 20px 20px 20px
    }

    .chart_scroll {
        margin-right: -10px
    }

    .chart .scroll-wrapper>.scroll-content {
        padding: 0 10px 0 0
    }

    .dialog {
        padding-top: 20px
    }

    .chart_form {
        margin-top: 20px
    }

    .chart {
        padding: 30px 20px 20px
    }

    .chart,.contact {
        margin: 13px -20px 0;
        -webkit-border-radius: 0;
        border-radius: 0
    }

    .dialog_item_txt {
        width: auto;
        padding: 10px 15px
    }

    .chart_form textarea.form-control {
        font-size: 14px
    }

    .win {
        padding: 66px 20px 30px
    }

    .win .form_cols_item {
        width: 100%
    }

    .win .form_row {
        margin-bottom: 16px
    }
}

@media screen and (max-width: 599px) {
    body {
        font-size:14px
    }

    .h1,h1 {
        font-size: 30px;
        padding: 0 0 13px 0
    }

    .section {
        padding: 50px 0
    }

    .section-welcome {
        padding: 100px 0 50px
    }

    .welcome .h1,.welcome h1 {
        margin: 15px 0 0 0
    }

    .welcome_btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .welcome_btn .btn {
        margin: 0 0 20px;
        width: 192px
    }

    .bg-img1 {
        left: -23px
    }

    .bg-img2 {
        right: -48px
    }

    .logos_slider_img {
        height: 50px;
        margin: 15px 0
    }

    .coins {
        margin: 15px -10px 20px
    }

    .coins_item {
        height: 182px;
        max-width: 182px
    }

    .coins_item_soon {
        font-size: 14px;
        line-height: 18px
    }

    .coins_item_sign {
        height: 70px
    }

    .coins_item_icon {
        height: 83px;
        margin-bottom: 8px;
        width: 100px
    }

    .piqs {
        margin-top: 5px
    }

    .piqs_item_icon {
        width: 70px;
        height: 70px;
        min-width: 70px
    }

    .bg-img7 {
        right: -187px
    }

    .about_img {
        margin: 38px auto 41px
    }

    .bg-img8 {
        right: -39px
    }

    .acc {
        margin: 15px 0 0 0
    }

    .acc_item:before {
        left: 20px
    }

    .acc_item_num {
        margin-left: 0
    }

    .acc_item_cont {
        padding-left: 13px
    }

    .acc_item_txt {
        margin-top: 0
    }

    .acc_item.open .acc_item_title {
        font-size: 20px;
        line-height: 24px
    }

    .acc_item_img {
        -webkit-transform: translateX(24px);
        -ms-transform: translateX(24px);
        transform: translateX(24px)
    }

    .anon {
        margin: -10px -10px 30px
    }

    .anon_item {
        width: calc(100% - 20px);
        margin: 30px 10px 0
    }

    .anon_item_img {
        max-width: 200px;
        margin: 0 auto 15px;
        height: 200px
    }

    .bg-img10 {
        left: -95px
    }

    .bg-img11 {
        right: -73px
    }

    .offer_txt {
        margin: 0 auto 20px
    }

    .scenarios_cont ol {
        font-size: 17px;
        line-height: 23px
    }

    .piqs-inline .piqs_item {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .piqs-inline .piqs_item_icon {
        margin: 0 20px 0 0
    }

    .section-welcomewhy .piqs-inline {
        margin: -20px auto -28px;
        padding: 10px 20px
    }

    .crbg-img1 {
        left: -201px
    }

    .qbg-img1 {
        right: -136px
    }

    .qbg-img3 {
        left: -94px;
        bottom: 182px;
        width: 222px
    }

    .inbg-img5 {
        top: -60px;
        margin-left: -605px
    }

    .earn {
        max-width: 320px;
        margin: 35px auto 0
    }

    .earn_item {
        width: 100%;
        margin: 10px auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 20px;
        height: auto;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .earn_item_icon {
        margin: 0 20px 0 0
    }

    .section-join {
        padding: 20px 0 0
    }

    .join {
        padding: 50px 20px
    }

    .join .form_group .form-control {
        padding: 0 7px 0 15px
    }

    .join .btn {
        padding: 10px 15px
    }

    .jbg-img1 {
        width: 224px
    }

    .jbg-img2 {
        width: 240px;
        right: -80px;
        top: -30px
    }

    .join_form {
        margin: 10px auto 0
    }

    .section-offs {
        padding: 20px 0 0
    }

    .graf_title {
        font-size: 19px
    }

    .graf_big {
        font-size: 28px
    }

    .graf_sm {
        font-size: 22px
    }

    .graf_btn {
        margin: 18px 0 5px
    }

    .fees {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .fees_item {
        position: static;
        margin: 10px 0;
        margin-right: calc(100% - 224px)
    }

    .fees_item:nth-child(even) {
        margin-right: 0;
        margin-left: calc(100% - 224px)
    }

    .section-qualit-vs {
        padding-bottom: 20px
    }

    .section-qualit-vs .fees_img {
        margin-top: 0
    }

    .section-qualit-vs .fees_img:before {
        top: 139px
    }

    .headbg-img3 {
        width: 239px;
        left: -200px
    }

    .headbg-img4 {
        width: 239px;
        right: -164px;
        top: 231px
    }

    .section-faq.section {
        padding: 50px 0 0
    }

    .faq_item_opener {
        padding: 21px 26px 20px 0;
        font-size: 18px;
        line-height: 22px
    }

    .faq_item_opener [class*=" icon-"],.faq_item_opener [class^=icon-] {
        top: 22px;
        right: 0
    }

    .faq_item_drop {
        margin: -4px auto 0
    }

    .sorting {
        display: block;
        height: auto
    }

    .sorting_item {
        width: 100%
    }

    .search {
        width: 100%
    }

    .section-blog {
        padding: 54px 0 0
    }

    .headbg-img5 {
        left: -154px
    }

    .headbg-img6 {
        width: 220px;
        right: -143px;
        top: 56px
    }

    .section-article {
        padding: 80px 0 0
    }

    .article {
        font-size: 15px
    }

    .section-similar {
        padding-bottom: 0
    }

    .section-contact,.section-order {
        padding: 90px 0 0
    }

    .section-order h1 {
        font-size: 26px;
        line-height: 32px
    }

    .range_fl {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 23px
    }

    .range_fl .link-remove {
        margin-left: auto
    }

    .range_fl .form_inp {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin: 10px 0 0
    }

    .steps {
        display: block;
        padding: 20px 20px 15px
    }

    .steps_item {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 0 5px 0
    }

    .steps_item:before {
        display: none
    }

    .steps_item_icon {
        margin: 0 20px 0 0;
        font-size: 20px;
        width: 40px;
        height: 40px
    }

    .steps_item_icon img {
        width: 20px;
        height: 20px
    }

    .transfer_link {
        display: block
    }

    .transfer_link_qr {
        margin: 0 auto 30px
    }

    .form_label,.h5,h5 {
        font-size: 15px
    }

    .order .coins {
        margin: 20px -10px -35px
    }

    .errorpage_img-bg span {
        letter-spacing: -8px;
        font-size: 37vw
    }
}

@media screen and (max-width: 410px) {
    .numbs_item_big {
        font-size:20px
    }
}

@media screen and (max-width: 374px) {
    .h1,h1 {
        font-size:27px
    }

    .h2,h2 {
        font-size: 24px
    }

    .h3,h3 {
        font-size: 21px
    }

    .wrapper {
        padding: 0 10px
    }

    .why_item_img {
        max-width: 300px;
        height: 129px
    }

    .piqs_item_icon {
        width: 60px;
        height: 60px;
        min-width: 60px
    }

    .earn_item_icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0 18px 0 0
    }

    .join {
        padding: 40px 10px
    }

    .join .btn {
        padding: 10px 10px
    }

    .graf {
        padding: 10px
    }

    .graf_big {
        font-size: 26px
    }

    .numbs_item {
        padding: 10px
    }

    .numbs_item_icon {
        width: 60px;
        height: 60px;
        min-width: 60px
    }

    .numbs_item_title {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 8px
    }

    .numbs_item_big {
        font-size: 19px;
        line-height: 28px
    }

    .numbs_item_cont {
        padding-left: 10px
    }
}

span.success-primary {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    color: #68c9f9;
    text-align: left
}

span.success-green {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    color: #28a745;
    text-align: left
}

p.text-danger {
    color: #f77a68
}

p.text-success {
    color: #28a745
}

span.text-danger {
    color: #f77a68
}

span.text-success {
    color: #28a745
}

span.text-danger>b {
    color: #f77a68
}

span.text-success>b {
    color: #28a745
}

b.text-danger {
    color: #f77a68
}

b.text-success {
    color: #28a745
}

div.jq-file__name.error {
    color: #f88676
}

div.jq-file__browse.error {
    background: #ffb1b1;
    color: #fff
}

div.jq-file.form-file.error {
    border-color: #ffb1b1
}

.button_blocked {
    opacity: .5;
    cursor: not-allowed
}

.d-block {
    display: block!important
}

.font-1-5-rem {
    font-size: 1.5rem
}

.font-1-1-rem {
    font-size: 1.1rem
}

.warning.info-warning {
    background: #fbfeff;
    border: 1px solid #68c9f9
}

.warning.success-warning {
    background: #fbfeff;
    border: 1px solid #84e4a4
}

.transfer_link_qr.xl {
    width: 150px;
    min-width: 150px;
    height: 150px;
    padding: 0
}

.h-captcha {
    text-align: center;
    margin: 5px 0
}

.awaiting-coinjoin-notice {
    margin-top: 1rem;
    font-size: small;
    font-weight: lighter;
    display: none
}

@media only screen and (min-width: 1024px) {
    .trustpilot-right {
        right:5%;
        margin-top: 15px
    }

    .header_nav.header_lav_long ul li {
        margin: 0 15px 1px 0
    }
}

@media only screen and (max-width: 1023px) {
    .trustpilot-right {
        margin-top:15px
    }
}


.main-head {
	background: #0D1440;
	box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
	padding: 1rem;
	margin-bottom: 0;
	margin-top: 5rem;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 4px;
	font-size: 16px;
}

.pricing-table {
	background: #fff;
	box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
	padding: 2rem;
	border-radius: 4px;
	transition: .3s;
}

.pricing-table:hover {
	box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, .15);
}

.pricing-table .pricing-label {
	border-radius: 2px;
	padding: .25rem .5rem;
	margin-bottom: 1rem;
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
}

.pricing-table h2 {
	color: #3b3b3b;
	font-size: 24px;
	font-weight: 500;
}

.pricing-table h5 {
	color: #B3B3B3;
	font-size: 14px;
	font-weight: 400;
}

.pricing-table .pricing-features {
	margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
	font-size: 14px;
	margin: .5rem 0;
	color: #B3B3B3;
}

.pricing-table .pricing-features .feature span {
	display: inline-block;
	float: right;
	color: #3b3b3b;
	font-weight: 500;
}

.pricing-table 	.price-tag {
	margin-top: 2rem;
	text-align: center;
	font-weight: 500;
}

.pricing-table .price-tag .symbol {
	font-size: 24px;
}

.pricing-table .price-tag .amount {
	letter-spacing: -2px;
	font-size: 64px;
}

.pricing-table .price-tag .after {
	color: #3b3b3b;
	font-weight: 500;
}

.pricing-table .price-button {
	display: block;
	color: #fff;
	margin-top: 2rem;
	padding: .75rem;
	border-radius: 2px;
	text-align: center;
	font-weight: 500;
	transition: .3s;
}

.pricing-table .price-button:hover {
	text-decoration: none;
}

.purple .pricing-label {
	background: #cad2ff;
	color: #627afe;
}

.purple .price-tag {
	color: #627afe;
}

.purple .price-button {
	background: #627afe;
}

.purple .price-button:hover {
	background: #546dfe;
}

.turquoise .pricing-label {
	background: #b9edee;
	color: #44cdd2;
}

.turquoise .price-tag {
	color: #44cdd2;
}

.turquoise .price-button {
	background: #44cdd2;
}

.turquoise .price-button:hover {
	background: #2dbcc4;
}

.red .pricing-label {
	background: #ffc4c4;
	color: #ff5e5e;
}

.red .price-tag {
	color: #ff5e5e;
}

.red .price-button {
	background: #ff5e5e;
}

.red .price-button:hover {
	background: #f23c3c;
}