@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/







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

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

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

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        transform: none;
    }
}

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

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

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

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

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

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

    100% {
        transform: none;
    }
}

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

@-webkit-keyframes jello {
    11.1% {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
    100% {
        transform: none
    }
}

@keyframes jello {
    11.1% {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
    100% {
        transform: none
    }
}


.jello {
    -webkit-animation-name: jello;
    animation-name: jello;

    transform-origin: center
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

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

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

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

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

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

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

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        transform: none;
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        transform: none;
    }
}

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

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

    100% {
        transform: none;
    }
}

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

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

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

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        opacity: 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;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.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;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        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% {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

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

    100% {
        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% {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

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

    33.333% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }

    66.666666% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

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

    33.333% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }

    66.666666% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

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

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

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

    100% {
        opacity: 0;
    }
}

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

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideOutDown {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

@keyframes slideOutLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

@keyframes slideOutRight {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

@keyframes slideOutUp {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

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

@keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-webkit-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

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

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

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.html") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/* Slider */
.slick-slider {
    position: relative;

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

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

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

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

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

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

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

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

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

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

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

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

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.fa,
.fas,
.far,
.fal,
.fab {
    -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: 0.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: solid 0.08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    transform: scale(1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    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;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.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-adobe:before {
    content: "\F778";
}

.fa-adversal:before {
    content: "\F36A";
}

.fa-affiliatetheme:before {
    content: "\F36B";
}

.fa-air-freshener:before {
    content: "\F5D0";
}

.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-balance-scale:before {
    content: "\F24E";
}

.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-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-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-open:before {
    content: "\F518";
}

.fa-book-reader:before {
    content: "\F5DA";
}

.fa-bookmark:before {
    content: "\F02E";
}

.fa-bowling-ball:before {
    content: "\F436";
}

.fa-box:before {
    content: "\F466";
}

.fa-box-open:before {
    content: "\F49E";
}

.fa-boxes:before {
    content: "\F468";
}

.fa-braille:before {
    content: "\F2A1";
}

.fa-brain:before {
    content: "\F5DC";
}

.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-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-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-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-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-church:before {
    content: "\F51D";
}

.fa-circle:before {
    content: "\F111";
}

.fa-circle-notch:before {
    content: "\F1CE";
}

.fa-city:before {
    content: "\F64F";
}

.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-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-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-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-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-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-dashcube:before {
    content: "\F210";
}

.fa-database:before {
    content: "\F1C0";
}

.fa-deaf:before {
    content: "\F2A4";
}

.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-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-edit:before {
    content: "\F044";
}

.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-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-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-fantasy-flight-games:before {
    content: "\F6DC";
}

.fa-fast-backward:before {
    content: "\F049";
}

.fa-fast-forward:before {
    content: "\F050";
}

.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-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-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-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-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-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-usd:before {
    content: "\F4C0";
}

.fa-hand-lizard:before {
    content: "\F258";
}

.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-spock:before {
    content: "\F259";
}

.fa-hands:before {
    content: "\F4C2";
}

.fa-hands-helping:before {
    content: "\F4C4";
}

.fa-handshake:before {
    content: "\F2B5";
}

.fa-hanukiah:before {
    content: "\F6E6";
}

.fa-hashtag:before {
    content: "\F292";
}

.fa-hat-wizard:before {
    content: "\F6E8";
}

.fa-haykal:before {
    content: "\F666";
}

.fa-hdd:before {
    content: "\F0A0";
}

.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-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-hot-tub:before {
    content: "\F593";
}

.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-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-icicles:before {
    content: "\F7AD";
}

.fa-id-badge:before {
    content: "\F2C1";
}

.fa-id-card:before {
    content: "\F2C2";
}

.fa-id-card-alt:before {
    content: "\F47F";
}

.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-instagram:before {
    content: "\F16D";
}

.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-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-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-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-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-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-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-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-nintendo-switch:before {
    content: "\F418";
}

.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-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-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-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-carry:before {
    content: "\F4CE";
}

.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-slash:before {
    content: "\F3DD";
}

.fa-phone-square:before {
    content: "\F098";
}

.fa-phone-volume:before {
    content: "\F2A0";
}

.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-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-place-of-worship:before {
    content: "\F67F";
}

.fa-plane:before {
    content: "\F072";
}

.fa-plane-arrival:before {
    content: "\F5AF";
}

.fa-plane-departure:before {
    content: "\F5B0";
}

.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-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-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-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-sad-cry:before {
    content: "\F5B3";
}

.fa-sad-tear:before {
    content: "\F5B4";
}

.fa-safari:before {
    content: "\F267";
}

.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-ship:before {
    content: "\F21A";
}

.fa-shipping-fast:before {
    content: "\F48B";
}

.fa-shirtsinbulk:before {
    content: "\F214";
}

.fa-shoe-prints:before {
    content: "\F54B";
}

.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-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-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-up:before {
    content: "\F15E";
}

.fa-sort-amount-down:before {
    content: "\F160";
}

.fa-sort-amount-up:before {
    content: "\F161";
}

.fa-sort-down:before {
    content: "\F0DD";
}

.fa-sort-numeric-down:before {
    content: "\F162";
}

.fa-sort-numeric-up:before {
    content: "\F163";
}

.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-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-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-store:before {
    content: "\F54E";
}

.fa-store-alt:before {
    content: "\F54F";
}

.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-swimmer:before {
    content: "\F5C4";
}

.fa-swimming-pool:before {
    content: "\F5C5";
}

.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-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-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-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-tree:before {
    content: "\F1BB";
}

.fa-trello:before {
    content: "\F181";
}

.fa-tripadvisor:before {
    content: "\F262";
}

.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-umbrella:before {
    content: "\F0E9";
}

.fa-umbrella-beach:before {
    content: "\F5CA";
}

.fa-underline:before {
    content: "\F0CD";
}

.fa-undo:before {
    content: "\F0E2";
}

.fa-undo-alt:before {
    content: "\F2EA";
}

.fa-uniregistry:before {
    content: "\F404";
}

.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-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-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-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-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-vk:before {
    content: "\F189";
}

.fa-vnv:before {
    content: "\F40B";
}

.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-water:before {
    content: "\F773";
}

.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-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-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: normal;
    src: url("../fonts/fa-brands-400.eot");
    src: url("../fonts/fa-brands-400d41d.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/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;
    src: url("../fonts/fa-regular-400.eot");
    src: url("../fonts/fa-regular-400d41d.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/fa-solid-900.eot");
    src: url("../fonts/fa-solid-900d41d.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/*
  	Flaticon icon font: Flaticon
  	Creation date: 04/02/2019 11:05
  	*/

@font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.eot");
    src: url("../fonts/Flaticond41d.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Flaticon.woff2") format("woff2"),
    url("../fonts/Flaticon.woff") format("woff"),
    url("../fonts/Flaticon.ttf") format("truetype"),
    url("../fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "Flaticon";
        src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
    }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-style: normal;
}

.flaticon-right-quotes-symbol:before {
    content: "\F100";
}

.flaticon-trifolded-map:before {
    content: "\F101";
}

.flaticon-smiling-girl:before {
    content: "\F102";
}

.flaticon-clock:before {
    content: "\F103";
}

.flaticon-girl:before {
    content: "\F104";
}

.flaticon-notebook:before {
    content: "\F105";
}

.flaticon-edit:before {
    content: "\F106";
}

.flaticon-placeholder:before {
    content: "\F107";
}

.flaticon-paper-plane:before {
    content: "\F108";
}

.flaticon-user:before {
    content: "\F109";
}

.flaticon-unlink:before {
    content: "\F10A";
}

.flaticon-success:before {
    content: "\F10B";
}

.flaticon-search:before {
    content: "\F10C";
}

.flaticon-drop:before {
    content: "\F10D";
}

.flaticon-christmas-tree:before {
    content: "\F10E";
}

.flaticon-plus:before {
    content: "\F10F";
}

.flaticon-rocket-ship:before {
    content: "\F110";
}

.flaticon-battery:before {
    content: "\F111";
}

.flaticon-target:before {
    content: "\F112";
}

.flaticon-classroom:before {
    content: "\F113";
}

.flaticon-first-aid-kit:before {
    content: "\F114";
}

.flaticon-tablet:before {
    content: "\F115";
}

.flaticon-dustbin:before {
    content: "\F116";
}

.flaticon-telegram-logo:before {
    content: "\F117";
}

.flaticon-business:before {
    content: "\F118";
}

.flaticon-4-square-shapes:before {
    content: "\F119";
}

.flaticon-speech-bubble-and-three-dots:before {
    content: "\F11A";
}

.flaticon-man:before {
    content: "\F11B";
}

.flaticon-music:before {
    content: "\F11C";
}

.flaticon-tree-of-love:before {
    content: "\F11D";
}

.flaticon-play-button:before {
    content: "\F11E";
}

.flaticon-long-arrow-pointing-to-the-right:before {
    content: "\F11F";
}

.flaticon-envelope-of-white-paper:before {
    content: "\F120";
}

.flaticon-royal-crown-of-elegant-vintage-design:before {
    content: "\F121";
}

.flaticon-desktop-computer-with-magnifying-lens-focusing-on-data:before {
    content: "\F122";
}

.flaticon-test-tube-flask-and-drop-of-blood:before {
    content: "\F123";
}

.flaticon-arrows:before {
    content: "\F124";
}

.flaticon-stocks-graphic-on-laptop-monitor:before {
    content: "\F125";
}

.flaticon-attachment:before {
    content: "\F126";
}

.flaticon-transport:before {
    content: "\F127";
}

.flaticon-recycle-triangle-of-three-arrows-outlines:before {
    content: "\F128";
}

.flaticon-arrows-1:before {
    content: "\F129";
}

.flaticon-snowflake:before {
    content: "\F12A";
}

.flaticon-clock-1:before {
    content: "\F12B";
}

.flaticon-find-in-folder:before {
    content: "\F12C";
}

.flaticon-smartphone:before {
    content: "\F12D";
}

.flaticon-arrow-pointing-to-right:before {
    content: "\F12E";
}

.flaticon-gas-pump:before {
    content: "\F12F";
}

.flaticon-house-silhouette:before {
    content: "\F130";
}

.flaticon-cancel-music:before {
    content: "\F131";
}

.flaticon-arrows-2:before {
    content: "\F132";
}

.flaticon-floor:before {
    content: "\F133";
}

.flaticon-exercise:before {
    content: "\F134";
}

.flaticon-love-planet:before {
    content: "\F135";
}

.flaticon-workers:before {
    content: "\F136";
}

.flaticon-open-magazine:before {
    content: "\F137";
}

.flaticon-confirm-schedule:before {
    content: "\F138";
}

.flaticon-star:before {
    content: "\F139";
}

.flaticon-right-arrow:before {
    content: "\F13A";
}

.flaticon-left-arrow:before {
    content: "\F13B";
}

.flaticon-order:before {
    content: "\F13C";
}

.flaticon-key:before {
    content: "\F13D";
}

.flaticon-medical:before {
    content: "\F13E";
}

.flaticon-bank:before {
    content: "\F13F";
}

.flaticon-smartphone-1:before {
    content: "\F140";
}

.flaticon-plug:before {
    content: "\F141";
}

.flaticon-arrows-3:before {
    content: "\F142";
}

.flaticon-arrows-4:before {
    content: "\F143";
}

.flaticon-money-bag:before {
    content: "\F144";
}

.flaticon-settings:before {
    content: "\F145";
}

.flaticon-next:before {
    content: "\F146";
}

.flaticon-back:before {
    content: "\F147";
}

.flaticon-reload:before {
    content: "\F148";
}

.flaticon-headphones:before {
    content: "\F149";
}

.flaticon-shopping-bag:before {
    content: "\F14A";
}

.flaticon-signs:before {
    content: "\F14B";
}

.flaticon-diamond:before {
    content: "\F14C";
}

.flaticon-chat:before {
    content: "\F14D";
}

.flaticon-phone:before {
    content: "\F14E";
}

.flaticon-down-chevron:before {
    content: "\F14F";
}

.flaticon-up-chevron:before {
    content: "\F150";
}

.flaticon-stairs:before {
    content: "\F151";
}

.flaticon-music-player:before {
    content: "\F152";
}

.flaticon-play-button-1:before {
    content: "\F153";
}

.flaticon-speaker:before {
    content: "\F154";
}

.flaticon-menu:before {
    content: "\F155";
}

.flaticon-calculator:before {
    content: "\F156";
}

.flaticon-share:before {
    content: "\F157";
}

.flaticon-map:before {
    content: "\F158";
}

.flaticon-hourglass:before {
    content: "\F159";
}

.flaticon-layers:before {
    content: "\F15A";
}

.flaticon-settings-1:before {
    content: "\F15B";
}

.flaticon-clock-2:before {
    content: "\F15C";
}

.flaticon-alarm-clock:before {
    content: "\F15D";
}

.flaticon-file:before {
    content: "\F15E";
}

.flaticon-list:before {
    content: "\F15F";
}

.flaticon-home:before {
    content: "\F160";
}

.flaticon-star-1:before {
    content: "\F161";
}

.flaticon-bar-chart:before {
    content: "\F162";
}

.flaticon-handshake:before {
    content: "\F163";
}

.flaticon-time:before {
    content: "\F164";
}

.flaticon-worldwide:before {
    content: "\F165";
}

.flaticon-board:before {
    content: "\F166";
}

.flaticon-twitter:before {
    content: "\F167";
}

.flaticon-smartphone-2:before {
    content: "\F168";
}

.flaticon-mobile:before {
    content: "\F169";
}

.flaticon-location-pin:before {
    content: "\F16A";
}

.flaticon-maps-and-flags:before {
    content: "\F16B";
}

.flaticon-add:before {
    content: "\F16C";
}

.flaticon-substract:before {
    content: "\F16D";
}

.flaticon-phone-call:before {
    content: "\F16E";
}

.flaticon-mail:before {
    content: "\F16F";
}

.flaticon-folder:before {
    content: "\F170";
}

.flaticon-shopping-cart:before {
    content: "\F171";
}

.flaticon-monitor:before {
    content: "\F172";
}

.flaticon-menu-1:before {
    content: "\F173";
}

.flaticon-cancel:before {
    content: "\F174";
}

.flaticon-up-arrow-inside-circle:before {
    content: "\F175";
}

.flaticon-circular-down-arrow-button:before {
    content: "\F176";
}

.flaticon-24-hours:before {
    content: "\F177";
}

.flaticon-t-shirt-outline:before {
    content: "\F178";
}

.flaticon-folder-outline:before {
    content: "\F179";
}

.flaticon-quote:before {
    content: "\F17A";
}

.flaticon-play-button-2:before {
    content: "\F17B";
}

.flaticon-right-quotation-sign:before {
    content: "\F17C";
}

.flaticon-left-quotes-sign:before {
    content: "\F17D";
}

.flaticon-up-arrow:before {
    content: "\F17E";
}

.flaticon-telephone:before {
    content: "\F17F";
}

.flaticon-open-mail-interface-symbol:before {
    content: "\F180";
}

.flaticon-menu-button:before {
    content: "\F181";
}

.flaticon-laptop:before {
    content: "\F182";
}

.flaticon-smartphone-3:before {
    content: "\F183";
}

.flaticon-add-1:before {
    content: "\F184";
}

.flaticon-user-1:before {
    content: "\F185";
}

.flaticon-briefcase:before {
    content: "\F186";
}

.flaticon-play-button-3:before {
    content: "\F187";
}

.flaticon-play-button-4:before {
    content: "\F188";
}

.flaticon-support:before {
    content: "\F189";
}

.flaticon-telephone-receiver:before {
    content: "\F18A";
}

.flaticon-close:before {
    content: "\F18B";
}

.flaticon-heart:before {
    content: "\F18C";
}

.flaticon-renewable:before {
    content: "\F18D";
}

.flaticon-shopping-cart-1:before {
    content: "\F18E";
}

.flaticon-bar-chart-1:before {
    content: "\F18F";
}

.flaticon-profit:before {
    content: "\F190";
}

.flaticon-settings-2:before {
    content: "\F191";
}

.flaticon-tick-inside-a-circle:before {
    content: "\F192";
}

.flaticon-confirm:before {
    content: "\F193";
}

.flaticon-video-player:before {
    content: "\F194";
}

.flaticon-edit-1:before {
    content: "\F195";
}

.flaticon-share-1:before {
    content: "\F196";
}

.flaticon-set-square:before {
    content: "\F197";
}

.flaticon-set-square-1:before {
    content: "\F198";
}

.flaticon-setting:before {
    content: "\F199";
}

.flaticon-stars:before {
    content: "\F19A";
}

.flaticon-check:before {
    content: "\F19B";
}

.flaticon-moon:before {
    content: "\F19C";
}

.flaticon-star-2:before {
    content: "\F19D";
}

.flaticon-decreasing:before {
    content: "\F19E";
}

.flaticon-graph:before {
    content: "\F19F";
}

.flaticon-search-1:before {
    content: "\F1A0";
}

.flaticon-multi-tab:before {
    content: "\F1A1";
}

.flaticon-graph-1:before {
    content: "\F1A2";
}

.flaticon-graph-2:before {
    content: "\F1A3";
}

.flaticon-tick:before {
    content: "\F1A4";
}

.flaticon-next-1:before {
    content: "\F1A5";
}

.flaticon-trophy:before {
    content: "\F1A6";
}

.flaticon-pin:before {
    content: "\F1A7";
}

.flaticon-small-calendar:before {
    content: "\F1A8";
}

.flaticon-alarm-clock-1:before {
    content: "\F1A9";
}

.flaticon-shopping-cart-2:before {
    content: "\F1AA";
}

.flaticon-magnifying-glass:before {
    content: "\F1AB";
}

.flaticon-close-1:before {
    content: "\F1AC";
}

.flaticon-lady:before {
    content: "\F1AD";
}

.flaticon-peace:before {
    content: "\F1AE";
}

.flaticon-avatar:before {
    content: "\F1AF";
}

.flaticon-computer:before {
    content: "\F1B0";
}

.flaticon-monitor-1:before {
    content: "\F1B1";
}

.flaticon-monitor-2:before {
    content: "\F1B2";
}

.flaticon-analytics:before {
    content: "\F1B3";
}

.flaticon-management:before {
    content: "\F1B4";
}

.flaticon-checklist:before {
    content: "\F1B5";
}

.flaticon-idea:before {
    content: "\F1B6";
}

.flaticon-clipboard:before {
    content: "\F1B7";
}

.flaticon-trophy-1:before {
    content: "\F1B8";
}

.flaticon-shopping-list:before {
    content: "\F1B9";
}

.flaticon-strategy:before {
    content: "\F1BA";
}

.flaticon-speaker-1:before {
    content: "\F1BB";
}

.flaticon-development:before {
    content: "\F1BC";
}

.flaticon-handshake-1:before {
    content: "\F1BD";
}

.flaticon-earth-grid:before {
    content: "\F1BE";
}

.flaticon-notification:before {
    content: "\F1BF";
}

.flaticon-chat-1:before {
    content: "\F1C0";
}

.flaticon-talk:before {
    content: "\F1C1";
}

.flaticon-file-1:before {
    content: "\F1C2";
}

.flaticon-speech-bubble:before {
    content: "\F1C3";
}

.flaticon-diamond-1:before {
    content: "\F1C4";
}

.flaticon-quality:before {
    content: "\F1C5";
}

.flaticon-diamond-2:before {
    content: "\F1C6";
}

.flaticon-html:before {
    content: "\F1C7";
}

.flaticon-css:before {
    content: "\F1C8";
}

.flaticon-coding:before {
    content: "\F1C9";
}

.flaticon-browser:before {
    content: "\F1CA";
}

.flaticon-cloud-computing:before {
    content: "\F1CB";
}

.flaticon-users:before {
    content: "\F1CC";
}

.flaticon-users-1:before {
    content: "\F1CD";
}

.flaticon-star-3:before {
    content: "\F1CE";
}

.flaticon-star-4:before {
    content: "\F1CF";
}

.flaticon-like:before {
    content: "\F1D0";
}

.flaticon-like-1:before {
    content: "\F1D1";
}

.flaticon-chain:before {
    content: "\F1D2";
}

.flaticon-hyperlink:before {
    content: "\F1D3";
}

@font-face {
    font-family: 'simple-line-icons';
    src: url('../fonts/Simple-Line-Iconsb26c.eot?v=2.4.0');
    src: url('../fonts/Simple-Line-Iconsb26c.eot?v=2.4.0#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Iconsb26c.woff2?v=2.4.0') format('woff2'), url('../fonts/Simple-Line-Iconsb26c.ttf?v=2.4.0') format('truetype'), url('../fonts/Simple-Line-Iconsb26c.woff?v=2.4.0') format('woff'), url('../fonts/Simple-Line-Iconsb26c.svg?v=2.4.0#simple-line-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
 Use the following CSS code if you want to have a class per icon.
 Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
*/
.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-minus,
.icon-close,
.icon-event,
.icon-exclamation,
.icon-organization,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calendar,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pinterest,
.icon-social-github,
.icon-social-google,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox,
.icon-social-vkontakte,
.icon-social-steam {
    font-family: 'simple-line-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-user:before {
    content: "\E005";
}

.icon-people:before {
    content: "\E001";
}

.icon-user-female:before {
    content: "\E000";
}

.icon-user-follow:before {
    content: "\E002";
}

.icon-user-following:before {
    content: "\E003";
}

.icon-user-unfollow:before {
    content: "\E004";
}

.icon-login:before {
    content: "\E066";
}

.icon-logout:before {
    content: "\E065";
}

.icon-emotsmile:before {
    content: "\E021";
}

.icon-phone:before {
    content: "\E600";
}

.icon-call-end:before {
    content: "\E048";
}

.icon-call-in:before {
    content: "\E047";
}

.icon-call-out:before {
    content: "\E046";
}

.icon-map:before {
    content: "\E033";
}

.icon-location-pin:before {
    content: "\E096";
}

.icon-direction:before {
    content: "\E042";
}

.icon-directions:before {
    content: "\E041";
}

.icon-compass:before {
    content: "\E045";
}

.icon-layers:before {
    content: "\E034";
}

.icon-menu:before {
    content: "\E601";
}

.icon-list:before {
    content: "\E067";
}

.icon-options-vertical:before {
    content: "\E602";
}

.icon-options:before {
    content: "\E603";
}

.icon-arrow-down:before {
    content: "\E604";
}

.icon-arrow-left:before {
    content: "\E605";
}

.icon-arrow-right:before {
    content: "\E606";
}

.icon-arrow-up:before {
    content: "\E607";
}

.icon-arrow-up-circle:before {
    content: "\E078";
}

.icon-arrow-left-circle:before {
    content: "\E07A";
}

.icon-arrow-right-circle:before {
    content: "\E079";
}

.icon-arrow-down-circle:before {
    content: "\E07B";
}

.icon-check:before {
    content: "\E080";
}

.icon-clock:before {
    content: "\E081";
}

.icon-plus:before {
    content: "\E095";
}

.icon-minus:before {
    content: "\E615";
}

.icon-close:before {
    content: "\E082";
}

.icon-event:before {
    content: "\E619";
}

.icon-exclamation:before {
    content: "\E617";
}

.icon-organization:before {
    content: "\E616";
}

.icon-trophy:before {
    content: "\E006";
}

.icon-screen-smartphone:before {
    content: "\E010";
}

.icon-screen-desktop:before {
    content: "\E011";
}

.icon-plane:before {
    content: "\E012";
}

.icon-notebook:before {
    content: "\E013";
}

.icon-mustache:before {
    content: "\E014";
}

.icon-mouse:before {
    content: "\E015";
}

.icon-magnet:before {
    content: "\E016";
}

.icon-energy:before {
    content: "\E020";
}

.icon-disc:before {
    content: "\E022";
}

.icon-cursor:before {
    content: "\E06E";
}

.icon-cursor-move:before {
    content: "\E023";
}

.icon-crop:before {
    content: "\E024";
}

.icon-chemistry:before {
    content: "\E026";
}

.icon-speedometer:before {
    content: "\E007";
}

.icon-shield:before {
    content: "\E00E";
}

.icon-screen-tablet:before {
    content: "\E00F";
}

.icon-magic-wand:before {
    content: "\E017";
}

.icon-hourglass:before {
    content: "\E018";
}

.icon-graduation:before {
    content: "\E019";
}

.icon-ghost:before {
    content: "\E01A";
}

.icon-game-controller:before {
    content: "\E01B";
}

.icon-fire:before {
    content: "\E01C";
}

.icon-eyeglass:before {
    content: "\E01D";
}

.icon-envelope-open:before {
    content: "\E01E";
}

.icon-envelope-letter:before {
    content: "\E01F";
}

.icon-bell:before {
    content: "\E027";
}

.icon-badge:before {
    content: "\E028";
}

.icon-anchor:before {
    content: "\E029";
}

.icon-wallet:before {
    content: "\E02A";
}

.icon-vector:before {
    content: "\E02B";
}

.icon-speech:before {
    content: "\E02C";
}

.icon-puzzle:before {
    content: "\E02D";
}

.icon-printer:before {
    content: "\E02E";
}

.icon-present:before {
    content: "\E02F";
}

.icon-playlist:before {
    content: "\E030";
}

.icon-pin:before {
    content: "\E031";
}

.icon-picture:before {
    content: "\E032";
}

.icon-handbag:before {
    content: "\E035";
}

.icon-globe-alt:before {
    content: "\E036";
}

.icon-globe:before {
    content: "\E037";
}

.icon-folder-alt:before {
    content: "\E039";
}

.icon-folder:before {
    content: "\E089";
}

.icon-film:before {
    content: "\E03A";
}

.icon-feed:before {
    content: "\E03B";
}

.icon-drop:before {
    content: "\E03E";
}

.icon-drawer:before {
    content: "\E03F";
}

.icon-docs:before {
    content: "\E040";
}

.icon-doc:before {
    content: "\E085";
}

.icon-diamond:before {
    content: "\E043";
}

.icon-cup:before {
    content: "\E044";
}

.icon-calculator:before {
    content: "\E049";
}

.icon-bubbles:before {
    content: "\E04A";
}

.icon-briefcase:before {
    content: "\E04B";
}

.icon-book-open:before {
    content: "\E04C";
}

.icon-basket-loaded:before {
    content: "\E04D";
}

.icon-basket:before {
    content: "\E04E";
}

.icon-bag:before {
    content: "\E04F";
}

.icon-action-undo:before {
    content: "\E050";
}

.icon-action-redo:before {
    content: "\E051";
}

.icon-wrench:before {
    content: "\E052";
}

.icon-umbrella:before {
    content: "\E053";
}

.icon-trash:before {
    content: "\E054";
}

.icon-tag:before {
    content: "\E055";
}

.icon-support:before {
    content: "\E056";
}

.icon-frame:before {
    content: "\E038";
}

.icon-size-fullscreen:before {
    content: "\E057";
}

.icon-size-actual:before {
    content: "\E058";
}

.icon-shuffle:before {
    content: "\E059";
}

.icon-share-alt:before {
    content: "\E05A";
}

.icon-share:before {
    content: "\E05B";
}

.icon-rocket:before {
    content: "\E05C";
}

.icon-question:before {
    content: "\E05D";
}

.icon-pie-chart:before {
    content: "\E05E";
}

.icon-pencil:before {
    content: "\E05F";
}

.icon-note:before {
    content: "\E060";
}

.icon-loop:before {
    content: "\E064";
}

.icon-home:before {
    content: "\E069";
}

.icon-grid:before {
    content: "\E06A";
}

.icon-graph:before {
    content: "\E06B";
}

.icon-microphone:before {
    content: "\E063";
}

.icon-music-tone-alt:before {
    content: "\E061";
}

.icon-music-tone:before {
    content: "\E062";
}

.icon-earphones-alt:before {
    content: "\E03C";
}

.icon-earphones:before {
    content: "\E03D";
}

.icon-equalizer:before {
    content: "\E06C";
}

.icon-like:before {
    content: "\E068";
}

.icon-dislike:before {
    content: "\E06D";
}

.icon-control-start:before {
    content: "\E06F";
}

.icon-control-rewind:before {
    content: "\E070";
}

.icon-control-play:before {
    content: "\E071";
}

.icon-control-pause:before {
    content: "\E072";
}

.icon-control-forward:before {
    content: "\E073";
}

.icon-control-end:before {
    content: "\E074";
}

.icon-volume-1:before {
    content: "\E09F";
}

.icon-volume-2:before {
    content: "\E0A0";
}

.icon-volume-off:before {
    content: "\E0A1";
}

.icon-calendar:before {
    content: "\E075";
}

.icon-bulb:before {
    content: "\E076";
}

.icon-chart:before {
    content: "\E077";
}

.icon-ban:before {
    content: "\E07C";
}

.icon-bubble:before {
    content: "\E07D";
}

.icon-camrecorder:before {
    content: "\E07E";
}

.icon-camera:before {
    content: "\E07F";
}

.icon-cloud-download:before {
    content: "\E083";
}

.icon-cloud-upload:before {
    content: "\E084";
}

.icon-envelope:before {
    content: "\E086";
}

.icon-eye:before {
    content: "\E087";
}

.icon-flag:before {
    content: "\E088";
}

.icon-heart:before {
    content: "\E08A";
}

.icon-info:before {
    content: "\E08B";
}

.icon-key:before {
    content: "\E08C";
}

.icon-link:before {
    content: "\E08D";
}

.icon-lock:before {
    content: "\E08E";
}

.icon-lock-open:before {
    content: "\E08F";
}

.icon-magnifier:before {
    content: "\E090";
}

.icon-magnifier-add:before {
    content: "\E091";
}

.icon-magnifier-remove:before {
    content: "\E092";
}

.icon-paper-clip:before {
    content: "\E093";
}

.icon-paper-plane:before {
    content: "\E094";
}

.icon-power:before {
    content: "\E097";
}

.icon-refresh:before {
    content: "\E098";
}

.icon-reload:before {
    content: "\E099";
}

.icon-settings:before {
    content: "\E09A";
}

.icon-star:before {
    content: "\E09B";
}

.icon-symbol-female:before {
    content: "\E09C";
}

.icon-symbol-male:before {
    content: "\E09D";
}

.icon-target:before {
    content: "\E09E";
}

.icon-credit-card:before {
    content: "\E025";
}

.icon-paypal:before {
    content: "\E608";
}

.icon-social-tumblr:before {
    content: "\E00A";
}

.icon-social-twitter:before {
    content: "\E009";
}

.icon-social-facebook:before {
    content: "\E00B";
}

.icon-social-instagram:before {
    content: "\E609";
}

.icon-social-linkedin:before {
    content: "\E60A";
}

.icon-social-pinterest:before {
    content: "\E60B";
}

.icon-social-github:before {
    content: "\E60C";
}

.icon-social-google:before {
    content: "\E60D";
}

.icon-social-reddit:before {
    content: "\E60E";
}

.icon-social-skype:before {
    content: "\E60F";
}

.icon-social-dribbble:before {
    content: "\E00D";
}

.icon-social-behance:before {
    content: "\E610";
}

.icon-social-foursqare:before {
    content: "\E611";
}

.icon-social-soundcloud:before {
    content: "\E612";
}

.icon-social-spotify:before {
    content: "\E613";
}

.icon-social-stumbleupon:before {
    content: "\E614";
}

.icon-social-youtube:before {
    content: "\E008";
}

.icon-social-dropbox:before {
    content: "\E00C";
}

.icon-social-vkontakte:before {
    content: "\E618";
}

.icon-social-steam:before {
    content: "\E620";
}

@font-face {
    font-family: 'ElegantIcons';
    src: url('../fonts/ElegantIcons.eot');
    src: url('../fonts/ElegantIconsd41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ElegantIcons.woff') format('woff'),
    url('../fonts/ElegantIcons.ttf') format('truetype'),
    url('../fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'ElegantIcons';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="your-class-prefix"] {
*/
.arrow_up, .arrow_down, .arrow_left, .arrow_right, .arrow_left-up, .arrow_right-up, .arrow_right-down, .arrow_left-down, .arrow-up-down, .arrow_up-down_alt, .arrow_left-right_alt, .arrow_left-right, .arrow_expand_alt2, .arrow_expand_alt, .arrow_condense, .arrow_expand, .arrow_move, .arrow_carrot-up, .arrow_carrot-down, .arrow_carrot-left, .arrow_carrot-right, .arrow_carrot-2up, .arrow_carrot-2down, .arrow_carrot-2left, .arrow_carrot-2right, .arrow_carrot-up_alt2, .arrow_carrot-down_alt2, .arrow_carrot-left_alt2, .arrow_carrot-right_alt2, .arrow_carrot-2up_alt2, .arrow_carrot-2down_alt2, .arrow_carrot-2left_alt2, .arrow_carrot-2right_alt2, .arrow_triangle-up, .arrow_triangle-down, .arrow_triangle-left, .arrow_triangle-right, .arrow_triangle-up_alt2, .arrow_triangle-down_alt2, .arrow_triangle-left_alt2, .arrow_triangle-right_alt2, .arrow_back, .icon_minus-06, .icon_plus, .icon_close, .icon_check, .icon_minus_alt2, .icon_plus_alt2, .icon_close_alt2, .icon_check_alt2, .icon_zoom-out_alt, .icon_zoom-in_alt, .icon_search, .icon_box-empty, .icon_box-selected, .icon_minus-box, .icon_plus-box, .icon_box-checked, .icon_circle-empty, .icon_circle-slelected, .icon_stop_alt2, .icon_stop, .icon_pause_alt2, .icon_pause, .icon_menu, .icon_menu-square_alt2, .icon_menu-circle_alt2, .icon_ul, .icon_ol, .icon_adjust-horiz, .icon_adjust-vert, .icon_document_alt, .icon_documents_alt, .icon_pencil, .icon_pencil-edit_alt, .icon_pencil-edit, .icon_folder-alt, .icon_folder-open_alt, .icon_folder-add_alt, .icon_info_alt, .icon_error-oct_alt, .icon_error-circle_alt, .icon_error-triangle_alt, .icon_question_alt2, .icon_question, .icon_comment_alt, .icon_chat_alt, .icon_vol-mute_alt, .icon_volume-low_alt, .icon_volume-high_alt, .icon_quotations, .icon_quotations_alt2, .icon_clock_alt, .icon_lock_alt, .icon_lock-open_alt, .icon_key_alt, .icon_cloud_alt, .icon_cloud-upload_alt, .icon_cloud-download_alt, .icon_image, .icon_images, .icon_lightbulb_alt, .icon_gift_alt, .icon_house_alt, .icon_genius, .icon_mobile, .icon_tablet, .icon_laptop, .icon_desktop, .icon_camera_alt, .icon_mail_alt, .icon_cone_alt, .icon_ribbon_alt, .icon_bag_alt, .icon_creditcard, .icon_cart_alt, .icon_paperclip, .icon_tag_alt, .icon_tags_alt, .icon_trash_alt, .icon_cursor_alt, .icon_mic_alt, .icon_compass_alt, .icon_pin_alt, .icon_pushpin_alt, .icon_map_alt, .icon_drawer_alt, .icon_toolbox_alt, .icon_book_alt, .icon_calendar, .icon_film, .icon_table, .icon_contacts_alt, .icon_headphones, .icon_lifesaver, .icon_piechart, .icon_refresh, .icon_link_alt, .icon_link, .icon_loading, .icon_blocked, .icon_archive_alt, .icon_heart_alt, .icon_star_alt, .icon_star-half_alt, .icon_star, .icon_star-half, .icon_tools, .icon_tool, .icon_cog, .icon_cogs, .arrow_up_alt, .arrow_down_alt, .arrow_left_alt, .arrow_right_alt, .arrow_left-up_alt, .arrow_right-up_alt, .arrow_right-down_alt, .arrow_left-down_alt, .arrow_condense_alt, .arrow_expand_alt3, .arrow_carrot_up_alt, .arrow_carrot-down_alt, .arrow_carrot-left_alt, .arrow_carrot-right_alt, .arrow_carrot-2up_alt, .arrow_carrot-2dwnn_alt, .arrow_carrot-2left_alt, .arrow_carrot-2right_alt, .arrow_triangle-up_alt, .arrow_triangle-down_alt, .arrow_triangle-left_alt, .arrow_triangle-right_alt, .icon_minus_alt, .icon_plus_alt, .icon_close_alt, .icon_check_alt, .icon_zoom-out, .icon_zoom-in, .icon_stop_alt, .icon_menu-square_alt, .icon_menu-circle_alt, .icon_document, .icon_documents, .icon_pencil_alt, .icon_folder, .icon_folder-open, .icon_folder-add, .icon_folder_upload, .icon_folder_download, .icon_info, .icon_error-circle, .icon_error-oct, .icon_error-triangle, .icon_question_alt, .icon_comment, .icon_chat, .icon_vol-mute, .icon_volume-low, .icon_volume-high, .icon_quotations_alt, .icon_clock, .icon_lock, .icon_lock-open, .icon_key, .icon_cloud, .icon_cloud-upload, .icon_cloud-download, .icon_lightbulb, .icon_gift, .icon_house, .icon_camera, .icon_mail, .icon_cone, .icon_ribbon, .icon_bag, .icon_cart, .icon_tag, .icon_tags, .icon_trash, .icon_cursor, .icon_mic, .icon_compass, .icon_pin, .icon_pushpin, .icon_map, .icon_drawer, .icon_toolbox, .icon_book, .icon_contacts, .icon_archive, .icon_heart, .icon_profile, .icon_group, .icon_grid-2x2, .icon_grid-3x3, .icon_music, .icon_pause_alt, .icon_phone, .icon_upload, .icon_download, .social_facebook, .social_twitter, .social_pinterest, .social_googleplus, .social_tumblr, .social_tumbleupon, .social_wordpress, .social_instagram, .social_dribbble, .social_vimeo, .social_linkedin, .social_rss, .social_deviantart, .social_share, .social_myspace, .social_skype, .social_youtube, .social_picassa, .social_googledrive, .social_flickr, .social_blogger, .social_spotify, .social_delicious, .social_facebook_circle, .social_twitter_circle, .social_pinterest_circle, .social_googleplus_circle, .social_tumblr_circle, .social_stumbleupon_circle, .social_wordpress_circle, .social_instagram_circle, .social_dribbble_circle, .social_vimeo_circle, .social_linkedin_circle, .social_rss_circle, .social_deviantart_circle, .social_share_circle, .social_myspace_circle, .social_skype_circle, .social_youtube_circle, .social_picassa_circle, .social_googledrive_alt2, .social_flickr_circle, .social_blogger_circle, .social_spotify_circle, .social_delicious_circle, .social_facebook_square, .social_twitter_square, .social_pinterest_square, .social_googleplus_square, .social_tumblr_square, .social_stumbleupon_square, .social_wordpress_square, .social_instagram_square, .social_dribbble_square, .social_vimeo_square, .social_linkedin_square, .social_rss_square, .social_deviantart_square, .social_share_square, .social_myspace_square, .social_skype_square, .social_youtube_square, .social_picassa_square, .social_googledrive_square, .social_flickr_square, .social_blogger_square, .social_spotify_square, .social_delicious_square, .icon_printer, .icon_calulator, .icon_building, .icon_floppy, .icon_drive, .icon_search-2, .icon_id, .icon_id-2, .icon_puzzle, .icon_like, .icon_dislike, .icon_mug, .icon_currency, .icon_wallet, .icon_pens, .icon_easel, .icon_flowchart, .icon_datareport, .icon_briefcase, .icon_shield, .icon_percent, .icon_globe, .icon_globe-2, .icon_target, .icon_hourglass, .icon_balance, .icon_rook, .icon_printer-alt, .icon_calculator_alt, .icon_building_alt, .icon_floppy_alt, .icon_drive_alt, .icon_search_alt, .icon_id_alt, .icon_id-2_alt, .icon_puzzle_alt, .icon_like_alt, .icon_dislike_alt, .icon_mug_alt, .icon_currency_alt, .icon_wallet_alt, .icon_pens_alt, .icon_easel_alt, .icon_flowchart_alt, .icon_datareport_alt, .icon_briefcase_alt, .icon_shield_alt, .icon_percent_alt, .icon_globe_alt, .icon_clipboard {
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
}

.arrow_up:before {
    content: "!";
}

.arrow_down:before {
    content: "\"";
}

.arrow_left:before {
    content: "#";
}

.arrow_right:before {
    content: "$";
}

.arrow_left-up:before {
    content: "%";
}

.arrow_right-up:before {
    content: "&";
}

.arrow_right-down:before {
    content: "'";
}

.arrow_left-down:before {
    content: "(";
}

.arrow-up-down:before {
    content: ")";
}

.arrow_up-down_alt:before {
    content: "*";
}

.arrow_left-right_alt:before {
    content: "+";
}

.arrow_left-right:before {
    content: ",";
}

.arrow_expand_alt2:before {
    content: "-";
}

.arrow_expand_alt:before {
    content: ".";
}

.arrow_condense:before {
    content: "/";
}

.arrow_expand:before {
    content: "0";
}

.arrow_move:before {
    content: "1";
}

.arrow_carrot-up:before {
    content: "2";
}

.arrow_carrot-down:before {
    content: "3";
}

.arrow_carrot-left:before {
    content: "4";
}

.arrow_carrot-right:before {
    content: "5";
}

.arrow_carrot-2up:before {
    content: "6";
}

.arrow_carrot-2down:before {
    content: "7";
}

.arrow_carrot-2left:before {
    content: "8";
}

.arrow_carrot-2right:before {
    content: "9";
}

.arrow_carrot-up_alt2:before {
    content: ":";
}

.arrow_carrot-down_alt2:before {
    content: ";";
}

.arrow_carrot-left_alt2:before {
    content: "<";
}

.arrow_carrot-right_alt2:before {
    content: "=";
}

.arrow_carrot-2up_alt2:before {
    content: ">";
}

.arrow_carrot-2down_alt2:before {
    content: "?";
}

.arrow_carrot-2left_alt2:before {
    content: "@";
}

.arrow_carrot-2right_alt2:before {
    content: "A";
}

.arrow_triangle-up:before {
    content: "B";
}

.arrow_triangle-down:before {
    content: "C";
}

.arrow_triangle-left:before {
    content: "D";
}

.arrow_triangle-right:before {
    content: "E";
}

.arrow_triangle-up_alt2:before {
    content: "F";
}

.arrow_triangle-down_alt2:before {
    content: "G";
}

.arrow_triangle-left_alt2:before {
    content: "H";
}

.arrow_triangle-right_alt2:before {
    content: "I";
}

.arrow_back:before {
    content: "J";
}

.icon_minus-06:before {
    content: "K";
}

.icon_plus:before {
    content: "L";
}

.icon_close:before {
    content: "M";
}

.icon_check:before {
    content: "N";
}

.icon_minus_alt2:before {
    content: "O";
}

.icon_plus_alt2:before {
    content: "P";
}

.icon_close_alt2:before {
    content: "Q";
}

.icon_check_alt2:before {
    content: "R";
}

.icon_zoom-out_alt:before {
    content: "S";
}

.icon_zoom-in_alt:before {
    content: "T";
}

.icon_search:before {
    content: "U";
}

.icon_box-empty:before {
    content: "V";
}

.icon_box-selected:before {
    content: "W";
}

.icon_minus-box:before {
    content: "X";
}

.icon_plus-box:before {
    content: "Y";
}

.icon_box-checked:before {
    content: "Z";
}

.icon_circle-empty:before {
    content: "[";
}

.icon_circle-slelected:before {
    content: "\\";
}

.icon_stop_alt2:before {
    content: "]";
}

.icon_stop:before {
    content: "^";
}

.icon_pause_alt2:before {
    content: "_";
}

.icon_pause:before {
    content: "`";
}

.icon_menu:before {
    content: "a";
}

.icon_menu-square_alt2:before {
    content: "b";
}

.icon_menu-circle_alt2:before {
    content: "c";
}

.icon_ul:before {
    content: "d";
}

.icon_ol:before {
    content: "e";
}

.icon_adjust-horiz:before {
    content: "f";
}

.icon_adjust-vert:before {
    content: "g";
}

.icon_document_alt:before {
    content: "h";
}

.icon_documents_alt:before {
    content: "i";
}

.icon_pencil:before {
    content: "j";
}

.icon_pencil-edit_alt:before {
    content: "k";
}

.icon_pencil-edit:before {
    content: "l";
}

.icon_folder-alt:before {
    content: "m";
}

.icon_folder-open_alt:before {
    content: "n";
}

.icon_folder-add_alt:before {
    content: "o";
}

.icon_info_alt:before {
    content: "p";
}

.icon_error-oct_alt:before {
    content: "q";
}

.icon_error-circle_alt:before {
    content: "r";
}

.icon_error-triangle_alt:before {
    content: "s";
}

.icon_question_alt2:before {
    content: "t";
}

.icon_question:before {
    content: "u";
}

.icon_comment_alt:before {
    content: "v";
}

.icon_chat_alt:before {
    content: "w";
}

.icon_vol-mute_alt:before {
    content: "x";
}

.icon_volume-low_alt:before {
    content: "y";
}

.icon_volume-high_alt:before {
    content: "z";
}

.icon_quotations:before {
    content: "{";
}

.icon_quotations_alt2:before {
    content: "|";
}

.icon_clock_alt:before {
    content: "}";
}

.icon_lock_alt:before {
    content: "~";
}

.icon_lock-open_alt:before {
    content: "\E000";
}

.icon_key_alt:before {
    content: "\E001";
}

.icon_cloud_alt:before {
    content: "\E002";
}

.icon_cloud-upload_alt:before {
    content: "\E003";
}

.icon_cloud-download_alt:before {
    content: "\E004";
}

.icon_image:before {
    content: "\E005";
}

.icon_images:before {
    content: "\E006";
}

.icon_lightbulb_alt:before {
    content: "\E007";
}

.icon_gift_alt:before {
    content: "\E008";
}

.icon_house_alt:before {
    content: "\E009";
}

.icon_genius:before {
    content: "\E00A";
}

.icon_mobile:before {
    content: "\E00B";
}

.icon_tablet:before {
    content: "\E00C";
}

.icon_laptop:before {
    content: "\E00D";
}

.icon_desktop:before {
    content: "\E00E";
}

.icon_camera_alt:before {
    content: "\E00F";
}

.icon_mail_alt:before {
    content: "\E010";
}

.icon_cone_alt:before {
    content: "\E011";
}

.icon_ribbon_alt:before {
    content: "\E012";
}

.icon_bag_alt:before {
    content: "\E013";
}

.icon_creditcard:before {
    content: "\E014";
}

.icon_cart_alt:before {
    content: "\E015";
}

.icon_paperclip:before {
    content: "\E016";
}

.icon_tag_alt:before {
    content: "\E017";
}

.icon_tags_alt:before {
    content: "\E018";
}

.icon_trash_alt:before {
    content: "\E019";
}

.icon_cursor_alt:before {
    content: "\E01A";
}

.icon_mic_alt:before {
    content: "\E01B";
}

.icon_compass_alt:before {
    content: "\E01C";
}

.icon_pin_alt:before {
    content: "\E01D";
}

.icon_pushpin_alt:before {
    content: "\E01E";
}

.icon_map_alt:before {
    content: "\E01F";
}

.icon_drawer_alt:before {
    content: "\E020";
}

.icon_toolbox_alt:before {
    content: "\E021";
}

.icon_book_alt:before {
    content: "\E022";
}

.icon_calendar:before {
    content: "\E023";
}

.icon_film:before {
    content: "\E024";
}

.icon_table:before {
    content: "\E025";
}

.icon_contacts_alt:before {
    content: "\E026";
}

.icon_headphones:before {
    content: "\E027";
}

.icon_lifesaver:before {
    content: "\E028";
}

.icon_piechart:before {
    content: "\E029";
}

.icon_refresh:before {
    content: "\E02A";
}

.icon_link_alt:before {
    content: "\E02B";
}

.icon_link:before {
    content: "\E02C";
}

.icon_loading:before {
    content: "\E02D";
}

.icon_blocked:before {
    content: "\E02E";
}

.icon_archive_alt:before {
    content: "\E02F";
}

.icon_heart_alt:before {
    content: "\E030";
}

.icon_star_alt:before {
    content: "\E031";
}

.icon_star-half_alt:before {
    content: "\E032";
}

.icon_star:before {
    content: "\E033";
}

.icon_star-half:before {
    content: "\E034";
}

.icon_tools:before {
    content: "\E035";
}

.icon_tool:before {
    content: "\E036";
}

.icon_cog:before {
    content: "\E037";
}

.icon_cogs:before {
    content: "\E038";
}

.arrow_up_alt:before {
    content: "\E039";
}

.arrow_down_alt:before {
    content: "\E03A";
}

.arrow_left_alt:before {
    content: "\E03B";
}

.arrow_right_alt:before {
    content: "\E03C";
}

.arrow_left-up_alt:before {
    content: "\E03D";
}

.arrow_right-up_alt:before {
    content: "\E03E";
}

.arrow_right-down_alt:before {
    content: "\E03F";
}

.arrow_left-down_alt:before {
    content: "\E040";
}

.arrow_condense_alt:before {
    content: "\E041";
}

.arrow_expand_alt3:before {
    content: "\E042";
}

.arrow_carrot_up_alt:before {
    content: "\E043";
}

.arrow_carrot-down_alt:before {
    content: "\E044";
}

.arrow_carrot-left_alt:before {
    content: "\E045";
}

.arrow_carrot-right_alt:before {
    content: "\E046";
}

.arrow_carrot-2up_alt:before {
    content: "\E047";
}

.arrow_carrot-2dwnn_alt:before {
    content: "\E048";
}

.arrow_carrot-2left_alt:before {
    content: "\E049";
}

.arrow_carrot-2right_alt:before {
    content: "\E04A";
}

.arrow_triangle-up_alt:before {
    content: "\E04B";
}

.arrow_triangle-down_alt:before {
    content: "\E04C";
}

.arrow_triangle-left_alt:before {
    content: "\E04D";
}

.arrow_triangle-right_alt:before {
    content: "\E04E";
}

.icon_minus_alt:before {
    content: "\E04F";
}

.icon_plus_alt:before {
    content: "\E050";
}

.icon_close_alt:before {
    content: "\E051";
}

.icon_check_alt:before {
    content: "\E052";
}

.icon_zoom-out:before {
    content: "\E053";
}

.icon_zoom-in:before {
    content: "\E054";
}

.icon_stop_alt:before {
    content: "\E055";
}

.icon_menu-square_alt:before {
    content: "\E056";
}

.icon_menu-circle_alt:before {
    content: "\E057";
}

.icon_document:before {
    content: "\E058";
}

.icon_documents:before {
    content: "\E059";
}

.icon_pencil_alt:before {
    content: "\E05A";
}

.icon_folder:before {
    content: "\E05B";
}

.icon_folder-open:before {
    content: "\E05C";
}

.icon_folder-add:before {
    content: "\E05D";
}

.icon_folder_upload:before {
    content: "\E05E";
}

.icon_folder_download:before {
    content: "\E05F";
}

.icon_info:before {
    content: "\E060";
}

.icon_error-circle:before {
    content: "\E061";
}

.icon_error-oct:before {
    content: "\E062";
}

.icon_error-triangle:before {
    content: "\E063";
}

.icon_question_alt:before {
    content: "\E064";
}

.icon_comment:before {
    content: "\E065";
}

.icon_chat:before {
    content: "\E066";
}

.icon_vol-mute:before {
    content: "\E067";
}

.icon_volume-low:before {
    content: "\E068";
}

.icon_volume-high:before {
    content: "\E069";
}

.icon_quotations_alt:before {
    content: "\E06A";
}

.icon_clock:before {
    content: "\E06B";
}

.icon_lock:before {
    content: "\E06C";
}

.icon_lock-open:before {
    content: "\E06D";
}

.icon_key:before {
    content: "\E06E";
}

.icon_cloud:before {
    content: "\E06F";
}

.icon_cloud-upload:before {
    content: "\E070";
}

.icon_cloud-download:before {
    content: "\E071";
}

.icon_lightbulb:before {
    content: "\E072";
}

.icon_gift:before {
    content: "\E073";
}

.icon_house:before {
    content: "\E074";
}

.icon_camera:before {
    content: "\E075";
}

.icon_mail:before {
    content: "\E076";
}

.icon_cone:before {
    content: "\E077";
}

.icon_ribbon:before {
    content: "\E078";
}

.icon_bag:before {
    content: "\E079";
}

.icon_cart:before {
    content: "\E07A";
}

.icon_tag:before {
    content: "\E07B";
}

.icon_tags:before {
    content: "\E07C";
}

.icon_trash:before {
    content: "\E07D";
}

.icon_cursor:before {
    content: "\E07E";
}

.icon_mic:before {
    content: "\E07F";
}

.icon_compass:before {
    content: "\E080";
}

.icon_pin:before {
    content: "\E081";
}

.icon_pushpin:before {
    content: "\E082";
}

.icon_map:before {
    content: "\E083";
}

.icon_drawer:before {
    content: "\E084";
}

.icon_toolbox:before {
    content: "\E085";
}

.icon_book:before {
    content: "\E086";
}

.icon_contacts:before {
    content: "\E087";
}

.icon_archive:before {
    content: "\E088";
}

.icon_heart:before {
    content: "\E089";
}

.icon_profile:before {
    content: "\E08A";
}

.icon_group:before {
    content: "\E08B";
}

.icon_grid-2x2:before {
    content: "\E08C";
}

.icon_grid-3x3:before {
    content: "\E08D";
}

.icon_music:before {
    content: "\E08E";
}

.icon_pause_alt:before {
    content: "\E08F";
}

.icon_phone:before {
    content: "\E090";
}

.icon_upload:before {
    content: "\E091";
}

.icon_download:before {
    content: "\E092";
}

.social_facebook:before {
    content: "\E093";
}

.social_twitter:before {
    content: "\E094";
}

.social_pinterest:before {
    content: "\E095";
}

.social_googleplus:before {
    content: "\E096";
}

.social_tumblr:before {
    content: "\E097";
}

.social_tumbleupon:before {
    content: "\E098";
}

.social_wordpress:before {
    content: "\E099";
}

.social_instagram:before {
    content: "\E09A";
}

.social_dribbble:before {
    content: "\E09B";
}

.social_vimeo:before {
    content: "\E09C";
}

.social_linkedin:before {
    content: "\E09D";
}

.social_rss:before {
    content: "\E09E";
}

.social_deviantart:before {
    content: "\E09F";
}

.social_share:before {
    content: "\E0A0";
}

.social_myspace:before {
    content: "\E0A1";
}

.social_skype:before {
    content: "\E0A2";
}

.social_youtube:before {
    content: "\E0A3";
}

.social_picassa:before {
    content: "\E0A4";
}

.social_googledrive:before {
    content: "\E0A5";
}

.social_flickr:before {
    content: "\E0A6";
}

.social_blogger:before {
    content: "\E0A7";
}

.social_spotify:before {
    content: "\E0A8";
}

.social_delicious:before {
    content: "\E0A9";
}

.social_facebook_circle:before {
    content: "\E0AA";
}

.social_twitter_circle:before {
    content: "\E0AB";
}

.social_pinterest_circle:before {
    content: "\E0AC";
}

.social_googleplus_circle:before {
    content: "\E0AD";
}

.social_tumblr_circle:before {
    content: "\E0AE";
}

.social_stumbleupon_circle:before {
    content: "\E0AF";
}

.social_wordpress_circle:before {
    content: "\E0B0";
}

.social_instagram_circle:before {
    content: "\E0B1";
}

.social_dribbble_circle:before {
    content: "\E0B2";
}

.social_vimeo_circle:before {
    content: "\E0B3";
}

.social_linkedin_circle:before {
    content: "\E0B4";
}

.social_rss_circle:before {
    content: "\E0B5";
}

.social_deviantart_circle:before {
    content: "\E0B6";
}

.social_share_circle:before {
    content: "\E0B7";
}

.social_myspace_circle:before {
    content: "\E0B8";
}

.social_skype_circle:before {
    content: "\E0B9";
}

.social_youtube_circle:before {
    content: "\E0BA";
}

.social_picassa_circle:before {
    content: "\E0BB";
}

.social_googledrive_alt2:before {
    content: "\E0BC";
}

.social_flickr_circle:before {
    content: "\E0BD";
}

.social_blogger_circle:before {
    content: "\E0BE";
}

.social_spotify_circle:before {
    content: "\E0BF";
}

.social_delicious_circle:before {
    content: "\E0C0";
}

.social_facebook_square:before {
    content: "\E0C1";
}

.social_twitter_square:before {
    content: "\E0C2";
}

.social_pinterest_square:before {
    content: "\E0C3";
}

.social_googleplus_square:before {
    content: "\E0C4";
}

.social_tumblr_square:before {
    content: "\E0C5";
}

.social_stumbleupon_square:before {
    content: "\E0C6";
}

.social_wordpress_square:before {
    content: "\E0C7";
}

.social_instagram_square:before {
    content: "\E0C8";
}

.social_dribbble_square:before {
    content: "\E0C9";
}

.social_vimeo_square:before {
    content: "\E0CA";
}

.social_linkedin_square:before {
    content: "\E0CB";
}

.social_rss_square:before {
    content: "\E0CC";
}

.social_deviantart_square:before {
    content: "\E0CD";
}

.social_share_square:before {
    content: "\E0CE";
}

.social_myspace_square:before {
    content: "\E0CF";
}

.social_skype_square:before {
    content: "\E0D0";
}

.social_youtube_square:before {
    content: "\E0D1";
}

.social_picassa_square:before {
    content: "\E0D2";
}

.social_googledrive_square:before {
    content: "\E0D3";
}

.social_flickr_square:before {
    content: "\E0D4";
}

.social_blogger_square:before {
    content: "\E0D5";
}

.social_spotify_square:before {
    content: "\E0D6";
}

.social_delicious_square:before {
    content: "\E0D7";
}

.icon_printer:before {
    content: "\E103";
}

.icon_calulator:before {
    content: "\E0EE";
}

.icon_building:before {
    content: "\E0EF";
}

.icon_floppy:before {
    content: "\E0E8";
}

.icon_drive:before {
    content: "\E0EA";
}

.icon_search-2:before {
    content: "\E101";
}

.icon_id:before {
    content: "\E107";
}

.icon_id-2:before {
    content: "\E108";
}

.icon_puzzle:before {
    content: "\E102";
}

.icon_like:before {
    content: "\E106";
}

.icon_dislike:before {
    content: "\E0EB";
}

.icon_mug:before {
    content: "\E105";
}

.icon_currency:before {
    content: "\E0ED";
}

.icon_wallet:before {
    content: "\E100";
}

.icon_pens:before {
    content: "\E104";
}

.icon_easel:before {
    content: "\E0E9";
}

.icon_flowchart:before {
    content: "\E109";
}

.icon_datareport:before {
    content: "\E0EC";
}

.icon_briefcase:before {
    content: "\E0FE";
}

.icon_shield:before {
    content: "\E0F6";
}

.icon_percent:before {
    content: "\E0FB";
}

.icon_globe:before {
    content: "\E0E2";
}

.icon_globe-2:before {
    content: "\E0E3";
}

.icon_target:before {
    content: "\E0F5";
}

.icon_hourglass:before {
    content: "\E0E1";
}

.icon_balance:before {
    content: "\E0FF";
}

.icon_rook:before {
    content: "\E0F8";
}

.icon_printer-alt:before {
    content: "\E0FA";
}

.icon_calculator_alt:before {
    content: "\E0E7";
}

.icon_building_alt:before {
    content: "\E0FD";
}

.icon_floppy_alt:before {
    content: "\E0E4";
}

.icon_drive_alt:before {
    content: "\E0E5";
}

.icon_search_alt:before {
    content: "\E0F7";
}

.icon_id_alt:before {
    content: "\E0E0";
}

.icon_id-2_alt:before {
    content: "\E0FC";
}

.icon_puzzle_alt:before {
    content: "\E0F9";
}

.icon_like_alt:before {
    content: "\E0DD";
}

.icon_dislike_alt:before {
    content: "\E0F1";
}

.icon_mug_alt:before {
    content: "\E0DC";
}

.icon_currency_alt:before {
    content: "\E0F3";
}

.icon_wallet_alt:before {
    content: "\E0D8";
}

.icon_pens_alt:before {
    content: "\E0DB";
}

.icon_easel_alt:before {
    content: "\E0F0";
}

.icon_flowchart_alt:before {
    content: "\E0DF";
}

.icon_datareport_alt:before {
    content: "\E0F2";
}

.icon_briefcase_alt:before {
    content: "\E0F4";
}

.icon_shield_alt:before {
    content: "\E0D9";
}

.icon_percent_alt:before {
    content: "\E0DA";
}

.icon_globe_alt:before {
    content: "\E0DE";
}

.icon_clipboard:before {
    content: "\E0E6";
}


.glyph {
    float: left;
    text-align: center;
    padding: .75em;
    margin: .4em 1.5em .75em 0;
    width: 6em;
    text-shadow: none;
}

.glyph_big {
    font-size: 128px;
    color: #59c5dc;
    float: left;
    margin-right: 20px;
}

.glyph div {
    padding-bottom: 10px;
}

.glyph input {
    font-family: consolas, monospace;
    font-size: 12px;
    width: 100%;
    text-align: center;
    border: 0;
    box-shadow: 0 0 0 1px #ccc;
    padding: .2em;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

.glyph .fs1 {
    font-size: 2em;
}


@charset "UTF-8";
body.fancybox-active {
    overflow: hidden
}

body.fancybox-iosfix {
    position: fixed;
    left: 0;
    right: 0
}

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

.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99992;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif
}

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

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

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

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

.fancybox-caption-wrap, .fancybox-infobar, .fancybox-toolbar {
    position: absolute;
    direction: ltr;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility 0s linear .25s;
    box-sizing: border-box
}

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

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

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

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

.fancybox-is-closing .fancybox-stage {
    overflow: visible
}

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

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

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

.fancybox-slide--image {
    overflow: visible
}

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

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

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

.fancybox-slide--next {
    z-index: 99995
}

.fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box
}

.fancybox-slide > base, .fancybox-slide > link, .fancybox-slide > meta, .fancybox-slide > script, .fancybox-slide > style, .fancybox-slide > title {
    display: none
}

.fancybox-slide .fancybox-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-property: transform, opacity
}

.fancybox-can-zoomOut .fancybox-image-wrap {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-image-wrap {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.fancybox-can-drag .fancybox-image-wrap {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-dragging .fancybox-image-wrap {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

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

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content {
    padding: 0;
    width: 80%;
    height: 80%;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 88px);
    overflow: visible;
    background: #fff
}

.fancybox-iframe {
    display: block;
    padding: 0;
    border: 0;
    height: 100%
}

.fancybox-error, .fancybox-iframe {
    margin: 0;
    width: 100%;
    background: #fff
}

.fancybox-error {
    padding: 40px;
    max-width: 380px;
    cursor: default
}

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

.fancybox-button {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: rgba(30, 30, 30, .6);
    transition: color .3s ease;
    cursor: pointer;
    outline: none
}

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

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

.fancybox-button[disabled] {
    color: #ccc;
    cursor: default;
    opacity: .6
}

.fancybox-button svg {
    display: block;
    position: relative;
    overflow: visible;
    shape-rendering: geometricPrecision
}

.fancybox-button svg path {
    fill: currentColor;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 3
}

.fancybox-button--share svg path {
    stroke-width: 1
}

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

.fancybox-button--zoom svg path {
    fill: transparent
}

.fancybox-navigation {
    display: none
}

.fancybox-show-nav .fancybox-navigation {
    display: block
}

.fancybox-navigation button {
    position: absolute;
    top: 50%;
    margin: -50px 0 0;
    z-index: 99997;
    background: transparent;
    width: 60px;
    height: 100px;
    padding: 17px
}

.fancybox-navigation button:before {
    content: "";
    position: absolute;
    top: 30px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, .6)
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 0
}

.fancybox-close-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    z-index: 10;
    cursor: pointer
}

.fancybox-close-small:after {
    content: "\D7";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 22px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background-color: transparent;
    transition: background-color .25s;
    box-sizing: border-box;
    z-index: 2
}

.fancybox-close-small:focus {
    outline: none
}

.fancybox-close-small:focus:after {
    outline: 1px dotted #888
}

.fancybox-close-small:hover:after {
    color: #555;
    background: #eee
}

.fancybox-slide--iframe .fancybox-close-small, .fancybox-slide--image .fancybox-close-small {
    top: 0;
    right: -40px
}

.fancybox-slide--iframe .fancybox-close-small:after, .fancybox-slide--image .fancybox-close-small:after {
    font-size: 35px;
    color: #aaa
}

.fancybox-slide--iframe .fancybox-close-small:hover:after, .fancybox-slide--image .fancybox-close-small:hover:after {
    color: #fff;
    background: transparent
}

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

.fancybox-caption-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 2vw 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(20%, rgba(0, 0, 0, .1)), color-stop(40%, rgba(0, 0, 0, .2)), color-stop(80%, rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, .8)));
    background: -o-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
    pointer-events: none
}

.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid hsla(0, 0%, 100%, .4);
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none
}

.fancybox-caption a, .fancybox-caption button, .fancybox-caption select {
    pointer-events: all;
    position: relative
}

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

.fancybox-slide > .fancybox-loading {
    border: 6px solid hsla(0, 0%, 39%, .4);
    border-top: 6px solid hsla(0, 0%, 100%, .6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: a .8s infinite linear;
    animation: a .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 99999
}

@-webkit-keyframes a {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(359deg)
    }
}

@keyframes a {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(359deg)
    }
}

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

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

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

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

.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 {
    transform: scale3d(1.5, 1.5, 1.5);
    opacity: 0
}

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

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

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

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

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

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

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

.fancybox-fx-circular.fancybox-slide--current {
    transform: scaleX(1) translateZ(0);
    opacity: 1
}

.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: translateZ(0) scale(1)
}

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

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

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

p.fancybox-share__links {
    margin-right: -10px
}

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

.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 {
    position: relative;
    top: -1px;
    width: 25px;
    height: 25px;
    margin-right: 7px;
    vertical-align: middle
}

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

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

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

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

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

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

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

.fancybox-thumbs-x > ul {
    overflow: hidden
}

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

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

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

.fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    padding: 0;
    margin: 2px;
    width: 100px;
    height: 75px;
    max-width: calc(50% - 4px);
    max-height: calc(100% - 8px);
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box
}

li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, .1)
}

.fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94)
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width: 800px) {
    .fancybox-thumbs {
        width: 110px
    }

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

    .fancybox-thumbs > ul > li {
        max-width: calc(100% - 10px)
    }
}

.banner-section .anim-icons .icon.now-in-view,
.anim-icons .icon-green-blur.now-in-view,
.anim-icons .icon-blue-blur.now-in-view,
.anim-icons .icon-orange-blur.now-in-view,
.anim-icons .icon-pink-blur.now-in-view {
    animation-name: zoomInStable;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: linear;

    -webkit-animation-name: zoomInStable;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoomInStable;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoomInStable;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoomInStable;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: 1;
    -o-animation-timing-function: linear;
}

.page-title .anim-icons .icon,
.banner-section-eight .pattern-one,
.banner-section .anim-icons .icon.now-in-view {
    animation-name: zoomInStable;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoomInStable;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoomInStable;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoomInStable;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoomInStable;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.page-title .layer-1.now-in-view {
    animation-name: slideInUp;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;

    -webkit-animation-name: slideInUp;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: slideInUp;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;

    -ms-animation-name: slideInUp;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;

}

.features-section-six .layer-image.now-in-view,
.clients-section-two .icon-layer.now-in-view {
    animation-name: slideInRight;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;

    -webkit-animation-name: slideInRight;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: slideInRight;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;

    -ms-animation-name: slideInRight;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;

}

.clients-section-two.style-two .icon-layer {
    animation-name: slideInLeft;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;

    -webkit-animation-name: slideInLeft;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: slideInLeft;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;

    -ms-animation-name: slideInLeft;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;

}

.page-title .layer-2.now-in-view {
    animation-name: slideInUp;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;

    -webkit-animation-name: slideInUp;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: slideInUp;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;

    -ms-animation-name: slideInUp;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;

}

@-webkit-keyframes rotateme {
    0% {
        -webkit-transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        -webkit-transform: rotate(180deg);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: rotate(360deg);
        opacity: 1;
    }
}

@keyframes rotateme {

    0% {
        transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

.banner-section-eight .icon-four,
.banner-section-eight .icon-one,
.banner-section .anim-icons .icon-circle-1.now-in-view,
.banner-section .anim-icons .icon-circle-2.now-in-view,
.banner-section .anim-icons .icon-circle-3.now-in-view,
.banner-section .anim-icons .icon-triangle-1.now-in-view,
.banner-section .anim-icons .icon-triangle-2.now-in-view,
.banner-section .icon-circle-1,
.banner-section .icon-triangle-2,
.banner-section .icon-triangle-1 {
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: rotateme;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: rotateme;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: rotateme;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/* Bob Up Down*/
@-webkit-keyframes float_up_down {
    0% {
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(30px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes float_up_down {
    0% {
        transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(30px);
        transform: translateY(30px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

.banner-section-eight .pattern-two,
.about-section .image-column .image-1 img,
.get-the-app .image-column .image-box .image-1 img,
.banner-section-three .image-box .image-2 img,
.banner-section-six .image-box .iphone-image img,
.user-friendly-section .image-column .image-box img,
.subscribe-section-two .icon-rocket-up {
    animation-name: float_up_down;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: float_up_down;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: float_up_down;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: float_up_down;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: float_left_right;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/* Bob */
@-webkit-keyframes float_left_right {
    0% {
        transform: translateX(-100px);
        opacity: 1;
    }

    50% {
        transform: translateX(100px);
        opacity: 0.40;
    }

    100% {
        transform: translateX(-100px);
        opacity: 1;
    }
}

@keyframes float_left_right {
    0% {
        transform: translateX(-100px);
        opacity: 1;
    }

    50% {
        transform: translateX(100px);
        opacity: 0.40;
    }

    100% {
        transform: translateX(-100px);
        opacity: 1;
    }
}

.subscribe-section-two .icon-buildings,
.subscribe-section .icon-buildings,
.video-section .icon-buildings {
    animation-name: float_left_right;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: float_left_right;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: float_left_right;
    -moz-animation-duration: 30s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: float_left_right;
    -ms-animation-duration: 30s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: float_left_right;
    -o-animation-duration: 30s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float_left_right_two {
    0% {
        -webkit-transform: translateX(-30px);
        opacity: 1;
    }

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

    100% {
        -webkit-transform: translateX(-30px);
        opacity: 1;
    }
}

@keyframes float_left_right_two {
    0% {
        transform: translateX(-30px);
        opacity: 1;
    }

    50% {
        transform: translateX(0px);
        opacity: 0.80;
    }

    100% {
        transform: translateX(-30px);
        opacity: 1;
    }
}


.banner-section-eight .banner-sidebar .banner-sidebar-inner .circle-one,
.banner-section-eight .icon-two,
.icon-mountain {
    animation-name: float_left_right_two;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: float_left_right_two;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: float_left_right_two;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: float_left_right_two;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: float_left_right_two;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


@-webkit-keyframes zoom-fade {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.sponsors-section:before,
.banner-section-eight .icon-three,
.banner-section-eight .banner-sidebar .banner-sidebar-inner .circle-two,
.banner-section-five .image-box .video-link .icon,
.video-section .image-box .video-link .icon {
    animation-name: zoom-fade;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    -o-animation-name: zoom-fade;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/**
 * Swiper 6.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2020
 */

@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') format('woff');
    font-weight: 400;
    font-style: normal
}

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

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

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

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

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

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

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

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

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

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

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

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

.swiper-container-3d {
    perspective: 1200px
}

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

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

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

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

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

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

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

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

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

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.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-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: 'prev'
}

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

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000
}

.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-container-horizontal > .swiper-pagination-bullets, .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: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

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

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

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

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

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

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

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

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

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

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

.swiper-container-horizontal.swiper-container-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-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

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

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

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000
}

.swiper-pagination-lock {
    display: none
}

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

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

.swiper-container-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: -webkit-box;
    display: -ms-flexbox;
    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%;
    -o-object-fit: contain;
    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%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    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
}

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

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

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

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

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

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

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-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-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

@charset "UTF-8";
/*!
 * Bootstrap v4.5.2 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014\A0";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.row-cols-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}

.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}

.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}

.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.3333333333%;
}

.offset-2 {
    margin-left: 16.6666666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.3333333333%;
}

.offset-5 {
    margin-left: 41.6666666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.3333333333%;
}

.offset-8 {
    margin-left: 66.6666666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.3333333333%;
}

.offset-11 {
    margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%;
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%;
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%;
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%;
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-md-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.3333333333%;
    }

    .offset-md-2 {
        margin-left: 16.6666666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.3333333333%;
    }

    .offset-md-5 {
        margin-left: 41.6666666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.3333333333%;
    }

    .offset-md-8 {
        margin-left: 66.6666666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.3333333333%;
    }

    .offset-md-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%;
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%;
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%;
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%;
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-xl-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-xl-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-xl-3 > * {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .row-cols-xl-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-xl-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-xl-6 > * {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%;
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
    border-color: #7abaff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
    border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
    background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
    border-color: #8fd19e;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
    background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
    border-color: #86cfda;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
    border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
    border-color: #ed969e;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
    background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
    border-color: #fbfcfc;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #95999c;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #454d55;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive-md > .table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
    border: 0;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
    height: auto;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
    border-color: #28a745;
    padding-right: calc(0.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
    color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
    border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(0.75em + 2.3125rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
    color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.form-inline .form-check {
    width: 100%;
}

@media (min-width: 576px) {
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex: 0 0 auto;
        flex-flow: row wrap;
        align-items: center;
        margin-bottom: 0;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-plaintext {
        display: inline-block;
    }

    .form-inline .input-group,
    .form-inline .custom-select {
        width: auto;
    }

    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }

    .form-inline .form-check-input {
        position: relative;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }

    .form-inline .custom-control {
        align-items: center;
        justify-content: center;
    }

    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
    width: 100%;
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

@media (min-width: 576px) {
    .dropdown-menu-sm-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-sm-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-md-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-lg-right {
        right: 0;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-left {
        right: auto;
        left: 0;
    }

    .dropdown-menu-xl-right {
        right: 0;
        left: auto;
    }
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-toggle::after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropleft .dropdown-toggle::after {
    display: none;
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
    right: auto;
    bottom: auto;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
    z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
    z-index: 1;
}

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
    margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
    margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
    z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
    position: relative;
    z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
    z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
    margin-left: -1px;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
    margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
    height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
    height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
    padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
    padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label::after {
        transition: none;
    }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    display: none;
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 0;
    opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-range:focus {
    outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
    border: 0;
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        -ms-transition: none;
        transition: none;
    }
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
    cursor: default;
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
        transition: none;
    }
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
    text-decoration: none;
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid,
    .navbar-expand-sm > .container-sm,
    .navbar-expand-sm > .container-md,
    .navbar-expand-sm > .container-lg,
    .navbar-expand-sm > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid,
    .navbar-expand-sm > .container-sm,
    .navbar-expand-sm > .container-md,
    .navbar-expand-sm > .container-lg,
    .navbar-expand-sm > .container-xl {
        flex-wrap: nowrap;
    }

    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid,
    .navbar-expand-md > .container-sm,
    .navbar-expand-md > .container-md,
    .navbar-expand-md > .container-lg,
    .navbar-expand-md > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid,
    .navbar-expand-md > .container-sm,
    .navbar-expand-md > .container-md,
    .navbar-expand-md > .container-lg,
    .navbar-expand-md > .container-xl {
        flex-wrap: nowrap;
    }

    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid,
    .navbar-expand-lg > .container-sm,
    .navbar-expand-lg > .container-md,
    .navbar-expand-lg > .container-lg,
    .navbar-expand-lg > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid,
    .navbar-expand-lg > .container-sm,
    .navbar-expand-lg > .container-md,
    .navbar-expand-lg > .container-lg,
    .navbar-expand-lg > .container-xl {
        flex-wrap: nowrap;
    }

    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid,
    .navbar-expand-xl > .container-sm,
    .navbar-expand-xl > .container-md,
    .navbar-expand-xl > .container-lg,
    .navbar-expand-xl > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid,
    .navbar-expand-xl > .container-sm,
    .navbar-expand-xl > .container-md,
    .navbar-expand-xl > .container-lg,
    .navbar-expand-xl > .container-xl {
        flex-wrap: nowrap;
    }

    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
}

.navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
    padding-right: 0;
    padding-left: 0;
}

.navbar-expand .navbar-nav {
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
    flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
    color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
    color: #fff;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    flex-shrink: 0;
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .card-deck .card {
        flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row wrap;
    }

    .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.accordion {
    overflow-anchor: none;
}

.accordion > .card {
    overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion > .card > .card-header {
    border-radius: 0;
    margin-bottom: -1px;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}

a.badge:hover, a.badge:focus {
    text-decoration: none;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

a.badge-primary:hover, a.badge-primary:focus {
    color: #fff;
    background-color: #0062cc;
}

a.badge-primary:focus, a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}

a.badge-secondary:hover, a.badge-secondary:focus {
    color: #fff;
    background-color: #545b62;
}

a.badge-secondary:focus, a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

a.badge-success:hover, a.badge-success:focus {
    color: #fff;
    background-color: #1e7e34;
}

a.badge-success:focus, a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
    color: #fff;
    background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
    color: #212529;
    background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
    color: #fff;
    background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
    color: #fff;
    background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
}

.media-body {
    flex: 1;
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-item + .list-group-item {
    border-top-width: 0;
}

.list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}

.list-group-horizontal {
    flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
    margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
}

@media (min-width: 576px) {
    .list-group-horizontal-sm {
        flex-direction: row;
    }

    .list-group-horizontal-sm > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }

    .list-group-horizontal-sm > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-sm > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }

    .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}

@media (min-width: 768px) {
    .list-group-horizontal-md {
        flex-direction: row;
    }

    .list-group-horizontal-md > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }

    .list-group-horizontal-md > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-md > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }

    .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}

@media (min-width: 992px) {
    .list-group-horizontal-lg {
        flex-direction: row;
    }

    .list-group-horizontal-lg > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }

    .list-group-horizontal-lg > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-lg > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }

    .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        flex-direction: row;
    }

    .list-group-horizontal-xl > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }

    .list-group-horizontal-xl > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-radius: 0;
    }

    .list-group-horizontal-xl > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-left-width: 0;
    }

    .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}

.list-group-flush {
    border-radius: 0;
}

.list-group-flush > .list-group-item {
    border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
    border-bottom-width: 0;
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #004085;
    background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #383d41;
    background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #155724;
    background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #721c24;
    background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}

.close:hover {
    color: #000;
    text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: 0.75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

a.close.disabled {
    pointer-events: none;
}

.toast {
    flex-basis: 350px;
    max-width: 350px;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    border-radius: 0.25rem;
}

.toast:not(:last-child) {
    margin-bottom: 0.75rem;
}

.toast.showing {
    opacity: 1;
}

.toast.show {
    display: block;
    opacity: 1;
}

.toast.hide {
    display: none;
}

.toast-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
    padding: 0.75rem;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
    flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
    margin: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
    margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
    bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
    margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
    margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
    top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
    margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #fff;
}

.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: none;
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow 0.75s linear infinite;
    animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.bg-primary {
    background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #0062cc !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #545b62 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #28a745 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded-sm {
    border-radius: 0.2rem !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
    border-radius: 0.3rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }

    .float-sm-right {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }

    .float-md-right {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }

    .float-lg-right {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }

    .float-xl-right {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important;
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.overflow-auto {
    overflow: auto !important;
}

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

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.vw-100 {
    width: 100vw !important;
}

.vh-100 {
    height: 100vh !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-n1 {
        margin: -0.25rem !important;
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .m-sm-n2 {
        margin: -0.5rem !important;
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }

    .m-sm-n3 {
        margin: -1rem !important;
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }

    .m-sm-n4 {
        margin: -1.5rem !important;
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }

    .m-sm-n5 {
        margin: -3rem !important;
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-n1 {
        margin: -0.25rem !important;
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .m-lg-n2 {
        margin: -0.5rem !important;
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }

    .m-lg-n3 {
        margin: -1rem !important;
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }

    .m-lg-n4 {
        margin: -1.5rem !important;
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }

    .m-lg-n5 {
        margin: -3rem !important;
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0056b3 !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #494f54 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #19692c !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #0f6674 !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #ba8b00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #a71d2a !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
    color: #cbd3da !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #121416 !important;
}

.text-body {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.text-reset {
    color: inherit !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #dee2e6 !important;
    }

    .table-dark {
        color: inherit;
    }

    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
        border-color: #dee2e6;
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6;
    }
}

/*  Apeee - SaaS, Software & WebApp Template

==============  [Table of contents] ==============
1. Fonts
2. Resources / Css Files
3. Reset
4. Global Settings
5. Buttons Style
6. Social Icons
7. Scroll To Top style
8. Page Title / Single Post Banner
9. Section Title
10. Main Header / Two / Three / Four / Five
11. Banner Section / Two / Three / Four
12. About Section
13. About Section Two
14. Features Section
15. Features Section Two
16. Features Section Three
17. Features Section Four
18. Features Section Five
19. Features Section Six
20. Saas Features
21. Fun Facts Section
22. Testimonial Section
23. Testimonial Section Two
24. Testimonial Section Three
25. Get The App
26. Get The App Two
27. Call To Action Three
28. Call to Action Four
29. Video Section
30. News Section
31. Blog List
32. Blog Single
33. Styled Pagination
34. Call to Action
35. Call to Action Two
36. Pricing Section
37. Pricing Section Two
38. Perfect Integration
39. Subscribe Section
40. Subscribe Section Two
41. Clients Section
42. Clients Section Two
43. Faq's Section
44. News Section
45. Blog Classic
46. Blog Single
47. Styled Pagination
48. Main Footer
49. Main Footer Style Two
50. Main Footer Style Three
51. Sidebar Page Container
52. Comment Area
53. Comment Form
54. App Screenshots One
55. Banner Section Five
56. Features Section Four
57. About Section Style Two
58. Testimonial Section Four
59. Team Section
60. Call to Action Five
61. Banner Section Six
62. Fun Facts Section Two
63. Banner Section Seven
64. User Friendly
65. Video Section

-------------------------------------------*/
/***

====================================================================
	Fonts
====================================================================

 ***/
/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/S6u_w4BMUTPHjxsI9w2_FQftx9897sxZ.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/S6u_w4BMUTPHjxsI9w2_Gwftx9897g.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/S6u8w4BMUTPHjxsAUi-qNiXg7eU0.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/S6u8w4BMUTPHjxsAXC-qNiXg7Q.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/S6u_w4BMUTPHjxsI5wq_FQftx9897sxZ.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/S6u_w4BMUTPHjxsI5wq_Gwftx9897g.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/S6u_w4BMUTPHjxsI3wi_FQftx9897sxZ.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/S6u_w4BMUTPHjxsI3wi_Gwftx9897g.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/S6u9w4BMUTPHh7USSwaPGQ3q5d0N7w.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/S6u9w4BMUTPHh7USSwiPGQ3q5d0.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/S6uyw4BMUTPHjxAwXiWtFCfQ7A.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/S6uyw4BMUTPHjx4wXiWtFCc.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/S6u9w4BMUTPHh6UVSwaPGQ3q5d0N7w.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/S6u9w4BMUTPHh6UVSwiPGQ3q5d0.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/S6u9w4BMUTPHh50XSwaPGQ3q5d0N7w.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/S6u9w4BMUTPHh50XSwiPGQ3q5d0.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/XRXX3I6Li01BKofIMNaNRs7nczIHNHI.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/XRXX3I6Li01BKofIMNaDRs7nczIH.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/XRXX3I6Li01BKofIMNaNRs7nczIHNHI.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/XRXX3I6Li01BKofIMNaDRs7nczIH.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/XRXX3I6Li01BKofIMNaNRs7nczIHNHI.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/XRXX3I6Li01BKofIMNaDRs7nczIH.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/XRXX3I6Li01BKofIMNaNRs7nczIHNHI.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/XRXX3I6Li01BKofIMNaDRs7nczIH.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/XRXX3I6Li01BKofIMNaNRs7nczIHNHI.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/XRXX3I6Li01BKofIMNaDRs7nczIH.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/XRXX3I6Li01BKofIMNaNRs7nczIHNHI.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/XRXX3I6Li01BKofIMNaDRs7nczIH.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Nunito";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmv1pVGdeOYktMqlap.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmv1pVF9eOYktMqg.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLm21lVGdeOYktMqlap.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLm21lVF9eOYktMqg.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/pxiGyp8kv8JHgFVrJJLufntAOvWDSHFF.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/pxiGyp8kv8JHgFVrJJLucHtAOvWDSA.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmg1hVGdeOYktMqlap.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmg1hVF9eOYktMqg.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmr19VGdeOYktMqlap.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 600;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmr19VF9eOYktMqg.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmy15VGdeOYktMqlap.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLmy15VF9eOYktMqg.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLm111VGdeOYktMqlap.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: italic;
    font-weight: 800;
    src: url(../fonts/pxiDyp8kv8JHgFVrJJLm111VF9eOYktMqg.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/pxiByp8kv8JHgFVrLFj_Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/pxiByp8kv8JHgFVrLFj_Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/pxiByp8kv8JHgFVrLDz8Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/pxiByp8kv8JHgFVrLDz8Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/pxiByp8kv8JHgFVrLEj6Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/pxiByp8kv8JHgFVrLEj6Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/pxiByp8kv8JHgFVrLDD4Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/pxiByp8kv8JHgFVrLDD4Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/pxiByp8kv8JHgFVrLBT5Z1JlFd2JQEl8qw.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/pxiByp8kv8JHgFVrLBT5Z1xlFd2JQEk.woff2) format("woff2");
}

/* latin-ext */
@font-face {
    font-family: "Qwigley";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/1cXzaU3UGJb5tGoCiVVminuCicCU1A.woff2) format("woff2");
}

/* latin */
@font-face {
    font-family: "Qwigley";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/1cXzaU3UGJb5tGoCiVtminuCicA.woff2) format("woff2");
}

/* font-family: 'Poppins', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Nunito', sans-serif;
font-family: 'Qwigley', cursive; */
/***

====================================================================
	Resources / Css Files
====================================================================

 ***/
/***

====================================================================
	Reset
====================================================================

 ***/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/***

====================================================================
	Global Settings
====================================================================

 ***/
body {
    font-size: 14px;
    color: #777777;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: "Nunito", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #1f8ceb;
}

button,
a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: "Poppins", sans-serif;
}

textarea {
    overflow: hidden;
}

p {
    position: relative;
    line-height: 1.8em;
}

.auto-container {
    position: static;
    max-width: 1230px;
    padding: 0px 30px;
    margin: 0 auto;
}

.large-container {
    position: static;
    max-width: 1590px;
    padding: 0px 30px;
    margin: 0 auto;
}

.medium-container {
    max-width: 850px;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
}

.theme-btn {
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.centered {
    text-align: center;
}

/***

====================================================================
   Buttons Style
====================================================================

 ***/
/*Btn Style One*/
.btn-style-one {
    position: relative;
    color: #8a57de;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 3px;
    background-color: #ffffff;
}

.btn-style-one:hover {
    color: #ffffff;
    background-color: #8a57de;
}

/*Btn Style Two*/
.btn-style-two {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 3px;
    background-color: #8a57de;
}

.btn-style-two:hover {
    color: #ffffff;
    background-color: #4c4754;
}

/*Btn Style Three*/
.btn-style-three {
    position: relative;
    color: #8a57de;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 3px;
    background-color: #ffffff;
    border: 2px solid #8a57de;
}

.btn-style-three:hover {
    color: #ffffff;
    background-color: #8a57de;
}

/*Btn Style Four*/
.btn-style-four {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 3px;
    background-color: #7478fa;
}

.btn-style-four:hover {
    color: #ffffff;
    background-color: #222222;
}

/*Btn Style Five*/
.btn-style-five {
    position: relative;
    color: #7478fa;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 3px;
    background-color: #ecedfb;
}

.btn-style-five:hover {
    color: #ecedfb;
    background-color: #7478fa;
}

.btn-style-six {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 3px;
    background-color: #7478fa;
}

.btn-style-six:hover {
    color: #ffffff;
    background-color: #222222;
}

/*Btn Style seven*/
.btn-style-seven {
    position: relative;
    color: #7478fa;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 3px;
    border: 2px solid #7478fa;
}

.btn-style-seven:hover {
    color: #ffffff;
    background-color: #7478fa;
}

/*Btn Style Eight*/
.btn-style-eight {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 3px;
    border: 2px solid #ffffff;
}

.btn-style-eight:hover {
    color: #7478fa;
    background-color: #ffffff;
}

/*Btn Style Nine*/
.btn-style-nine {
    position: relative;
    color: #7478fa;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 3px;
    background: #ffffff;
}

.btn-style-nine:hover {
    color: #ffffff;
    background-color: #202020;
}

/* List Style One */
.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4c4754;
    margin-bottom: 20px;
    padding-left: 40px;
}

.list-style-one li a {
    color: #282331;
    display: inline-block;
    transition: all 300ms ease;
}

.list-style-one li a:hover {
    color: #00e399;
}

.list-style-one li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 18px;
    color: #7478fa;
    line-height: 30px;
    content: "R";
    font-family: "eleganticons";
}

/* List Style Two */
.list-style-two {
    position: relative;
}

.list-style-two li {
    position: relative;
    display: block;
    padding-left: 40px;
    font-size: 18px;
    line-height: 30px;
    color: #282331;
    text-align: left;
    font-weight: 400;
    margin-bottom: 25px;
}

.list-style-two li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 30px;
    color: #9746ea;
    content: "\F1CE";
    font-family: "Flaticon";
}

/* List Style Three */
.list-style-three {
    position: relative;
}

.list-style-three li {
    position: relative;
    display: block;
    padding-left: 35px;
    font-size: 16px;
    line-height: 28px;
    color: #737373;
    font-weight: 400;
    margin-bottom: 14px;
}

.list-style-three li:before {
    position: absolute;
    left: 0;
    top: 6px;
    height: 16px;
    width: 16px;
    background-color: #36ffbf;
    border: 4px solid #d4faee;
    border-radius: 50%;
    content: "";
}

/***

====================================================================
	Social Icons
====================================================================

 ***/
/*Social Icon One*/
.social-icon-one {
    position: relative;
}

.social-icon-one li {
    position: relative;
    margin-right: 20px;
    float: left;
}

.social-icon-one li a {
    position: relative;
    font-size: 14px;
    color: #9fa9b7;
    font-weight: 400;
    line-height: 20px;
    transition: all 0.3s ease;
}

.social-icon-one li a:hover {
    color: #7478fa;
}

.theme_color {
    color: #1f8ceb;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .tab.active-tab {
    display: block;
}

.tabs-box .tab-buttons li {
    cursor: pointer;
}

/***

====================================================================
		Scroll To Top style
====================================================================

***/
.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 44px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #333333;
    display: none;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    color: #ffffff;
    background: #8053f7;
}

/***

====================================================================
		Page Title
====================================================================

***/
.page-title {
    position: relative;
    padding: 250px 0px 140px;
    background-color: #edf1ff;
    text-align: center;
    overflow: hidden;
}

.page-title .layer-outer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.page-title .layer-2,
.page-title .layer-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 230px;
    background-image: url(../images/icons/shape-12.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.page-title .layer-2 {
    background-image: url(../images/icons/shape-13.png);
    height: 100%;
}

.page-title h1 {
    position: relative;
    font-size: 50px;
    line-height: 1em;
    font-weight: 700;
    color: #454789;
    margin-bottom: 18px;
}

.page-title .bread-crumb li {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #8182a8;
    font-weight: 400;
    margin-right: 15px;
    padding-right: 15px;
    cursor: default;
    display: inline-block;
}

.page-title .bread-crumb li a {
    color: #8182a8;
    display: inline-block;
    transition: all 300ms ease;
}

.page-title .bread-crumb li a:hover {
    color: #222222;
}

.page-title .bread-crumb li:after {
    position: absolute;
    content: "|";
    right: -5px;
    font-weight: 700;
    top: 0px;
    color: #8182a8;
}

.page-title .bread-crumb li:last-child::after {
    display: none;
}

.page-title .bread-crumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.page-title .icon-blue-blur {
    right: -80px;
    top: 170px;
}

.page-title .icon-pink-blur {
    left: 325px;
    top: 135px;
}

.page-title .icon-orange-blur {
    left: -140px;
    top: 235px;
}

.page-title .icon-green-blur {
    right: 370px;
    bottom: 35px;
}

/***

====================================================================
		Single Post Banner
====================================================================

***/
.single-post-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 310px 0px 220px;
    background-color: #edf1ff;
    text-align: center;
    overflow: hidden;
}

.single-post-banner:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0b0d37;
    content: "";
    opacity: 0.7;
}

.single-post-banner h1 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-post-banner .post-info {
    position: relative;
    text-align: center;
}

.single-post-banner .post-info li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 15px;
    padding-left: 30px;
}

.single-post-banner .post-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    text-align: left;
}

.single-post-banner .post-info li a {
    color: #ffffff;
    display: inline-block;
    transition: all 300ms ease;
}

.single-post-banner .post-info li a:hover {
    text-decoration: underline;
}

/***

====================================================================
	Section Title
====================================================================

***/
.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #7478fa;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: "poppins", sans-serif;
}

.sec-title h2 {
    position: relative;
    font-size: 40px;
    line-height: 1.4em;
    color: #4c4754;
    font-weight: 600;
}

.sec-title .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #75717b;
    font-weight: 500;
    margin-top: 30px;
}

.sec-title.style-two .text {
    margin-top: 20px;
}

.sec-title.style-two .text,
.sec-title.style-two h2 {
    color: #454789;
}

.sec-title.style-three .text {
    margin-top: 20px;
}

.sec-title.style-three h2 {
    font-size: 34px;
    line-height: 1.2em;
    color: #4c4754;
    font-weight: 500;
}

.sec-title.style-three .text,
.sec-title.style-three h2 {
    color: #4c4754;
}

.sec-title.light .text,
.sec-title.light h2 {
    color: #ffffff;
}

/***

====================================================================
	Main Header
====================================================================

***/
.main-header {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 20px;
    transition: all 300ms ease;
}

.main-header.fixed-header {
    top: 0;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 20px rgba(42, 38, 49, 0.03);
}

.main-header .header-upper {
    position: relative;
}

.main-header .header-upper .logo-box {
    position: relative;
    float: left;
    left: 0px;
    z-index: 10;
    padding: 20px 0;
}

.main-header .header-upper .logo-box .logo img {
    display: inline-block;
    max-width: 100%;
    max-height: 50px;
    max-width: 140px;
    transition: all 300ms ease;
}

.main-header .header-upper .nav-outer {
    position: relative;
    float: left;
    margin-left: 80px;
}

.main-header .header-upper .nav-outer .main-menu {
    position: relative;
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    padding: 30px 0px;
    margin-right: 45px;
    transition: all 300ms ease;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    opacity: 1;
    color: #4c4754;
    padding: 0;
    transition: all 300ms ease;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
    color: #8a57de;
}

.main-menu .navigation > li > a:before {
    position: absolute;
    left: 50%;
    bottom: 3px;
    height: 1px;
    width: 0;
    background-color: #8a57de;
    content: "";
    transition: all 300ms ease;
}

.main-menu .navigation > li:hover > a:before,
.main-menu .navigation > li.current > a:before {
    width: 100%;
    left: 0;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 250px;
    z-index: 100;
    padding: 30px 20px 30px 30px;
    opacity: 1;
    background: #ffffff;
    border-radius: 0 0 3px 3px;
    transform: translateY(30px);
    transform-origin: top;
    transition: all 400ms ease;
    -ms-box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.05), -5px 0px 15px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.05), -5px 0px 15px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px 1px rgba(0, 0, 0, 0.05), -5px 0px 15px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.main-menu .navigation > li > ul > li:last-child {
    margin-bottom: 0px;
}

.main-menu .navigation > li > ul > li > a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding: 0px;
    color: #8182a8;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    transition: all 200ms ease;
}

.main-menu .navigation > li > ul > li:hover > a {
    color: #8a57de;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
    content: "\F105";
    position: absolute;
    right: 0;
    top: 5px;
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding: 3px 25px;
    color: #222222;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    z-index: 5;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 250px;
    z-index: 100;
    padding: 30px 20px 30px 30px;
    opacity: 1;
    background: #ffffff;
    border-radius: 0 0 3px 3px;
    transform: translateY(30px);
    transform-origin: top;
    transition: all 400ms ease;
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    margin-bottom: 0px;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    padding: 0px;
    color: #8182a8;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    transition: all 200ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a {
    color: #8a57de;
}

.main-menu .navigation > li.dropdown:hover > ul {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 12px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    float: right;
}

.main-header .outer-box .btn-box {
    position: relative;
    padding: 20px 0;
}

.header-style-six.fixed-header .outer-box .btn-box {
    padding: 20px 0px 10px;
}

.header-style-two.fixed-header .outer-box .btn-box a,
.header-style-three.fixed-header .outer-box .btn-box a,
.header-style-one.fixed-header .outer-box .btn-box a {
    border: 1px solid #8a57de;
    line-height: 24px;
}

.header-style-two .outer-box .btn-box .theme-btn {
    border: 1px solid #8a57de;
    line-height: 24px;
    background: none;
}

.header-style-two .outer-box .btn-box .theme-btn:hover {
    background: #8a57de;
}

/***

====================================================================
	Header Style Two
====================================================================

***/
.header-style-two .header-upper .nav-outer {
    float: right;
}

.header-style-two .main-menu .navigation > li > a {
    color: #454789;
}

.header-style-two .main-menu .navigation > li > a:before {
    background-color: #454789;
}

/***

====================================================================
	Header Style Three
====================================================================

***/
.header-style-three .header-upper .nav-outer {
    float: right;
}

.header-style-three .main-menu .navigation > li > a {
    color: #ffffff;
}

.header-style-three .main-menu .navigation > li > a:before {
    background-color: #ffffff;
}

.header-style-three.fixed-header .main-menu .navigation > li > a {
    color: #8a57de;
}

.header-style-three.fixed-header .main-menu .navigation > li > a:before {
    background-color: #8a57de;
}

/***

====================================================================
	Header Style Four
====================================================================

***/
.header-style-four .main-menu .navigation > li > a {
    color: #ffffff;
}

.header-style-four .main-menu .navigation > li > a:before {
    background-color: #ffffff;
}

.header-style-four .outer-box {
    float: right;
}

.header-style-four.fixed-header {
    background-color: rgba(0, 0, 0, 0.7);
}

/***

====================================================================
	Header Style Five
====================================================================

***/
.header-style-five.fixed-header {
    background-color: #7478fa;
}

.header-style-five .header-upper .nav-outer {
    float: right;
}

.header-style-five .main-menu .navigation > li > a {
    color: #ffffff;
}

.header-style-five .main-menu .navigation > li > a:before {
    background-color: #ffffff;
}

/***

====================================================================
	Banner Section
====================================================================

***/
.banner-section {
    position: relative;
}

.banner-section .large-container {
    position: relative;
}

.banner-section .layer-outer {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
}

.banner-section .layer-image {
    position: absolute;
    left: -200px;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/icons/1.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
}

.banner-section .content-box {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 320px 0 320px;
}

.banner-section .content-box .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #8a57de;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-section .content-box h1 {
    position: relative;
    color: #4c4754;
    font-size: 50px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 28px;
}

.banner-section .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

.banner-section .content-box .btn-box {
    position: relative;
}

.banner-section .content-box .btn-box a {
    line-height: 30px;
}

.banner-section .image-box {
    position: absolute;
    right: 70px;
    top: 150px;
}

.banner-section .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.banner-section .image-box .image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.icon-blue-blur {
    height: 50px;
    width: 70px;
    background-image: url(../images/icons/blue-blur.png);
}

.icon-green-blur {
    height: 50px;
    width: 70px;
    background-image: url(../images/icons/green-blur.png);
}

.icon-pink-blur {
    height: 50px;
    width: 70px;
    background-image: url(../images/icons/pink-blur.png);
}

.icon-circle-1 {
    height: 144px;
    width: 147px;
    background-image: url(../images/icons/icon-circle-1.png);
}

.icon-circle-2 {
    height: 88px;
    width: 88px;
    background-image: url(../images/icons/icon-circle-2.png);
}

.icon-circle-3 {
    height: 88px;
    width: 88px;
    background-image: url(../images/icons/icon-circle-3.png);
}

.icon-triangle-1 {
    height: 76px;
    width: 75px;
    background-image: url(../images/icons/icon-triangle-1.png);
}

.icon-triangle-2 {
    height: 57px;
    width: 56px;
    background-image: url(../images/icons/icon-triangle-2.png);
}

.banner-section .anim-icons {
    max-width: 1550px;
}

.banner-section .icon-pink-blur {
    left: -70px;
    top: 180px;
}

.banner-section .icon-green-blur {
    left: 350px;
    top: 280px;
}

.banner-section .icon-blue-blur {
    left: 230px;
    bottom: 140px;
}

.banner-section .icon-circle-1 {
    left: 50%;
    margin-left: -55px;
    top: 290px;
}

.banner-section .icon-circle-2 {
    right: 610px;
    top: 555px;
    opacity: 0.5;
}

.banner-section .icon-circle-3 {
    right: -10px;
    top: 405px;
    opacity: 0.5;
}

.banner-section .icon-triangle-1 {
    right: 25px;
    bottom: 265px;
    opacity: 0.5;
}

.banner-section .icon-triangle-2 {
    right: 565px;
    bottom: 500px;
}

/***

====================================================================
	Banner Section Two
====================================================================

***/
.banner-section-two {
    position: relative;
    background-color: #e5eeff;
}

.banner-section-two .content-column {
    position: relative;
}

.banner-section-two .content-column .inner-column {
    position: relative;
    padding: 330px 0 210px;
}

.banner-section-two .content-column .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #454789;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-section-two .content-column h1 {
    position: relative;
    color: #454789;
    font-size: 50px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 28px;
}

.banner-section-two .content-column .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #454789;
}

.banner-section-two .content-column .btn-box {
    position: relative;
}

.banner-section-two .content-column .btn-box a {
    line-height: 30px;
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(68, 71, 198, 0.3);
}

.banner-section-two .image-column {
    position: relative;
}

.banner-section-two .image-column .inner-column {
    position: relative;
    margin-right: -185px;
    padding-top: 200px;
    padding-left: 64px;
}

.banner-section-two .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.banner-section-two .image-box .image img {
    display: block;
    max-width: 100%;
    height: auto;
}

/***

====================================================================
	Banner Section Three
====================================================================

***/
.banner-section-three {
    position: relative;
}

.banner-section-three .large-container {
    position: relative;
}

.banner-section-three .layer-outer {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
}

.banner-section-three .layer-image {
    position: absolute;
    left: -315px;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/icons/2.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
}

.banner-section-three .content-box {
    position: relative;
    max-width: 570px;
    width: 100%;
    padding: 330px 0 220px;
}

.banner-section-three .content-box .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #8a57de;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-section-three .content-box h1 {
    position: relative;
    color: #4c4754;
    font-size: 50px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-section-three .content-box .text {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #75717b;
    font-weight: 500;
    margin-bottom: 50px;
}

.banner-section-three .content-box .btn-box {
    position: relative;
}

.banner-section-three .content-box .btn-box a {
    line-height: 30px;
    padding: 15px 28px 15px;
}

.banner-section-three .image-box {
    position: absolute;
    right: 0px;
    top: 220px;
}

.banner-section-three .image-box .image-1 {
    position: absolute;
    right: -30px;
    margin-bottom: 0;
}

.banner-section-three .image-box .image-2 {
    position: relative;
    right: 250px;
    top: 0;
}

.banner-section-three .image-box img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*

====================================================================
	Banner Section Four
====================================================================

***/
.banner-section-four {
    position: relative;
}

.banner-section-four .layer-outer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
}

.banner-section-four .layer-image {
    position: absolute;
    right: -485px;
    left: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/icons/3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}

.banner-section-four .content-column .inner-column {
    position: relative;
}

.banner-section-four .content-box {
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 360px 0 200px;
}

.banner-section-four .content-box .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #8a57de;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-section-four .content-box h1 {
    position: relative;
    color: #4c4754;
    font-size: 50px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 28px;
}

.banner-section-four .content-box .text {
    position: relative;
    display: block;
    font-size: 20px;
    color: #75717b;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

.banner-section-four .content-box .btn-box {
    position: relative;
}

.banner-section-four .content-box .btn-box a {
    line-height: 30px;
}

.banner-section-four .image-column {
    position: relative;
}

.banner-section-four .image-column .image-box {
    position: relative;
    padding: 230px 0 200px;
    margin-left: -175px;
}

.banner-section-four .image-box .image {
    position: relative;
    text-align: left;
    margin-bottom: 0;
}

.banner-section-four .image-box .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.banner-section-four .icon-green-blur {
    right: 10px;
    top: 200px;
}

.banner-section-four .icon-blue-blur {
    right: -240px;
    top: 480px;
}

.banner-section-four .icon-pink-blur {
    right: 200px;
    bottom: 160px;
}

.banner-section-four .icon-orange-blur {
    left: 160px;
    bottom: 50px;
}

.banner-section-four .icon-apple {
    left: 450px;
    bottom: 70px;
}

.icon-orange-blur {
    height: 50px;
    width: 68px;
    background-image: url(../images/icons/orange-blur.png);
}

.icon-apple {
    height: 140px;
    width: 230px;
    background-image: url(../images/icons/icon-apple.png);
}

/***

====================================================================
		About Section
====================================================================

***/
.about-section {
    position: relative;
    padding: 270px 0 20px;
}

.about-section .content-column {
    position: relative;
}

.about-section .content-column .inner-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .btn-box {
    position: relative;
}

.about-section .content-column .btn-box a {
    line-height: 30px;
}

.about-section .image-column {
    position: relative;
}

.about-section .image-column .inner-column {
    position: relative;
    margin-top: -55px;
}

.about-section .image-column .image-box {
    position: relative;
}

.about-section .image-column img {
    max-width: 100%;
    height: auto;
}

.about-section .image-column .image-1 {
    padding-left: 40px;
    margin-bottom: 0;
}

.about-section .image-column .image-2 {
    position: relative;
    margin-top: -170px;
    margin-left: -325px;
    margin-right: -185px;
    z-index: 99;
    margin-bottom: 0;
}

.about-section .anim-icons {
    max-width: 100%;
}

.shape-1 {
    height: 600px;
    width: 600px;
    background-image: url(../images/icons/shape-1.png);
}

.shape-2 {
    height: 855px;
    width: 480px;
    background-image: url(../images/icons/shape-2.png);
}

.shape-3 {
    height: 855px;
    width: 480px;
    background-image: url(../images/icons/shape-3.png);
}

.shape-4 {
    height: 600px;
    width: 600px;
    background-image: url(../images/icons/shape-4.png);
}

.about-section .shape-1 {
    left: -520px;
    top: -270px;
}

.about-section .shape-2 {
    left: -430px;
    top: -520px;
}

.about-section .shape-4 {
    right: -520px;
    bottom: -140px;
}

.about-section .shape-3 {
    right: -430px;
    bottom: -290px;
}

.about-section .icon-blue-blur {
    bottom: 140px;
    right: 23%;
}

/***

====================================================================
		About Section Two
====================================================================

***/
.about-section-two {
    position: relative;
    padding: 30px 0 120px;
    background-color: #f9fbff;
}

.about-section-two.style-two.alternate {
    position: relative;
    padding: 100px 0 280px;
    background: none;
}

.about-section-two.style-two.alternate-two {
    position: relative;
    padding: 120px 0 220px;
    background: none;
}

.about-section-two .content-column {
    position: relative;
}

.about-section-two .content-column .inner-column {
    position: relative;
    padding: 90px 0 0;
}

.about-section-two .content-column .sec-title {
    margin-bottom: 40px;
}

.about-section-two .content-column .btn-box a {
    line-height: 25px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.about-section-two .image-column {
    position: relative;
}

.about-section-two .image-column .inner-column {
    position: relative;
    padding-right: 50px;
    margin-left: -50px;
}

.about-section-two .image-column .image {
    margin-bottom: 0;
}

.about-section-two.style-two {
    padding: 100px 0 200px;
}

.about-section-two.style-two .image-column .inner-column {
    margin: 0;
    padding-left: 70px;
    padding-right: 0;
    text-align: right;
}

.about-section-two.style-two .image-box {
    position: relative;
}

.about-section-two.style-two .image-box .image-1 {
    position: relative;
    margin-bottom: 0;
}

.about-section-two.style-two .image-box .image-1 img {
    display: inline-block;
    box-shadow: 0 20px 50px rgba(35, 38, 125, 0.1);
}

.about-section-two.style-two .image-box .image-2 {
    position: absolute;
    top: 100px;
    right: 200px;
}

.about-section-two.style-two .image-box .image-2 img {
    display: inline-block;
    box-shadow: 0 20px 50px rgba(35, 38, 125, 0.1);
}

.about-section-two.style-two .shape-8 {
    right: -25px;
    top: 150px;
}

.about-section-two.style-two.alternate-two .shape-8 {
    top: 170px;
}

.about-section-two.style-two .shape-9 {
    right: -60px;
    top: 60px;
}

.about-section-two.style-two.alternate-two .shape-9 {
    top: 90px;
}

.shape-8 {
    height: 468px;
    width: 552px;
    background-image: url(../images/icons/shape-8.png);
}

.shape-9 {
    height: 556px;
    width: 593px;
    background-image: url(../images/icons/shape-9.png);
}

.about-section-two.style-two.alternate .content-column .sec-title .text,
.about-section-two.style-two.alternate .content-column .sec-title h2 {
    color: #4c4754;
}

/***

====================================================================
		Features Section
====================================================================

***/
.features-section {
    position: relative;
    padding: 125px 0 250px;
}

.features-section .title-column {
    position: relative;
}

.features-section .title-column .inner-column {
    position: relative;
    padding-top: 50px;
    padding-right: 30px;
}

.features-section .title-column .icon-box {
    position: relative;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #55adf8;
    line-height: 200px;
    font-size: 100px;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
    margin-left: -40px;
    margin-top: 135px;
    transform: rotate(-30deg);
    box-shadow: 0 40px 70px rgba(61, 124, 177, 0.5);
}

.features-section .blocks-column {
    position: relative;
}

.features-section .blocks-column .inner-column {
    position: relative;
    padding-left: 80px;
}

.features-section .blocks-column .row {
    margin: 0 -80px;
}

.features-section .feature-block {
    position: relative;
    padding: 0 80px;
    margin-bottom: 100px;
}

.feature-block {
    position: relative;
}

.feature-block .inner-box {
    position: relative;
}

.feature-block .icon-box {
    position: relative;
    display: block;
    margin-bottom: 43px;
}

.feature-block .icon-box:before {
    position: absolute;
    left: -20px;
    top: -13px;
    height: 81px;
    width: 88px;
    background-image: url(../images/icons/small-shape-1.png);
    content: "";
}

.feature-block .icon-box .icon {
    position: relative;
    font-size: 54px;
    line-height: 1em;
    color: #755c9c;
    font-weight: 400;
}

.feature-block h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #4c4754;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-block h4 a {
    color: #4c4754;
    display: inline-block;
    transition: all 300ms ease;
}

.feature-block h4 a:hover {
    color: #8a57de;
}

.feature-block .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #75717b;
    font-weight: 500;
    margin-bottom: 23px;
}

.feature-block .link-box {
    position: relative;
}

.feature-block .link-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #2a2631;
    font-weight: 600;
    transition: all 300ms ease;
}

.feature-block .link-box a i {
    position: relative;
    margin-left: 4px;
    vertical-align: middle;
    top: 1px;
    font-size: 20px;
    line-height: 26px;
    top: -1px;
}

.feature-block .link-box a:hover {
    color: #8a57de;
}

.feature-block:nth-child(2) .icon-box:before {
    background-image: url(../images/icons/small-shape-2.png);
}

.feature-block:nth-child(3) .icon-box:before {
    background-image: url(../images/icons/small-shape-3.png);
}

.feature-block:nth-child(4) .icon-box:before {
    background-image: url(../images/icons/small-shape-4.png);
}

.feature-block:nth-child(5) .icon-box:before {
    background-image: url(../images/icons/small-shape-5.png);
}

.feature-block:nth-child(6) .icon-box:before {
    background-image: url(../images/icons/small-shape-6.png);
}

.feature-block:nth-child(2) .icon-box .icon {
    color: #6bb181;
}

.feature-block:nth-child(3) .icon-box .icon {
    color: #5b8f98;
}

.feature-block:nth-child(4) .icon-box .icon {
    color: #b6a971;
}

.feature-block:nth-child(5) .icon-box .icon {
    color: #b56d9e;
}

.feature-block:nth-child(6) .icon-box .icon {
    color: #6f75b4;
}

.shape-5 {
    height: 600px;
    width: 600px;
    background-image: url(../images/icons/shape-5.png);
}

.features-section .anim-icons {
    max-width: 100%;
}

.features-section .shape-5 {
    left: -390px;
    top: 390px;
}

.features-section .shape-5:nth-child(2) {
    left: -290px;
    margin-top: 120px;
}

.icon-yellow-blur {
    height: 42px;
    width: 61px;
    background-image: url(../images/icons/yellow-blur.png);
}

.features-section .icon-yellow-blur {
    bottom: 600px;
    left: 27%;
}

.features-section .icon-green-blur {
    bottom: 230px;
    right: 40%;
}

.features-section .icon-pink-blur {
    top: 450px;
    right: 8%;
}

/***

====================================================================
		Features Section Two
====================================================================

***/
.features-section-two {
    position: relative;
    padding: 80px 0 50px;
    background-color: #f9fbff;
}

.features-section-two.style-two {
    background: none;
    padding-top: 100px;
}

.features-section-two .icon-1 {
    position: absolute;
    width: 70px;
    height: 50px;
    top: 18%;
    left: 20%;
    background: url(../images/icons/green-blur.png) center center no-repeat;
}

.features-section-two .icon-2 {
    position: absolute;
    width: 70px;
    height: 50px;
    top: 55%;
    left: 25%;
    background: url(../images/icons/blue-blur-2.png) center center no-repeat;
}

.features-section-two .icon-3 {
    position: absolute;
    width: 70px;
    height: 50px;
    bottom: 0px;
    left: 60%;
    background: url(../images/icons/orange-blur.png) center center no-repeat;
}

.features-section-two.style-two .auto-container {
    position: relative;
}

.features-section-two.style-two .auto-container:before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    top: -100px;
    border-top: 1px dashed #c1bacb;
}

.features-section-two .sec-title {
    margin-bottom: 100px;
}

.features-section-two .sec-title .text {
    margin-top: 10px;
}

.features-section-two .row {
    margin: 0 -50px;
}

.features-section-two .feature-block {
    margin-bottom: 100px;
    padding: 0 50px;
}

.features-section-two .feature-block .link-box a,
.features-section-two .feature-block .text,
.features-section-two .feature-block h4 a {
    color: #454789;
}

.features-section-two .feature-block .link-box a:hover,
.features-section-two .feature-block h4 a:hover {
    color: #7478fa;
}

/***

====================================================================
		Features Section Three
====================================================================

***/
.features-section-three {
    position: relative;
    padding: 90px 0 120px;
}

.features-section-three .sec-title {
    margin-bottom: 70px;
}

.features-section-three .sec-title .text {
    margin-top: 10px;
}

.feature-block-two {
    position: relative;
    margin-bottom: 30px;
}

.feature-block-two .inner-box {
    position: relative;
    min-height: 420px;
    padding: 70px 35px 45px;
    border-radius: 7px;
    border: 2px solid #f5f5f5;
    background-color: #ffffff;
    transition: all 300ms ease;
}

.feature-block-two .inner-box:hover {
    background-color: #7478fa;
    -ms-box-shadow: 0 20px 40px rgba(35, 38, 125, 0.1);
    box-shadow: 0 20px 40px rgba(35, 38, 125, 0.1);
}

.feature-block-two .icon-box {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.feature-block-two .icon-box:before {
    position: absolute;
    left: -20px;
    top: -13px;
    height: 81px;
    width: 88px;
    background-image: url(../images/icons/small-shape-1.png);
    content: "";
    transition: all 300ms ease;
}

.feature-block-two:nth-child(2) .icon-box:before {
    background-image: url(../images/icons/small-shape-4.png);
}

.feature-block-two:nth-child(3) .icon-box:before {
    background-image: url(../images/icons/small-shape-3.png);
}

.feature-block-two:nth-child(2) .icon-box .icon {
    color: #b6a971;
}

.feature-block-two:nth-child(3) .icon-box .icon {
    color: #5b8f98;
}

.feature-block-two .icon-box .icon {
    position: relative;
    font-size: 54px;
    line-height: 1em;
    color: #755c9c;
    margin-bottom: 30px;
    transition: all 200ms ease;
}

.feature-block-two .inner-box:hover .icon-box:before {
    opacity: 0.1;
}

.feature-block-two .inner-box:hover .icon {
    color: #ffffff;
}

.feature-block-two h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #4c4754;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-block-two h4 a {
    display: inline-block;
    color: #4c4754;
    transition: all 300ms ease;
}

.feature-block-two .inner-box:hover h4 a {
    color: #ffffff;
}

.feature-block-two .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #75717b;
    font-weight: 400;
    margin-bottom: 40px;
    cursor: default;
    transition: all 300ms ease;
}

.feature-block-two .inner-box:hover .text {
    color: #ffffff;
}

.feature-block-two .link-box {
    position: relative;
    display: block;
}

.feature-block-two .link-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #4c4754;
    font-weight: 400;
    transition: all 300ms ease;
}

.feature-block-two .link-box a i {
    color: #4c4754;
    font-size: 20px;
    margin-left: 10px;
    vertical-align: middle;
    transition: all 300ms ease;
}

.feature-block-two .inner-box:hover .link-box a i,
.feature-block-two .inner-box:hover .link-box a {
    color: #ffffff;
}

/***

====================================================================
		Features Section Four
====================================================================

***/
.features-section-four {
    position: relative;
    padding: 130px 0 120px;
    background-color: #f6f9fe;
}

.features-section-four .content-column {
    position: relative;
}

.features-section-four .content-column .inner-column {
    position: relative;
}

.features-section-four .sec-title {
    position: relative;
    margin-bottom: 45px;
}

.features-section-four .btn-box {
    position: relative;
    margin-top: 50px;
}

.features-section-four .sec-title h2 {
    font-weight: 500;
}

.features-section-four .image-column {
    position: relative;
}

.features-section-four .image-column .inner-column {
    position: relative;
    margin-left: -175px;
}

.features-section-four .image-column .image-box {
    position: relative;
    padding-top: 10px;
}

.features-section-four .image-column .image-1 {
    position: relative;
    margin-bottom: 0;
    -moz-filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
    -ms-filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
    -o-filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
    filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
}

.features-section-four .image-column .image-2 {
    position: absolute;
    right: 70px;
    top: 60px;
    margin-bottom: 0;
    -moz-filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
    -ms-filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
    -o-filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
    filter: drop-shadow(0 20px 40px rgba(35, 38, 125, 0.06));
}

/***

====================================================================
	 	Features Section Five
====================================================================

***/
.features-section-five {
    position: relative;
    background-color: #f6f9fe;
    padding: 60px 0 140px;
}

.features-section-five .content-column {
    position: relative;
}

.features-section-five .content-column .inner-column {
    position: relative;
    padding-right: 60px;
    padding-top: 115px;
}

.features-section-five .sec-title {
    position: relative;
    margin-bottom: 30px;
}

.features-section-five .sec-title h2 {
    font-weight: 500;
}

.features-section-five .btn-box {
    position: relative;
    margin-top: 40px;
}

.features-section-five .carousel-column {
    position: relative;
}

.features-section-five .carousel-column .inner-column {
    position: relative;
    margin-left: -30px;
}

.features-carousel {
    position: relative;
}

.features-carousel .image-box:after,
.features-carousel .image-box:before {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 80%;
    top: 30px;
    margin: 0 auto;
    background-color: #ffffff;
    content: "";
    opacity: 0.5;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 -20px 30px rgba(25, 38, 125, 0.04);
    transition: all 1000ms ease;
    transform: scale(0.5);
}

.features-carousel .image-box:after {
    width: 90%;
    top: 60px;
    z-index: 0;
}

.features-carousel .active .image-box:before,
.features-carousel .active .image-box:after {
    transform: scale(1);
}

.features-carousel .active .image-box:before {
    transition-delay: 300ms;
}

.features-carousel .image-box {
    position: relative;
    padding-top: 90px;
}

.features-carousel .image-box .image {
    position: relative;
    margin-bottom: 0;
    z-index: 9;
    border-radius: 15px;
    overflow: hidden;
}

.features-carousel .owl-nav {
    display: none;
}

.features-carousel .owl-dots {
    position: absolute;
    right: -30px;
    top: 265px;
    z-index: 9;
}

.features-carousel .owl-dot {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 0;
    height: 8px;
    width: 8px;
    background-color: #bbc4d7;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease;
}

.features-carousel .owl-dot.active,
.features-carousel .owl-dot:hover {
    transform: scale(1.4);
    background-color: #7478fa;
}

/***

====================================================================
	 	Features Section Six
====================================================================

***/
.features-section-six {
    position: relative;
    padding: 130px 0 10px;
}

.features-section-six.style-two {
    background: none;
    padding: 110px 0px 30px;
}

.features-section-six.style-two .auto-container {
    position: relative;
}

.features-section-six.style-two .auto-container:before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    top: -100px;
    border-top: 1px dashed #c1bacb;
}

.features-section-six .layer-image {
    position: absolute;
    right: 0;
    top: 200px;
    height: 916px;
    width: 534px;
    background-image: url(../images/icons/shape-10.png);
    background-repeat: no-repeat;
    background-position: center;
}

.features-section-six .sec-title {
    margin-bottom: 90px;
}

.feature-block-four {
    position: relative;
    margin-bottom: 100px;
}

.feature-block-four .inner-box {
    position: relative;
    padding-left: 100px;
}

.feature-block-four .icon-box {
    position: absolute;
    left: 20px;
    top: 5px;
}

.feature-block-four .icon {
    position: relative;
    font-size: 48px;
    line-height: 1em;
    color: #755c9c;
    font-weight: 400;
    z-index: 9;
}

.feature-block-four .icon-box:before {
    position: absolute;
    left: -15px;
    top: -13px;
    height: 60px;
    width: 60px;
    background-position: center;
    background-size: 100%;
    background-image: url(../images/icons/small-shape-1.png);
    background-repeat: no-repeat;
    content: "";
}

.feature-block-four h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #4c4754;
    font-weight: 500;
    margin-bottom: 18px;
}

.feature-block-four h4 a {
    color: #4c4754;
    display: inline-block;
    transition: all 300ms ease;
}

.feature-block-four h4 a:hover {
    color: #7478fa;
}

.feature-block-four .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #75717b;
    font-weight: 500;
}

.feature-block-four:nth-child(5) .icon-box:before {
    background-image: url(../images/icons/small-shape-2.png);
}

.feature-block-four:nth-child(3) .icon-box:before {
    background-image: url(../images/icons/small-shape-3.png);
}

.feature-block-four:nth-child(2) .icon-box:before {
    background-image: url(../images/icons/small-shape-4.png);
}

.feature-block-four:nth-child(4) .icon-box:before {
    background-image: url(../images/icons/small-shape-5.png);
}

.feature-block-four:nth-child(6) .icon-box:before {
    background-image: url(../images/icons/small-shape-6.png);
}

.feature-block-four:nth-child(5) .icon-box .icon {
    color: #6bb181;
}

.feature-block-four:nth-child(3) .icon-box .icon {
    color: #5b8f98;
}

.feature-block-four:nth-child(2) .icon-box .icon {
    color: #b6a971;
}

.feature-block-four:nth-child(4) .icon-box .icon {
    color: #b56d9e;
}

.feature-block-four:nth-child(6) .icon-box .icon {
    color: #6f75b4;
}

/***

====================================================================
	 	Saas Features
====================================================================

***/
.saas-feature {
    position: relative;
}

.saas-feature .outer-box {
    position: relative;
    border-top: 1px dashed #c1bacb;
    padding: 150px 0 150px;
}

.saas-feature .content-column {
    position: relative;
    margin-bottom: 50px;
}

.saas-feature .content-column .inner-column {
    position: relative;
    padding: 80px 0 0;
}

.saas-feature .content-column .sec-title {
    margin-bottom: 40px;
}

.saas-feature .content-column .sec-title h2 {
    font-weight: 500;
}

.saas-feature .content-column .btn-box {
    position: relative;
}

.saas-feature .content-column .btn-box a {
    line-height: 30px;
    padding: 10px 28px;
}

.saas-feature .image-column {
    position: relative;
}

.saas-feature .image-column .inner-column {
    position: relative;
    margin: 0 -60px 0 -10px;
}

.saas-feature .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.saas-feature .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

/***

====================================================================
	 	Fun Facts Section
====================================================================

***/
.fun-fact-section {
    position: relative;
    padding: 120px 0 90px;
    background-color: #f9fbff;
}

.counter-block {
    position: relative;
    margin-bottom: 30px;
}

.counter-block .inner-box {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(68, 71, 198, 0.1);
}

.counter-block .icon {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #ff5e85;
    line-height: 1em;
    margin-bottom: 25px;
}

.counter-block:nth-child(2) .icon {
    color: #7478fa;
}

.counter-block:nth-child(3) .icon {
    color: #f5c315;
}

.counter-block:nth-child(4) .icon {
    color: #12cee4;
}

.counter-block .count-text {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1em;
    color: #454789;
    font-weight: 500;
    font-family: "poppins", sans-serif;
}

.counter-block .counter-title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 25px;
    color: #8182a8;
    font-weight: 400;
    z-index: 1;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}

/***

====================================================================
		Testimonial Section
====================================================================

***/
.testimonial-section {
    position: relative;
    padding: 100px 0 160px;
}

.testimonial-section .anim-icons {
    max-width: 100%;
}

.shape-6 {
    height: 700px;
    width: 616px;
    background-image: url(../images/icons/shape-6.png);
}

.testimonial-section .shape-6 {
    position: absolute;
    left: 50%;
    bottom: 90px;
    margin-left: -800px;
}

.testimonial-section .content-column {
    position: relative;
}

.testimonial-section .content-column .inner-column {
    position: relative;
    padding-top: 120px;
    padding-left: 100px;
}

.testimonial-section .slider-column {
    position: relative;
}

.testimonial-section .slider-column .inner-column {
    position: relative;
    margin: 0 -30px;
}

.testimonial-block {
    position: relative;
    padding: 30px 30px;
    margin-bottom: 10px;
}

.testimonial-block .inner-box {
    position: relative;
    padding: 45px 50px;
    box-shadow: 0 10px 50px rgba(42, 38, 49, 0.08);
    background-color: #ffffff;
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #75717b;
    font-weight: 400;
    margin-bottom: 40px;
}

.testimonial-block .info-box {
    position: relative;
    padding-left: 80px;
    padding-top: 6px;
}

.testimonial-block .info-box .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    min-height: 60px;
}

.testimonial-block .info-box .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 24px;
    color: #4c4754;
    font-weight: 500;
}

.testimonial-block .info-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #95919d;
    font-weight: 400;
}

.testimonial-carousel .slick-dots {
    position: absolute;
    left: 100%;
    top: 50%;
    width: 100%;
    text-align: left;
    margin-left: 100px;
    margin-top: 100px;
    z-index: 9;
}

.testimonial-carousel .slick-dots li {
    position: relative;
    display: inline-block;
    font-size: 0;
    height: 8px;
    width: 8px;
    background-color: #c2b8d1;
    margin-right: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease;
}

.testimonial-carousel .slick-dots li.slick-active,
.testimonial-carousel .slick-dots li:hover {
    transform: scale(1.4);
    background-color: #8a57de;
}

/***

====================================================================
		Testimonial Section Two
====================================================================

***/
.testimonial-section-two {
    position: relative;
    padding: 160px 0 160px;
    background-color: #f9fbff;
}

.testimonial-section-two .outer-box {
    margin: 0 -30px;
}

.testimonial-section-two .testimonial-carousel-two {
    position: relative;
    padding-bottom: 40px;
}

.testimonial-section-two .testimonial-block {
    padding: 40px 20px;
    opacity: 0.3;
    margin-bottom: 0;
}

.testimonial-section-two .active .testimonial-block {
    opacity: 1;
}

.testimonial-section-two .owl-stage-outer {
    overflow: visible;
}

.testimonial-section-two .testimonial-block .inner-box {
    transition: all 300ms ease;
    -ms-box-shadow: 0 20px 40px rgba(42, 38, 49, 0.08);
    -o-box-shadow: 0 20px 40px rgba(42, 38, 49, 0.08);
    box-shadow: 0 20px 40px rgba(42, 38, 49, 0.08);
}

.testimonial-carousel-two .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -20px;
    z-index: 9;
}

.testimonial-carousel-two .owl-dot {
    position: relative;
    display: inline-block;
    font-size: 0;
    height: 8px;
    width: 8px;
    background-color: #bbc4d7;
    margin-right: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease;
}

.testimonial-carousel-two .owl-dot.active,
.testimonial-carousel-two .owl-dot:hover {
    transform: scale(1.4);
    background-color: #7478fa;
}

/***

====================================================================
		Testimonial Section Three
====================================================================

***/
.testimonial-section-three {
    position: relative;
    padding: 150px 0;
    background-color: #fafafe;
}

.testimonial-carousel-three {
    position: relative;
}

.testimonial-block-two {
    position: relative;
}

.testimonial-block-two .inner-box {
    position: relative;
}

.testimonial-block-two .image-column {
    position: relative;
}

.testimonial-block-two .image-column .inner-column {
    position: relative;
    text-align: center;
}

.testimonial-block-two .image-column .thumb {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.testimonial-block-two .image-column .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.testimonial-block-two .social-links {
    position: absolute;
    right: 50%;
    bottom: 40px;
    margin-right: -160px;
}

.testimonial-block-two .social-links li {
    position: relative;
}

.testimonial-block-two .social-links li a {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #7478fa;
    font-weight: 400;
    background-color: #ffffff;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
}

.testimonial-block-two .content-column {
    position: relative;
}

.testimonial-block-two .content-column .inner-column {
    position: relative;
    padding-top: 10px;
}

.testimonial-block-two .content-column .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: #7478fa;
    font-weight: 400;
    font-family: "poppins", sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testimonial-block-two .content-column .text {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 40px;
    color: #75717b;
    font-weight: 400;
    margin-bottom: 30px;
}

.testimonial-block-two .info-box {
    position: relative;
}

.testimonial-block-two .info-box .name {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #4c4754;
    font-weight: 500;
    margin-bottom: 2px;
}

.testimonial-block-two .info-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #75717b;
}

.testimonial-carousel-three .owl-dots {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
}

.testimonial-carousel-three .owl-dot {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 0;
    height: 8px;
    width: 8px;
    background-color: #bbc4d7;
    border-radius: 5px;
    cursor: pointer;
    transition: all 300ms ease;
}

.testimonial-carousel-three .owl-dot.active,
.testimonial-carousel-three .owl-dot:hover {
    transform: scale(1.4);
    background-color: #7478fa;
}

/***

====================================================================
		Get The App
====================================================================

***/
.get-the-app {
    position: relative;
    background: #fbfbfd;
}

.get-the-app.style-two {
    background: #ffffff;
}

.get-the-app .content-column {
    position: relative;
}

.get-the-app .content-column .inner-column {
    position: relative;
    padding: 190px 0 170px;
}

.get-the-app.style-two .content-column .inner-column {
    padding: 290px 0px 210px;
}

.get-the-app .content-column .sec-title {
    margin-bottom: 60px;
}

.get-the-app .content-column .btn-box {
    position: relative;
    display: inline-block;
}

.get-the-app .app-btn {
    position: relative;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #4c4754;
    font-weight: 600;
    padding: 13px 25px;
    min-width: 180px;
    text-align: center;
    border: 2px solid #4c4754;
    border-radius: 3px;
    transition: all 300ms ease;
}

.get-the-app .app-btn i {
    position: relative;
    vertical-align: middle;
    top: -2px;
    font-size: 25px;
    margin-right: 10px;
}

.get-the-app.style-two .app-btn {
    background-color: #fbfbfd;
}

.get-the-app .app-btn:hover {
    background-color: #8a57de;
    color: #ffffff;
    border-color: #8a57de;
}

.get-the-app.style-two .app-btn:hover {
    background-color: #7478fa;
    border-color: #7478fa;
}

.get-the-app .app-btn:last-child {
    margin-right: 0;
}

.get-the-app .image-column {
    position: relative;
}

.get-the-app .image-column .inner-column {
    position: relative;
    padding-top: 100px;
}

.get-the-app.style-two .image-column .inner-column {
    padding: 140px 0px 200px;
}

.get-the-app .image-column .image-box {
    position: relative;
    text-align: right;
    padding-right: 130px;
}

.get-the-app .image-column .image-box .image-1 {
    position: relative;
    margin-bottom: 0;
}

.get-the-app .image-column .image-box .image-2 {
    position: absolute;
    right: -20px;
    bottom: -110px;
}

.get-the-app .anim-icons {
    max-width: 1520px;
}

.shape-7 {
    height: 500px;
    width: 540px;
    background-image: url(../images/icons/shape-7.png);
}

.get-the-app .shape-7 {
    position: absolute;
    right: 45px;
    top: 120px;
}

.shape-10 {
    height: 530px;
    width: 600px;
    background-image: url(../images/icons/get-app-shape-2.png);
}

.get-the-app .shape-10 {
    position: absolute;
    right: 45px;
    top: 170px;
}

.shape-11 {
    height: 530px;
    width: 600px;
    background-image: url(../images/icons/get-app-shape-1.png);
}

.get-the-app .shape-11 {
    position: absolute;
    right: 45px;
    top: 170px;
}

/***

====================================================================
		Get The App Two
====================================================================

***/
.get-the-app-two {
    position: relative;
    background-color: #f9fbff;
    padding: 100px 0 130px;
}

.get-the-app-two .content-column {
    position: relative;
}

.get-the-app-two .content-column .inner-column {
    position: relative;
    padding-top: 100px;
}

.get-the-app-two .content-column .sec-title .text {
    margin-top: 30px;
}

.get-the-app-two .content-column .btn-box {
    position: relative;
}

.get-the-app-two .app-btn {
    position: relative;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #454789;
    font-weight: 600;
    padding: 13px 30px;
    background-color: #f1f3ff;
    border: 1px solid #d1d3fd;
    border-radius: 3px;
    transition: all 300ms ease;
}

.get-the-app-two .app-btn i {
    position: relative;
    vertical-align: middle;
    top: -2px;
    font-size: 25px;
    margin-right: 10px;
}

.get-the-app-two .app-btn:hover {
    background-color: #7478fa;
    color: #ffffff;
    border-color: #7478fa;
}

.get-the-app-two .image-column {
    position: relative;
}

.get-the-app-two .image-column .inner-column {
    position: relative;
    margin-left: -170px;
}

.get-the-app-two .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.get-the-app-two .image-column .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/***

====================================================================
		Call To Action Three
====================================================================

***/
.call-to-action-three {
    position: relative;
    background-color: #7478fa;
    z-index: 9;
}

.call-to-action-three:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    content: "";
    background-color: #f1f5fb;
}

.call-to-action-three .outer-box {
    position: relative;
    background-image: url(../images/icons/call-to-bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #ffffff;
    padding: 60px 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(35, 38, 125, 0.1);
}

.call-to-action-three .title-column {
    position: relative;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

.call-to-action-three .title-column h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #4c4754;
    font-weight: 500;
}

.call-to-action-three .btn-column {
    position: relative;
    float: right;
    padding: 20px 0;
}

.call-to-action-three .btn-column a {
    line-height: 30px;
    padding: 15px 45px;
}

/***

====================================================================
			Call to Action
====================================================================

***/
.call-to-action-four {
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    padding: 110px 0;
    background-size: 100%;
    background-color: #7478fa;
}

.call-to-action-four .outer-box {
    position: relative;
}

.call-to-action-four .title-column {
    position: relative;
    float: left;
}

.call-to-action-four .title-column h3 {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 66px;
    color: #ffffff;
    font-weight: 500;
}

.call-to-action-four .btn-column {
    position: relative;
    float: right;
}

.call-to-action-four .btn-column .btn-box {
    position: relative;
    padding: 30px 0 0;
}

.call-to-action-four .btn-box a {
    font-size: 18px;
    color: #7478fa;
    padding: 18px 40px;
    line-height: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.call-to-action-four .btn-box a:hover {
    color: #ffffff;
    background-color: #7478fa;
}

/***

====================================================================
			Pricing Section
====================================================================

***/
.pricing-section {
    position: relative;
    padding: 120px 0 100px;
}

.pricing-tabs {
    position: relative;
    text-align: center;
}

.pricing-tabs .tab-buttons {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.pricing-tabs .tab-buttons:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 40px;
    width: 90px;
    content: "";
    border-radius: 40px;
    background: rgb(138, 87, 222);
    background: -webkit-gradient(linear, left top, right top, from(rgba(138, 87, 222, 1)), to(rgba(215, 123, 209, 1)));
    background: -o-linear-gradient(left, rgba(138, 87, 222, 1) 0%, rgba(215, 123, 209, 1) 100%);
    background: linear-gradient(to right, rgba(138, 87, 222, 1) 0%, rgba(215, 123, 209, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8a57de", endColorstr="#d77bd1", GradientType=1);
}

.pricing-section.theme-two .tab-buttons:before {
    background: #7478fa;
}

.pricing-tabs .tab-buttons:after {
    display: table;
    clear: both;
    content: "";
}

.pricing-tabs .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    padding-right: 65px;
    min-width: 120px;
    text-align: right;
    font-size: 18px;
    line-height: 40px;
    color: #95919d;
    font-weight: 500;
}

.pricing-tabs .tab-buttons .tab-btn:last-child {
    padding-right: 0;
    padding-left: 65px;
    text-align: left;
}

.pricing-tabs .tab-buttons .tab-btn:last-child:before {
    display: none;
}

.pricing-tabs .tab-buttons .tab-btn:before {
    position: absolute;
    top: 5px;
    height: 30px;
    width: 30px;
    background-color: #ffffff;
    border-radius: 30px;
    content: "";
    right: -38px;
    box-shadow: 0 4px 20px rgba(44, 44, 56, 0.3);
    transition: all 300ms ease;
}

.pricing-tabs .tab-buttons .tab-btn.active-btn:before {
    right: 15px;
}

.pricing-tabs .tab-buttons .tab-btn.active-btn {
    color: #8a57de;
}

.pricing-table {
    position: relative;
    margin-bottom: 40px;
}

.pricing-table .inner-box {
    position: relative;
    border: 2px solid #e0d8ef;
    margin-top: 20px;
    padding: 40px 20px 55px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    transition: all 300ms ease;
}

.pricing-table:hover .inner-box {
    border-color: #8a57de;
}

.pricing-section.theme-two .pricing-table:hover .inner-box {
    border-color: #7478fa;
}

.pricing-table.tagged .inner-box {
    border: 3px solid #8a57de;
    padding: 55px 20px 75px;
    margin-top: 0;
}

.pricing-section.theme-two .pricing-table.tagged .inner-box {
    border-color: #7478fa;
}

.pricing-table .title {
    position: relative;
    display: block;
    font-size: 24px;
    color: #4c4754;
    font-weight: 300;
    font-family: "poppins", sans-serif;
    margin-bottom: 24px;
}

.pricing-table .price {
    position: relative;
    font-size: 50px;
    line-height: 1em;
    color: #4c4754;
    font-weight: 600;
    font-family: "poppins", sans-serif;
}

.pricing-table .price sub {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1em;
    color: #95919d;
    letter-spacing: 1px;
    font-weight: 400;
    top: 0px;
    font-family: "poppins", sans-serif;
}

.pricing-table .table-content {
    position: relative;
    margin-top: 55px;
}

.pricing-table .table-content ul {
    position: relative;
    margin-bottom: 40px;
}

.pricing-table .table-content ul li {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #75717b;
    font-weight: 500;
    margin-bottom: 14px;
}

.pricing-table .table-content ul li.cross:before,
.pricing-table .table-content ul li.check:before {
    position: absolute;
    font-size: 16px;
    line-height: 26px;
    color: #4ec619;
    content: "N";
    font-family: eleganticons;
    transform: translateX(-25px);
}

.pricing-table .table-content ul li.cross:before {
    color: #f92662;
    content: "M";
}

.pricing-table .table-footer {
    position: relative;
}

.pricing-table .table-footer a {
    padding: 13px 30px;
}

.pricing-table .inner-box:hover .table-footer a,
.pricing-table.tagged .table-footer a {
    background-color: #8a57de;
    color: #ffffff;
}

.pricing-section.theme-two .pricing-table .table-footer a {
    border-color: #7478fa;
}

.pricing-section.theme-two .pricing-table .inner-box:hover .table-footer a,
.pricing-section.theme-two .pricing-table.tagged .table-footer a {
    background-color: #7478fa;
    color: #ffffff;
}

/***

====================================================================
		Pricing Section Two
====================================================================

***/
.pricing-section-two {
    position: relative;
    padding: 110px 0 100px;
}

.pricing-section-two .sec-title {
    margin-bottom: 60px;
}

.pricing-section-two .sec-title .text {
    margin-top: 10px;
}

.pricing-section-two .pricing-tabs .tab-buttons:before {
    background: #7478fa;
}

.pricing-table-two {
    position: relative;
    margin-bottom: 40px;
}

.pricing-table-two .inner-box {
    position: relative;
    background-color: #fbfbfd;
    padding: 50px 50px;
    transition: all 300ms ease;
}

.pricing-table-two.tagged .inner-box,
.pricing-table-two:hover .inner-box {
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(35, 138, 125, 0.1);
}

.pricing-table-two .image-box {
    position: relative;
}

.pricing-table-two .image-box .image {
    position: relative;
    margin-bottom: 35px;
}

.pricing-table-two .image-box .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.pricing-table-two .price {
    position: relative;
    font-size: 40px;
    line-height: 1em;
    color: #7478fa;
    font-weight: 600;
    font-family: "poppins", sans-serif;
}

.pricing-table-two .price span {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #4c4754;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "poppins", sans-serif;
    margin-top: 5px;
}

.pricing-table-two .table-content {
    position: relative;
    text-align: left;
    padding-top: 35px;
    margin-top: 30px;
    border-top: 1px dotted #cdcee9;
}

.pricing-table-two .table-content ul {
    position: relative;
    margin-bottom: 40px;
}

.pricing-table-two .table-content ul li {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #75717b;
    font-weight: 600;
    padding-left: 30px;
    margin-bottom: 17px;
}

.pricing-table-two .table-content ul li.cross:before,
.pricing-table-two .table-content ul li.check:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 26px;
    color: #4ec619;
    content: "N";
    font-family: eleganticons;
}

.pricing-table-two .table-content ul li.cross:before {
    color: #f92662;
    content: "M";
}

.pricing-table-two .table-footer {
    position: relative;
}

.pricing-table-two .table-footer a {
    padding: 15px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #f0f1ff;
}

.pricing-table-two .inner-box:hover .table-footer a,
.pricing-table-two.tagged .table-footer a {
    background-color: #7478fa;
    color: #ffffff;
}

/***

====================================================================
		Perfect Integration
====================================================================

***/
.perfect-integration {
    position: relative;
    padding: 115px 0 105px;
    background-color: #7478fa;
}

.perfect-integration .sec-title {
    margin-bottom: 70px;
}

.perfect-integration .sec-title .text {
    margin-top: 10px;
}

.feature-block-three {
    position: relative;
    margin-bottom: 40px;
}

.feature-block-three .inner {
    position: relative;
    padding: 18px 20px;
    padding-left: 105px;
    background-color: #8084fd;
    min-height: 100px;
    border-radius: 10px;
}

.feature-block-three .icon {
    position: absolute;
    top: 18px;
    left: 20px;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    line-height: 64px;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    background-color: #777bf7;
}

.feature-block-three h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    padding-top: 15px;
}

/***

====================================================================
		Subscribe Section
====================================================================

***/
.subscribe-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #fbfbfd;
    padding: 175px 0 150px;
    overflow: hidden;
}

.subscribe-section .icon-cloud-1 {
    left: -20px;
    top: 200px;
}

.subscribe-section .icon-cloud-1:last-child {
    left: auto;
    right: -110px;
    top: 80px;
}

.subscribe-section .icon-cloud-2 {
    right: 1225px;
    top: 75px;
}

.subscribe-section .icon-cloud-3 {
    left: 820px;
    top: 40px;
}

.subscribe-section .icon-cloud-4 {
    right: 0;
    top: 210px;
}

.subscribe-section .icon-buildings {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
}

.subscribe-section .title-column {
    position: relative;
    margin-bottom: 25px;
}

.subscribe-section .title-column .inner-column {
    position: relative;
    padding-right: 30px;
}

.subscribe-section .title-column h2 {
    position: relative;
    font-size: 40px;
    color: #4c4754;
    line-height: 50px;
    font-weight: 600;
}

.subscribe-section .form-column {
    position: relative;
    margin-bottom: 25px;
}

.subscribe-section .subscribe-form {
    position: relative;
    padding-right: 50px;
}

.subscribe-form .form-group {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(42, 38, 45, 0.06);
}

.subscribe-form .form-group input,
.subscribe-form .form-group select,
.subscribe-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
    color: #75717b;
    font-weight: 500;
    height: 80px;
    padding: 25px 40px;
    background-color: #ffffff;
    border: 1px solid transparent;
    transition: all 300ms ease;
}

.subscribe-form .form-group input:focus,
.subscribe-form .form-group select:focus,
.subscribe-form .form-group textarea:focus {
    border: 1px solid #8a57de;
}

.subscribe-form .form-group input[type=submit],
.subscribe-form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 25px 40px;
    line-height: 30px;
    cursor: pointer;
    border-radius: 0;
}

/***

====================================================================
		Subscribe Section Two
====================================================================

***/
.subscribe-section-two {
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #f1f5fc;
    padding: 150px 0 200px;
    overflow: hidden;
}

.subscribe-section-two .anim-icons {
    max-width: 1530px;
}

.subscribe-section-two .icon-mountain {
    left: -110px;
    bottom: 90px;
}

.subscribe-section-two .icon-rocket-up {
    right: -100px;
    bottom: 0;
}

.subscribe-section-two .icon-buildings {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
}

.subscribe-section-two .icon-cloud-1 {
    left: -20px;
    top: 200px;
}

.subscribe-section-two .icon-cloud-1:last-child {
    left: auto;
    right: -110px;
    top: 80px;
}

.subscribe-section-two .icon-cloud-2 {
    right: 1225px;
    top: 75px;
}

.subscribe-section-two .icon-cloud-3 {
    left: 820px;
    top: 40px;
}

.subscribe-section-two .icon-cloud-4 {
    right: 0;
    top: 210px;
}

.subscribe-section-two .icon-paper-plane-white {
    top: 290px;
    right: 50%;
    margin-right: -205px;
}

.icon-mountain {
    height: 204px;
    width: 405px;
    background-image: url(../images/icons/icon-mountain.png);
}

.icon-rocket-up {
    height: 246px;
    width: 300px;
    background-image: url(../images/icons/icon-rocket.png);
}

.icon-buildings {
    height: 90px;
    width: 915px;
    background-image: url(../images/icons/icon-buildings.png);
}

.icon-paper-plane-white {
    height: 80px;
    width: 71px;
    background-image: url(../images/icons/icon-paper-plane.png);
}

.icon-cloud-1 {
    height: 36px;
    width: 100px;
    background-image: url(../images/icons/icon-cloud-1.png);
    -webkit-animation: animateCloud 15s linear infinite;
    animation: animateCloud 15s linear infinite;
}

.icon-cloud-2 {
    height: 36px;
    width: 100px;
    background-image: url(../images/icons/icon-cloud-2.png);
    -webkit-animation: animateCloudtwo 20s linear infinite;
    animation: animateCloudtwo 20s linear infinite;
}

.icon-cloud-3 {
    height: 36px;
    width: 100px;
    background-image: url(../images/icons/icon-cloud-4.png);
    -webkit-animation: animateCloud 35s linear infinite;
    animation: animateCloud 35s linear infinite;
}

.icon-cloud-4 {
    height: 36px;
    width: 100px;
    background-image: url(../images/icons/icon-cloud-3.png);
    -webkit-animation: animateCloudtwo 30s linear infinite;
    animation: animateCloudtwo 30s linear infinite;
}

.icon-cloud-5 {
    height: 36px;
    width: 100px;
    background-image: url(../images/icons/icon-cloud-2.png);
    top: 240px;
    -webkit-animation: animateCloudtwo 45s linear infinite;
    animation: animateCloudtwo 45s linear infinite;
}

.icon-cloud-6 {
    margin-right: -130px;
    height: 36px;
    width: 100px;
    top: 290px;
    background-image: url(../images/icons/icon-cloud-4.png);
    -webkit-animation: animateCloudtwo 55s linear infinite;
    animation: animateCloudtwo 55s linear infinite;
}

.subscribe-section-two .content-box {
    position: relative;
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
}

.subscribe-section-two h2 {
    position: relative;
    font-size: 40px;
    color: #454789;
    line-height: 54px;
    font-weight: 500;
    margin-bottom: 90px;
}

.subscribe-section-two .subscribe-form .form-group input:focus,
.subscribe-section-two .subscribe-form .form-group select:focus,
.subscribe-section-two .subscribe-form .form-group textarea:focus {
    border: 1px solid #7478fa;
}

@-webkit-keyframes animateCloud {
    0% {
        margin-left: -100px;
    }
    100% {
        margin-left: 120%;
    }
}

@keyframes animateCloud {
    0% {
        margin-left: -100px;
    }
    100% {
        margin-left: 120%;
    }
}

@-webkit-keyframes animateCloudtwo {
    0% {
        right: -140px;
    }
    100% {
        right: 120%;
    }
}

@keyframes animateCloudtwo {
    0% {
        right: -140px;
    }
    100% {
        right: 120%;
    }
}

/***

====================================================================
		Clients Section
====================================================================

***/
.clients-section {
    position: relative;
    padding: 10px 0 40px;
}

.clients-section .sponsors-outer {
    position: relative;
    text-align: center;
}

.clients-section .sponsors-outer .text {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1.3em;
    color: #75717b;
    font-weight: 500;
    margin-bottom: 50px;
}

.clients-section .slide-item {
    position: relative;
}

.clients-section .image-box {
    position: relative;
    margin: 0;
    text-align: center;
}

.clients-section .image-box img {
    display: inline-block;
    max-width: 100% !important;
    width: auto !important;
    height: auto;
    transition: all 300ms ease;
}

.clients-section .image-box:hover img {
    transform: scale(1.1);
}

.clients-section .sponsors-carousel .owl-dots,
.clients-section .sponsors-carousel .owl-nav {
    display: none;
}

.clients-section.style-two {
    -ms-box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.1);
    -o-box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clients-section.alternate {
    background-color: #f3f3f3;
}

.clients-section.style-three {
    padding: 20px 0px 80px;
    background-color: #fbfbfd;
}

.clients-section.style-four {
    padding: 20px 0px 80px;
    background: none;
}

.clients-section.style-three .sponsors-outer .text {
    color: #c6c2ce;
}

.clients-section.style-four .sponsors-outer .text {
    color: #c6c2ce;
}

/***

====================================================================
	 	Clients Section Two
====================================================================

***/
.clients-section-two {
    position: relative;
    padding: 100px 0 250px;
}

.clients-section-two.style-two {
    position: relative;
    padding: 270px 0 250px;
}

.clients-section-two .icon-layer {
    position: absolute;
    right: 0;
    top: 30px;
    height: 854px;
    width: 851px;
    background-image: url(../images/icons/shape-11.png);
    background-repeat: no-repeat;
    background-position: center;
}

.clients-section-two.style-two .icon-layer {
    right: auto;
    left: 0;
    top: 100px;
    background-image: url(../images/icons/shape-16.png);
}

.clients-section-two .content-column {
    position: relative;
    margin-bottom: 50px;
}

.clients-section-two .content-column .inner-column {
    position: relative;
    padding-top: 130px;
    padding-right: 60px;
}

.clients-section-two .content-column .sec-title {
    margin-bottom: 40px;
}

.clients-section-two .content-column .sec-title h2 {
    font-weight: 500;
}

.clients-section-two .content-column .btn-box {
    position: relative;
}

.clients-section-two .content-column .btn-box a {
    line-height: 30px;
    padding: 10px 35px;
    border-radius: 5px;
}

.clients-section-two .image-column {
    position: relative;
}

.clients-section-two .image-column .inner-column {
    position: relative;
    margin-left: -70px;
    margin-right: 50px;
    height: 570px;
}

.clients-section-two.style-two .image-column .inner-column {
    position: relative;
    margin-right: -70px;
    margin-left: 50px;
}

.clients-section-two .image-column .icon {
    position: absolute;
    border-radius: 50%;
    transition: all 500ms ease;
    box-shadow: 0px 15px 40px rgba(239, 234, 243, 0.8);
}

.clients-section-two .image-column .icon.now-in-view {
    -webkit-animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    -ms-animation-name: zoomIn;
    -ms-animation-duration: 1s;
    -ms-animation-iteration-count: 1;
    -moz-animation-name: zoomIn;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: 1;
}

.clients-section-two .image-column .icon img,
.clients-section-two .image-column .icon a {
    position: relative;
    display: block;
}

.clients-section-two .image-column .icon-1 {
    left: 15%;
    top: -40px;
}

.clients-section-two .image-column .icon-2 {
    right: 15%;
    top: 30px;
}

.clients-section-two .image-column .icon-3 {
    left: 20%;
    top: 34%;
}

.clients-section-two .image-column .icon-4 {
    right: 46px;
    top: 40%;
}

.clients-section-two .image-column .icon-5 {
    left: -55px;
    top: 50%;
}

.clients-section-two .image-column .icon-6 {
    left: 46%;
    top: 62%;
}

.clients-section-two .image-column .icon-7 {
    left: 13%;
    bottom: -60px;
}

.clients-section-two .image-column .icon-8 {
    right: -20px;
    bottom: -20px;
}

.clients-section-two .image-column .circle-one {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 570px;
    border: 1px solid #f0f0f0;
    border-radius: 100px;
}

.clients-section-two .image-column .circle-two {
    position: absolute;
    left: 80px;
    top: 80px;
    right: 80px;
    bottom: 80px;
    border: 1px solid #f0f0f0;
    border-radius: 80px;
}

.clients-section-two .image-column .circle-three {
    position: absolute;
    left: 80px;
    top: 80px;
    right: 80px;
    bottom: 80px;
    border: 1px solid #f0f0f0;
    border-radius: 60px;
}

/***

====================================================================
		Faq's Section
====================================================================

***/
.faq-section {
    position: relative;
    padding: 100px 0 100px;
    background-color: #fbfbfd;
}

.faq-section .sec-title {
    margin-bottom: 70px;
}

.faq-section .column {
    position: relative;
}

.accordion-box {
    position: relative;
}

.accordion-box .block {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #4c4754;
    font-weight: 500;
    cursor: pointer;
    padding: 25px 40px;
    padding-right: 50px;
    font-family: "poppins", sans-serif;
    transition: all 500ms ease;
}

.accordion-box .block .icon {
    position: absolute;
    right: 30px;
    top: 25px;
    height: 30px;
    font-size: 24px;
    line-height: 30px;
    color: #7478fa;
    text-align: center;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon:before {
    content: "K";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

.accordion-box .block .content {
    position: relative;
    padding: 0 40px 30px;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #75717b;
    font-weight: 400;
}

.faq-section .btn-box {
    position: relative;
    text-align: center;
}

.faq-section .btn-box a {
    font-size: 18px;
    line-height: 20px;
    padding: 15px 25px;
    margin-top: 35px;
}

/***

====================================================================
		News Section
====================================================================

***/
.news-section {
    position: relative;
    padding: 100px 0 50px;
}

.news-section .sec-title {
    margin-bottom: 70px;
}

.news-block {
    position: relative;
    margin-bottom: 50px;
}

.news-block .inner-box {
    position: relative;
}

.news-block .image-box {
    position: relative;
}

.news-block .image-box .image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #4c4754;
}

.news-block .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 500ms ease;
}

.news-block .inner-box:hover .image-box .image img {
    opacity: 0.5;
    transform: scale(1.2);
}

.news-block .caption-box {
    position: relative;
    padding: 30px 0 0;
}

.news-block .caption-box h4 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.2em;
    color: #4c4754;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-block .caption-box h4 a {
    color: #4c4754;
    display: inline-block;
    transition: all 300ms ease;
}

.news-block .caption-box h4 a:hover {
    color: #7478fa;
}

.news-block .caption-box .date {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

/***

====================================================================
		Blog Classic
====================================================================

***/
.blog-classic {
    position: relative;
    padding-left: 100px;
}

.news-block-two {
    position: relative;
    margin-bottom: 60px;
}

.news-block-two .inner-box {
    position: relative;
}

.news-block-two .image-box {
    position: relative;
}

.news-block-two .image-box .image {
    position: relative;
    margin-bottom: 0;
    background-color: #7478fa;
    border-radius: 10px;
    overflow: hidden;
}

.news-block-two .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box .image a img {
    opacity: 0.7;
}

/* video Link */
.video-link a,
.video-link {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.video-link a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    padding-left: 5px;
    margin-left: -40px;
    margin-top: -40px;
    height: 80px;
    width: 80px;
    font-size: 18px;
    color: #7478fa;
    line-height: 80px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 50%;
}

.video-link a .icon:before {
    filter: drop-shadow(0 10px 5px rgba(68, 71, 196, 0.2));
}

/* Audio Box */
.news-block-two .audio-box {
    position: relative;
    border-top: 3px solid #b9bbfc;
    background-color: #f4f7ff;
}

.news-block-two .audio-box iframe {
    position: relative;
    width: 100%;
}

.news-block-two .lower-content {
    position: relative;
    padding: 25px 0 35px 0;
    border-bottom: 1px solid #ebecf7;
}

.news-block-two .info {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.news-block-two .info li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #8182a8;
    font-weight: 400;
    padding-left: 30px;
    margin-right: 30px;
    transition: all 300ms ease;
}

.news-block-two .info .icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #454789;
}

.news-block-two .info li a {
    color: #8182a8;
    transition: all 300ms ease;
}

.news-block-two .info li a:hover {
    color: #7478fa;
}

.news-block-two h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #454789;
    font-weight: 500;
    margin-bottom: 20px;
}

.news-block-two h3 a {
    color: #454789;
    transition: all 300ms ease;
}

.news-block-two h3 a:hover {
    color: #7478fa;
}

.news-block-two .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #8182a8;
    font-weight: 400;
    margin-bottom: 30px;
}

.news-block-two .link-box {
    position: relative;
}

.news-block-two .link-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #454789;
    font-weight: 600;
    transition: all 300ms ease;
}

.news-block-two .link-box a i {
    position: relative;
    top: 2px;
    font-size: 20px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 700;
}

.news-block-two .link-box a:hover {
    color: #7478fa;
}

.share-option {
    position: absolute;
    left: -100px;
    top: 0;
    width: 70px;
    text-align: center;
}

.share-option .date {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    background-color: #7478fa;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 30px;
}

.share-option .date span {
    display: block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 20px;
}

.share-option .social-links {
    position: relative;
}

.share-option .social-links li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.share-option .social-links li.title {
    font-size: 18px;
    color: #8182a8;
    font-weight: 400;
}

.share-option .social-links li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #8182a8;
    background-color: #f4f7ff;
    transition: all 300ms ease;
}

.share-option .social-links li a:hover {
    color: #ffffff;
    background-color: #7478fa;
    box-shadow: 0 20px 30px rgba(68, 71, 198, 0.14);
}

/* Blockquote Post */
.blockquote-post {
    position: relative;
    margin-bottom: 60px;
}

.blockquote-post .inner {
    position: relative;
}

.blockquote-post blockquote {
    position: relative;
    padding: 45px 50px;
    background-color: #f4f7ff;
    margin-bottom: 0;
    min-height: 300px;
}

.blockquote-post .icon {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 58px;
    height: 42px;
    background-image: url(../images/icons/quote-icon.png);
}

.blockquote-post .text {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 34px;
    color: #454789;
    font-weight: 500;
    font-family: "poppins", sans-serif;
    margin-bottom: 40px;
}

.blockquote-post cite {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: #8182a8;
    font-weight: 500;
}

/* Link Post */
.link-post {
    position: relative;
    margin-bottom: 60px;
}

.link-post .inner {
    position: relative;
    background-color: #f4f7ff;
    padding: 50px 50px 15px;
    min-height: 300px;
}

.link-post h4 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 34px;
    color: #454789;
    font-weight: 500;
}

.link-post h4 a {
    color: #454789;
    display: inline-block;
    transition: all 300ms ease;
}

.link-post h4 a:hover {
    color: #7478fa;
}

.link-post .link {
    position: relative;
    display: block;
    text-align: right;
    font-size: 50px;
    line-height: 1em;
    color: #454789;
    font-weight: 400;
    top: -5px;
}

.link-post .link a {
    color: #454789;
    display: inline-block;
    transition: all 300ms ease;
}

.link-post .link a:hover {
    color: #7478fa;
}

/***

====================================================================
		Blog Single
====================================================================

***/
.blog-single {
    position: relative;
    padding-left: 100px;
}

.blog-single .news-block-two {
    margin-bottom: 30px;
}

.blog-single .news-block-two .lower-content {
    padding-top: 40px;
    padding-bottom: 0;
}

.blog-single .news-block-two .text p {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #8182a8;
    font-weight: 400;
    margin-bottom: 40px;
}

.blog-single blockquote {
    position: relative;
    padding: 45px 50px;
    background-color: #f4f7ff;
    margin-bottom: 40px;
}

.blog-single blockquote .icon {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 58px;
    height: 42px;
    background-image: url(../images/icons/quote-icon.png);
}

.blog-single .news-block-two .text blockquote p {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 34px;
    color: #454789;
    font-weight: 500;
    font-family: "poppins", sans-serif;
    margin-bottom: 40px;
}

.blog-single blockquote cite {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: #8182a8;
    font-weight: 500;
}

/* Post Tags */
.blog-single .tags {
    position: relative;
    margin-bottom: 70px;
}

.blog-single .tags li {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.blog-single .tags li strong {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #454789;
    margin-right: 10px;
}

.blog-single .tags li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    color: #8182a8;
    font-weight: 400;
    padding: 5px 15px;
    background-color: #f0f2f9;
    border-radius: 2px;
    transition: all 300ms ease;
}

.blog-single .tags li a:hover {
    background-color: #7478fa;
    color: #ffffff;
}

/* Author Box */
.author-box {
    position: relative;
    padding: 35px 40px 45px;
    background-color: #f4f7ff;
    margin-bottom: 115px;
}

.author-box .inner-box {
    position: relative;
    padding-left: 130px;
    min-height: 100px;
}

.author-box .thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.author-box .thumb img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.author-box .info {
    position: relative;
    padding-top: 10px;
    margin-bottom: 15px;
}

.author-box .info span {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #999ab9;
    font-weight: 500;
}

.author-box .info h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #454789;
    font-weight: 500;
}

.author-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #8182a8;
    font-weight: 500;
}

/**

====================================================================
		Styled Pagination
====================================================================

***/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
}

.styled-pagination ul {
    position: relative;
    width: 100%;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: block;
    text-align: center;
    height: 44px;
    width: 44px;
    line-height: 44px;
    font-weight: 400;
    font-size: 18px;
    color: #8182a8;
    background-color: #f4f7ff;
    border-radius: 50%;
    transition: all 300ms ease;
}

.styled-pagination li a:hover,
.styled-pagination li.active a {
    color: #ffffff;
    background-color: #7478fa;
}

/***

==================================================================
		Main Footer
==================================================================

***/
.main-footer {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background: rgb(215, 123, 209);
    background: -o-linear-gradient(45deg, rgba(215, 123, 209, 1) 0%, rgba(138, 87, 222, 1) 100%);
    background: linear-gradient(45deg, rgba(215, 123, 209, 1) 0%, rgba(138, 87, 222, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d77bd1", endColorstr="#8a57de", GradientType=1);
    padding: 140px 0 80px;
}

.main-footer:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/footer-shape-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}

/*=== Widgets Section ===*/
.main-footer .widgets-section {
    position: relative;
}

.main-footer .footer-column {
    position: relative;
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .widget-title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
}

/*=== About Widget ===*/
.main-footer .about-widget {
    position: relative;
}

.main-footer .about-widget .footer-logo {
    position: relative;
}

.main-footer .about-widget .footer-logo .image {
    position: relative;
    margin-bottom: 20px;
}

.main-footer .about-widget .footer-logo img {
    display: block;
    height: auto;
    max-width: 100%;
}

.main-footer .about-widget .copyright-text {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 50px;
}

.main-footer .about-widget .copyright-text a {
    color: #ffffff;
}

.main-footer .about-widget .copyright-text a:hover {
    text-decoration: underline;
}

.social-icon-two {
    position: relative;
    display: block;
}

.social-icon-two li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.social-icon-two li a {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 300ms ease;
}

.social-icon-two li a:hover {
    color: #8a57de;
    background-color: #ffffff;
}

/*=== Links Widget ===*/
.main-footer .links-widget {
    position: relative;
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 15px;
}

.main-footer .list li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.main-footer .list li a:before {
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 1px;
    width: 100%;
    background-color: #ffffff;
    content: "";
    transition: all 200ms ease;
    opacity: 0;
}

.main-footer .list li a:hover:before {
    opacity: 1;
    bottom: 3px;
}

/***

==================================================================
		Main Footer Style Two
==================================================================

***/
.main-footer.style-two {
    background: #37396f;
}

.main-footer.style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/footer-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}

/***

==================================================================
		Main Footer Style Three
==================================================================

***/
.main-footer.style-three {
    background: #f1f5fb;
    padding: 0;
}

.main-footer.style-three .widgets-section {
    padding-top: 114px;
    padding-bottom: 40px;
}

.main-footer.style-three:before {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    width: 480px;
    height: 165px;
    background-image: url(../images/icons/footer-shape-2.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}

.main-footer.style-three .widget-title {
    color: #4c4754;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2em;
}

.main-footer.style-three .social-icon-one {
    margin-bottom: 40px;
}

.main-footer.style-three .list li,
.main-footer.style-three .list a {
    color: #758191;
    font-weight: 500;
}

.main-footer.style-three .list a:hover {
    color: #7478fa;
}

.main-footer.style-three .list a:before {
    background-color: #7478fa;
}

.main-footer .contact-info-list {
    position: relative;
}

.main-footer .contact-info-list li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #758191;
    font-weight: 500;
    margin-bottom: 10px;
}

.main-footer .contact-info-list li a {
    color: #758191;
    display: inline-block;
    transition: all 300ms ease;
}

.main-footer .contact-info-list li a:hover {
    color: #7478fa;
}

.main-footer .contact-info-list li.number {
    color: #7478fa;
    margin-bottom: 15px;
}

.main-footer .downloads-widget {
    position: relative;
}

.main-footer .downloads-widget .text {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #758191;
    font-weight: 500;
    margin-bottom: 40px;
}

.main-footer .app-btn {
    position: relative;
    float: left;
    margin-right: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #7478fa;
    font-weight: 600;
    padding: 10px 25px;
    background-color: #e5e9fb;
    border-radius: 5px;
    transition: all 300ms ease;
}

.main-footer .app-btn i {
    position: relative;
    vertical-align: middle;
    top: -2px;
    font-size: 20px;
    margin-right: 10px;
}

.main-footer .app-btn:hover {
    background-color: #7478fa;
    color: #e5e9fb;
}

.main-footer .app-btn:last-child {
    margin-right: 0;
}

.main-footer .footer-bottom {
    position: relative;
}

.main-footer .footer-bottom .outer-box {
    position: relative;
    border-top: 1px solid #e0e6ee;
    padding: 25px 0;
}

.main-footer .footer-bottom .copyright-text {
    position: relative;
    float: left;
    font-size: 16px;
    line-height: 25px;
    color: #92a2b6;
    font-weight: 400;
}

.main-footer .footer-bottom .copyright-text a {
    color: #758191;
}

.main-footer .footer-bottom .copyright-text a:hover {
    text-decoration: underline;
}

.main-footer .footer-bottom .privacy {
    position: relative;
    float: right;
}

.main-footer .footer-bottom .privacy {
    font-size: 16px;
    line-height: 25px;
    color: #92a2b6;
    font-weight: 400;
}

.main-footer .footer-bottom .privacy a {
    color: #92a2b6;
    margin-left: 10px;
}

.main-footer .footer-bottom .privacy a:hover {
    text-decoration: underline;
}

/***

==================================================================
			Sidebar Page Container
==================================================================

***/
.sidebar-page-container {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
    position: relative;
    margin-bottom: 50px;
}

.sidebar-page-container .sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    position: relative;
    margin-bottom: 55px;
}

.sidebar-side .sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-page-container .sidebar-title {
    position: relative;
    margin-bottom: 40px;
}

.sidebar-page-container .sidebar-title h5 {
    position: relative;
    font-size: 20px;
    color: #454789;
    font-weight: 600;
    line-height: 30px;
}

.sidebar-page-container .widget-content {
    position: relative;
}

/*Search Box Widget*/
.sidebar .search-box {
    position: relative;
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px 0 50px;
}

.sidebar .search-box .form-group input[type=text],
.sidebar .search-box .form-group input[type=search] {
    position: relative;
    display: block;
    font-size: 18px;
    color: #8182a8;
    line-height: 30px;
    padding: 20px 30px;
    padding-right: 75px;
    height: 70px;
    border-radius: 10px;
    width: 100%;
    background-color: #f4f7ff;
    transition: all 500ms ease;
}

.sidebar .search-box .form-group input:focus {
    border-color: #91c53c;
}

.sidebar .search-box .form-group input[type=submit],
.sidebar .search-box .form-group button {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 20px;
    color: #454789;
    padding: 0;
    font-weight: 400;
    cursor: pointer;
    background-color: transparent;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type=submit]:hover,
.sidebar .search-box .form-group button:hover {
    color: #000000;
}

/*=== Categories ===*/
.sidebar .categories {
    position: relative;
}

.sidebar .categories .sidebar-title {
    margin-bottom: 20px;
}

.category-list {
    position: relative;
}

.category-list li {
    position: relative;
}

.category-list li a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 36px;
    color: #8182a8;
    font-weight: 400;
    transition: all 300ms ease;
}

.category-list li a span {
    margin-left: 10px;
    color: #454789;
}

.category-list li:hover:before {
    color: #00e399;
}

.category-list li a:hover {
    color: #7478fa;
}

/*=== Latest News ===*/
.post-widget {
    position: relative;
}

.post-widget .post {
    position: relative;
    padding-left: 120px;
    margin-bottom: 30px;
    min-height: 100px;
    padding-top: 10px;
}

.post-widget .post:last-child {
    margin-bottom: 0px;
}

.post-widget .post .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    width: 90px;
    overflow: hidden;
}

.post-widget .post .thumb img {
    display: block;
    width: 100%;
    transition: all 300ms ease;
}

.post-widget .post .date {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 15px;
    color: #8182a8;
    font-weight: 400;
    margin-bottom: 10px;
}

.post-widget .post h4 {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #454789;
    font-weight: 600;
}

.post-widget .post h4 a {
    color: #454789;
    transition: all 300ms ease;
}

.post-widget .post h4 a:hover {
    color: #7478fa;
}

/*=== Comments Post ===*/
.comments-widget {
    position: relative;
}

.comment-post {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
    min-height: 100px;
}

.comment-post:last-child {
    margin-bottom: 0px;
}

.comment-post .icon {
    position: absolute;
    left: 0;
    top: 4px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #f4f7ff;
    font-size: 20px;
    color: #7478fa;
    text-align: center;
    line-height: 50px;
}

.comment-post .name {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: #8182a8;
    font-weight: 400;
    margin-bottom: 10px;
}

.comment-post h4 {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #454789;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
}

.comment-post h4 a {
    color: #454789;
    transition: all 300ms ease;
}

.comment-post h4 a:hover {
    color: #7478fa;
}

/*=== Tags ===*/
.tags-widget {
    position: relative;
}

.tags-widget .widget-content {
    position: relative;
    padding: 45px 30px 37px;
    background-color: #f5f8fb;
}

.tag-list {
    position: relative;
    display: block;
}

.tag-list li {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tag-list li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #8182a8;
    font-weight: 400;
    text-align: center;
    overflow: hidden;
    text-transform: capitalize;
    padding: 10px 20px;
    background-color: #f0f2f9;
    border-radius: 2px;
    transition: all 300ms ease;
}

.tag-list li a:hover {
    background-color: #7478fa;
    color: #ffffff;
}

/***

====================================================================
		Comment Area
====================================================================

 ***/
.group-title {
    position: relative;
    margin-bottom: 35px;
}

.group-title h5 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #454789;
    font-weight: 600;
}

.comments-area {
    position: relative;
    margin-bottom: 90px;
}

.comments-area .comments-outer {
    position: relative;
    padding: 30px 30px 50px;
    background-color: #f4f7ff;
    border-radius: 4px;
}

.comments-area .comment-box {
    position: relative;
    margin-bottom: 40px;
}

.comments-area .comment-box:last-child {
    margin-bottom: 0;
}

.comments-area .comment {
    position: relative;
    padding-left: 100px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.comments-area .comment-box:last-child .comment {
    padding-bottom: 0;
    border-bottom: 0;
}

.comments-area .comment-box .author-thumb {
    position: absolute;
    left: 0;
    top: 0px;
    height: 70px;
    width: 70px;
    overflow: hidden;
    border-radius: 50%;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
    display: block;
}

.comments-area .comment-info {
    position: relative;
    display: block;
    padding-top: 5px;
    margin-bottom: 20px;
}

.comments-area .comment-box .name {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #454789;
    font-family: "poppins", sans-serif;
}

.comments-area .comment-box .date {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #999ab9;
    font-weight: 400;
}

.comments-area .comment-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #8182a8;
    font-weight: 400;
    margin-bottom: 27px;
}

.comments-area .comment-box .reply-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #8182a8;
    padding: 5px 15px;
    font-weight: 500;
    background-color: #e9edf7;
    transition: all 300ms ease;
}

.comments-area .comment-box .reply-btn:hover {
    background-color: #000240;
    color: #ffffff;
}

.comments-area .comment-box.reply-comment {
    margin-left: 90px;
}

.comments-area .comment-box.reply-comment .comment {
    padding-left: 75px;
}

.comments-area .comment-box.reply-comment .author-thumb {
    height: 50px;
    width: 50px;
}

/***

====================================================================
		Comment Form
====================================================================

 ***/
.comment-form {
    position: relative;
}

.comment-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.comment-form .form-group:last-child {
    margin-bottom: 0;
}

.comment-form .form-group input[type=text],
.comment-form .form-group input[type=email],
.comment-form .form-group textarea,
.comment-form .form-group select {
    position: relative;
    display: block;
    height: 66px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #999ab9;
    font-weight: 400;
    padding: 20px 30px;
    border-radius: 3px;
    border: 1px solid #f6f8ff;
    background-color: #f6f8ff;
    transition: all 300ms ease;
}

.comment-form .form-group input:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus {
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(68, 71, 198, 0.1);
}

.comment-form .form-group textarea {
    height: 200px;
    resize: none;
}

.comment-form .form-group input[type=submit],
.comment-form .form-group button {
    cursor: pointer;
}

/***

====================================================================
		App Screenshots One
====================================================================

***/
.app-screenshots-one {
    position: relative;
    padding: 0px 0px 150px;
}

.app-screenshots-one .bg-icon-layer {
    position: absolute;
    width: 841px;
    height: 754px;
    left: 50%;
    margin-left: -150px;
    top: -85px;
    background: url(../images/icons/screenshots-icon-layer.png) center top no-repeat;
}

.app-screenshots-one .title-column .inner {
    position: relative;
    padding-top: 160px;
    max-width: 500px;
}

.app-screenshots-one .carousel-outer {
    position: relative;
    width: 300px;
    height: 604px;
    padding: 16px 18px;
    background: url(../images/icons/iphone-mockup-one.png) center top no-repeat;
}

.app-screenshots-one .carousel-outer .slide {
    position: relative;
    transform: scale(0.9);
    transition: all 500ms ease;
    z-index: 30;
}

.app-screenshots-one .carousel-outer .active .slide {
    transform: scale(1);
}

.app-screenshots-one .carousel-outer .mockup-layer-2 {
    position: absolute;
    width: 300px;
    height: 50px;
    left: 0px;
    top: 0px;
    z-index: 40;
    background: url(../images/icons/iphone-mockup-one.png) center top no-repeat;
}

.app-screenshots-one .carousel-outer .mockup-layer-3 {
    position: absolute;
    width: 300px;
    height: 50px;
    left: 0px;
    bottom: 0px;
    z-index: 40;
    background: url(../images/icons/iphone-mockup-one.png) center bottom no-repeat;
}

.app-screenshots-one .carousel-outer .shadow-layer {
    position: absolute;
    width: 318px;
    height: 626px;
    left: -9px;
    top: 0px;
    background: url(../images/icons/iphone-shadow.png) center top no-repeat;
}

.app-screenshots-one .carousel-outer .mockup-layer {
    position: absolute;
    width: 300px;
    left: 0px;
    top: 0px;
    z-index: 20;
}

.app-screenshots-one .carousel-outer .mockup-layer:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 604px;
    background: url(../images/icons/iphone-mockup-one.png) left top no-repeat;
    z-index: 20;
}

.app-screenshots-one .carousel-outer .mockup-layer:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    height: 604px;
    background: url(../images/icons/iphone-mockup-one.png) right top no-repeat;
    z-index: 20;
}

.app-screenshots-one .owl-stage-outer {
    width: 890px;
}

.app-screenshots-one .owl-nav {
    display: none;
}

.app-screenshots-one .owl-dots {
    position: absolute;
    left: -640px;
    bottom: 130px;
}

.app-screenshots-one .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.app-screenshots-one .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    background: #c2b8d1;
    transform: scale(0.6);
    border-radius: 50%;
    transition: all 500ms ease;
}

.app-screenshots-one .owl-dots .owl-dot.active span {
    background: #8a57de;
    transform: scale(1);
}

/*

====================================================================
		Banner Section Five
====================================================================

***/
.banner-section-five {
    position: relative;
    background: #5e96ef;
    color: #ffffff;
    padding: 290px 0px 190px;
}

.banner-section-five .gradient-layer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(86, 160, 236);
    background: rgb(86, 160, 236);
    background: -o-linear-gradient(315deg, rgba(86, 160, 236, 1) 2%, rgba(73, 78, 251, 1) 100%);
    background: linear-gradient(135deg, rgba(86, 160, 236, 1) 2%, rgba(73, 78, 251, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#56a0ec", endColorstr="#494efb", GradientType=1);
}

.banner-section-five .top-left-layer {
    position: absolute;
    left: 0;
    top: 0;
    height: 430px;
    width: 390px;
    background: url(../images/icons/video-banner-shape.png) left top no-repeat;
}

.banner-section-five .content-column {
    position: relative;
}

.banner-section-five .content-box {
    position: relative;
    padding-top: 70px;
    max-width: 530px;
}

.banner-section-five .content-box h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 25px;
}

.banner-section-five .content-box .text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 35px;
}

.banner-section-five .image-box {
    position: relative;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
}

.banner-section-five .image-box:after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -50px;
    height: 150px;
    width: 160px;
    background: url(../images/icons/video-banner-pattern.png) left top no-repeat;
}

.banner-section-five .image-box .image {
    position: relative;
    display: block;
    width: 100%;
    background: #202020;
    border-radius: 5px;
    z-index: 1;
}

.banner-section-five .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease;
}

.banner-section-five .image-box:hover .image img {
    opacity: 0.8;
}

.banner-section-five .image-box .video-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-section-five .image-box .video-link .icon {
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 50%;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    color: #7478fa;
    background: #ffffff;
    border-radius: 50%;
    transition: all 500ms ease;
}

.banner-section-five .image-box .video-link .icon:after {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 500ms ease;
}

.banner-section-five .image-box:hover .video-link .icon {
    transform: scale(1.1);
}

.banner-section-five .image-box:hover .video-link .icon:after {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/***

====================================================================
		Features Section Four
====================================================================

***/
.features-section-seven {
    position: relative;
    background: #fbfbfd;
    padding: 110px 0 90px;
}

.features-section-seven .sec-title {
    margin-bottom: 70px;
}

.features-section-seven .sec-title .text {
    margin-top: 10px;
}

.features-section-seven .feature-block-two .inner-box {
    background: rgba(0, 0, 0, 0);
}

.features-section-seven .feature-block-two .inner-box:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(35, 38, 125, 0.16);
}

.features-section-seven .feature-block-two .inner-box:hover .icon-box:before {
    opacity: 1;
}

.features-section-seven .feature-block-two .inner-box:hover .icon {
    color: #4c4754;
}

.features-section-seven .feature-block-two:nth-child(2) .inner-box:hover .icon {
    color: #b6a971;
}

.features-section-seven .feature-block-two:nth-child(3) .inner-box:hover .icon {
    color: #5b8f98;
}

.features-section-seven .feature-block-two .inner-box:hover h4 a {
    color: #4c4754;
}

.features-section-seven .feature-block-two .inner-box:hover .text {
    color: #75717b;
}

.features-section-seven .feature-block-two .inner-box:hover .link-box a i,
.features-section-seven .feature-block-two .inner-box:hover .link-box a {
    color: #7478fa;
}

/***

====================================================================
		About Section Style Two
====================================================================

***/
.about-section.style-two {
    position: relative;
    padding: 150px 0 0;
}

/***

====================================================================
		Testimonial Section Four
====================================================================

***/
.testimonial-section-four {
    position: relative;
    padding: 100px 0 0;
    background-color: #fbfbfd;
    text-align: center;
}

.testimonial-section-four .carousel-outer {
    position: relative;
    max-width: 870px;
    margin: 0 auto;
}

.testimonial-carousel-four {
    position: relative;
}

.testimonial-block-three {
    position: relative;
}

.testimonial-block-three .inner {
    position: relative;
    display: block;
    margin: 20px 60px 70px;
    padding: 40px 40px 100px;
    background: #ffffff;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03), 0 20px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-block-three:before {
    content: "";
    position: absolute;
    left: 25px;
    right: 25px;
    top: 40px;
    bottom: 40px;
    background: #fdfdfd;
    transform: scaleX(0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 1000ms ease;
}

.active .testimonial-block-three:before {
    transform: scaleX(1);
}

.testimonial-block-three .info {
    position: relative;
    margin: 0px auto 30px;
}

.testimonial-block-three .info .image {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    border-radius: 50%;
}

.testimonial-block-three .info .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
}

.testimonial-block-three .info .name {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #4c4754;
    line-height: 1.4em;
}

.testimonial-block-three .text {
    position: relative;
    font-size: 18px;
    line-height: 1.65em;
    font-weight: 500;
    margin: 0px auto 30px;
}

.testimonial-block-three .quote-icon {
    position: relative;
    font-size: 36px;
    line-height: 1em;
    color: rgba(138, 87, 222, 0.1);
}

.testimonial-section-four .owl-nav .owl-next,
.testimonial-section-four .owl-nav .owl-prev {
    padding: 0;
    position: absolute;
    left: -120px;
    top: 50%;
    margin: -40px 0px 0px;
    height: 40px;
    line-height: 40px;
    font-size: 40px;
    color: #c6c2ce;
    font-weight: 300;
    transition: all 500ms ease;
}

.testimonial-section-four .owl-nav .owl-next {
    right: -120px;
    left: auto;
}

.testimonial-section-four .owl-nav .owl-next:hover,
.testimonial-section-four .owl-nav .owl-prev:hover {
    color: #7478fa;
}

.testimonial-section-four .owl-dots {
    position: absolute;
    left: 0px;
    bottom: 120px;
    width: 100%;
    text-align: center;
}

.testimonial-section-four .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0px 5px;
}

.testimonial-section-four .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: #c2b8d1;
    transform: scale(0.6);
    border-radius: 50%;
    transition: all 500ms ease;
}

.testimonial-section-four .owl-dots .owl-dot.active span {
    background: #8a57de;
    transform: scale(1);
}

/***

====================================================================
		Team Section
====================================================================

***/
.team-section {
    position: relative;
    padding: 110px 0 80px;
    background: #ffffff;
}

.team-block {
    position: relative;
    margin-bottom: 45px;
}

.team-block .inner-box {
    position: relative;
}

.team-block .inner-box .image {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-block .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
}

.team-block .inner-box .image .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    display: block;
    height: 100%;
    text-align: center;
}

.team-block .inner-box .image .overlay-box:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    display: block;
    height: 100%;
    opacity: 0;
    transform: translateY(110%);
    background-color: rgba(116, 120, 250, 0.7);
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

.team-block .inner-box:hover .image .overlay-box:before {
    opacity: 1;
    transform: translateY(0%);
}

.team-block .inner-box .social-icons {
    position: absolute;
    left: 0;
    bottom: 20px;
    transform: translateY(-50px);
    opacity: 0;
    padding: 0px 10px;
    width: 100%;
}

.team-block .inner-box:hover .social-icons {
    opacity: 1;
    transform: translateY(0%);
    transition: all 0.5s ease 500ms;
    -moz-transition: all 0.5s ease 500ms;
    -webkit-transition: all 0.5s ease 500ms;
    -ms-transition: all 0.5s ease 500ms;
    -o-transition: all 0.5s ease 500ms;
}

.team-block .inner-box .social-icons li {
    position: relative;
    margin: 0px 3px 7px;
    display: inline-block;
}

.team-block .inner-box .social-icons li a {
    position: relative;
    color: #ffffff;
    font-size: 14px;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 300ms ease;
}

.team-block .inner-box .social-icons li a:hover {
    background: #ffffff;
    color: #75717b;
}

.team-block .inner-box .lower-box {
    position: relative;
    padding-top: 25px;
}

.team-block .inner-box .lower-box h3 {
    position: relative;
    color: #4c4754;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 4px;
}

.team-block .inner-box .lower-box h3 a {
    position: relative;
    color: #4c4754;
}

.team-block .inner-box .lower-box .designation {
    position: relative;
    color: #7478fa;
    font-size: 16px;
}

/***

====================================================================
			Call to Action
====================================================================

***/
.call-to-action-five {
    position: relative;
    padding: 120px 0 90px;
    background-color: #7478fa;
    overflow: hidden;
}

.call-to-action-five .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.call-to-action-five .outer-box {
    position: relative;
}

.call-to-action-five .title-column {
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.call-to-action-five .title-column h3 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.4em;
    color: #ffffff;
    font-weight: 600;
}

.call-to-action-five .link-column {
    position: relative;
    float: right;
}

.call-to-action-five .link-column .link-box {
    position: relative;
    padding: 30px 0 0;
}

.call-to-action-five .link-column .link-box a {
    font-size: 18px;
    color: #7478fa;
    padding: 18px 40px;
    line-height: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.call-to-action-five .link-column .link-box a:hover {
    color: #ffffff;
    background-color: #4c4754;
}

/*

====================================================================
	Banner Section Six
====================================================================

***/
.banner-section-six {
    position: relative;
    background-color: #8a57de;
    color: #ffffff;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 250px 0px 100px;
}

.particles-pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.banner-section-six .content-column {
    position: relative;
}

.banner-section-six .content-box {
    position: relative;
    padding-top: 100px;
    max-width: 500px;
}

.banner-section-six .content-box h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 40px;
}

.banner-section-six .content-box .text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 35px;
}

.banner-section-six .content-box .theme-btn {
    color: #8a57de;
}

.banner-section-six .content-box .theme-btn:hover {
    color: #ffffff;
}

.banner-section-six .image-box {
    position: relative;
}

.banner-section-six .image-box .mac-image {
    position: relative;
    display: block;
    margin-left: -370px;
    margin-right: 100px;
}

.banner-section-six .image-box img {
    position: relative;
    display: block;
}

.banner-section-six .image-box .iphone-image {
    position: absolute;
    right: -10px;
    top: 190px;
    display: block;
}

/***

====================================================================
	 	Fun Facts Section Two
====================================================================

***/
.fun-fact-section {
    position: relative;
    background-color: #f9fbff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 140px 0 110px;
}

.fun-fact-section .bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.fun-fact-section .counter-column {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.fun-fact-section .counter-column .inner {
    position: relative;
    display: block;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 5px;
    -ms-box-shadow: 0 20px 40px rgba(35, 38, 125, 0.1);
    box-shadow: 0 20px 40px rgba(35, 38, 125, 0.1);
}

.fun-fact-section .counter-column .icon-box {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 1em;
    margin-bottom: 20px;
    color: #ff5e85;
}

.fun-fact-section .counter-column:nth-child(2) .icon-box {
    color: #7478fa;
}

.fun-fact-section .counter-column:nth-child(3) .icon-box {
    color: #f5c315;
}

.fun-fact-section .counter-column:nth-child(4) .icon-box {
    color: #12cee4;
}

.fun-fact-section .counter-column .icon-box span {
    font-size: 40px;
    line-height: 1em;
}

.fun-fact-section .counter-column .count-box {
    position: relative;
    font-size: 40px;
    line-height: 1.2em;
    color: #454789;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.fun-fact-section .counter-column .count-text {
    position: relative;
    display: inline-block;
}

.fun-fact-section .counter-column .counter-title {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #8182a8;
    margin-top: 3px;
    z-index: 1;
}

/*

====================================================================
	Banner Section Seven
====================================================================

***/
.banner-section-seven {
    position: relative;
    background-color: #4b4fce;
    color: #ffffff;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 350px 0px 270px;
    text-align: center;
}

.banner-section-seven:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #4b4fce;
    opacity: 0.8;
}

.banner-section-seven .pattern-one {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -38px;
    width: 76px;
    height: 150px;
    background: url(../images/icons/pattern-1.png) right center no-repeat;
    z-index: 1;
}

.banner-section-seven .pattern-two {
    position: absolute;
    right: -50px;
    top: 100%;
    width: 160px;
    height: 150px;
    background: url(../images/icons/pattern-2.png) right center no-repeat;
    z-index: 1;
}

.banner-section-seven .outer-box {
    position: relative;
}

.banner-section-seven .content-box {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.banner-section-seven .content-box h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: 7px;
    word-spacing: 3px;
    margin-bottom: 20px;
}

.banner-section-seven .content-box h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 30px;
}

.banner-section-seven .content-box .text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 30px;
}

.banner-section-seven .content-box .theme-btn {
    color: #7478fa;
}

.banner-section-seven .content-box .theme-btn:hover {
    color: #ffffff;
}

/***

====================================================================
		User Friendly
====================================================================

***/
.user-friendly-section {
    position: relative;
    padding: 100px 0 100px;
    background-color: #ffffff;
}

.user-friendly-section .content-column {
    position: relative;
}

.user-friendly-section .content-column .inner-column {
    position: relative;
    padding-top: 30px;
}

.user-friendly-section .content-column .sec-title {
    margin-bottom: 40px;
}

.user-friendly-section .content-column .sec-title h2 {
    font-size: 34px;
}

.user-friendly-section .image-column {
    position: relative;
}

.user-friendly-section .image-column .inner-column {
    position: relative;
    padding-top: 40px;
    padding-right: 50px;
    margin-left: -100px;
}

.user-friendly-section .image-column .image-box {
    position: relative;
    z-index: 1;
}

.shape-12 {
    height: 371px;
    width: 420px;
    background-image: url(../images/icons/shape-14.png);
}

.shape-13 {
    height: 371px;
    width: 420px;
    background-image: url(../images/icons/shape-15.png);
}

.user-friendly-section .shape-12 {
    position: absolute;
    left: 100px;
    top: 0px;
}

.user-friendly-section .shape-13 {
    position: absolute;
    left: 100px;
    top: 0px;
}

/***

====================================================================
		Video Section
====================================================================

***/
.video-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #fbfbfe;
    padding: 80px 0 0px;
}

.video-section .anim-icons {
    max-width: 100%;
}

.video-section .icon-buildings {
    left: 0;
    bottom: 0px;
    width: 900px;
    height: 89px;
    background: url(../images/icons/icon-buildings.png) right bottom no-repeat;
}

.video-section .icon-buildings.left {
    left: -180px;
}

.video-section .icon-buildings.right {
    left: auto;
    right: -180px;
    background: url(../images/icons/icon-buildings.png) left bottom no-repeat;
}

.video-section .icon-cloud-1 {
    top: 40px;
}

.video-section .icon-cloud-2 {
    top: 60px;
}

.video-section .icon-cloud-3 {
    top: 140px;
}

.video-section .icon-cloud-4 {
    top: 120px;
}

.video-section .icon-cloud-5 {
    top: 170px;
}

.video-section .icon-cloud-6 {
    top: 220px;
}

.video-section .content-box {
    position: relative;
    max-width: 975px;
    margin: 0 auto;
    text-align: center;
}

.video-section .content-box .sec-title h2 {
    line-height: 1.45em;
}

.video-section .image-box {
    position: relative;
    box-shadow: 0px 50px 70px 0px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    bottom: -80px;
}

.video-section .image-box .image {
    position: relative;
    display: block;
    width: 100%;
    background: #202020;
    border-radius: 5px;
    z-index: 1;
}

.video-section .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease;
}

.video-section .image-box:hover .image img {
    opacity: 0.8;
}

.video-section .image-box .video-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-section .image-box .video-link .icon {
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 50%;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    color: #7478fa;
    background: #ffffff;
    border-radius: 50%;
    transition: all 500ms ease;
    box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.1);
}

.video-section .image-box .video-link .icon:after {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 500ms ease;
}

.video-section .image-box:hover .video-link .icon {
    transform: scale(1.1);
}

.video-section .image-box:hover .video-link .icon:after {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.pull-right {
    float: right;
}

/* News Code */
/* Btn Style Ten */
.btn-style-ten {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    padding: 11px 32px 12px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.7);
    font-family: "Lato", sans-serif;
}

.btn-style-ten:hover {
    color: #d53690;
    background-color: #ffffff;
}

/* Btn Style Eleven */
.btn-style-eleven {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    padding: 18px 34px 19px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    background-color: #d43396;
    font-family: "Lato", sans-serif;
    background-image: -webkit-gradient(linear, left top, right top, from(#de514e), color-stop(#e1455e), color-stop(#e13a6f), color-stop(#dd3482), to(#d43396));
    background-image: -o-linear-gradient(left, #de514e, #e1455e, #e13a6f, #dd3482, #d43396);
    background-image: linear-gradient(to right, #de514e, #e1455e, #e13a6f, #dd3482, #d43396);
}

.btn-style-eleven:hover {
    color: #ffffff;
    background-image: -webkit-gradient(linear, left top, right top, from(#d43396), color-stop(#dd3482), color-stop(#e13a6f), color-stop(#e1455e), to(#de514e));
    background-image: -o-linear-gradient(left, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
    background-image: linear-gradient(to right, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
}

/* Btn Style Twelve */
.btn-style-twelve {
    position: relative;
    font-size: 16px;
    color: #d43396;
    padding: 11px 34px 13px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #d43396;
    font-family: "Lato", sans-serif;
}

.btn-style-twelve i {
    position: relative;
    z-index: 1;
    font-style: normal;
}

.btn-style-twelve:before {
    position: absolute;
    content: "";
    width: 101%;
    height: 0px;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: all 600ms ease;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    background-image: -webkit-gradient(linear, left top, right top, from(#d43396), color-stop(#dd3482), color-stop(#e13a6f), color-stop(#e1455e), to(#de514e));
    background-image: -o-linear-gradient(left, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
    background-image: linear-gradient(to right, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
}

.btn-style-twelve:hover::before {
    opacity: 1;
    height: 350%;
}

.btn-style-twelve:hover {
    color: #ffffff;
    box-shadow: 0px 10px 15px rgba(219, 72, 99, 0.1);
}

/* Btn Style Thirteen */
.btn-style-thirteen {
    position: relative;
    font-size: 18px;
    color: #ffffff;
    padding: 13px 34px 13px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    background: none;
    border: 1px solid #ffffff;
    font-family: "Lato", sans-serif;
}

.btn-style-thirteen .icon {
    position: relative;
    font-weight: 800;
    font-size: 25px;
    top: 1px;
    margin-right: 15px;
}

.btn-style-thirteen:hover {
    color: #d43396;
    background-color: #ffffff;
}

/* Btn Style Four */
.btn-style-fourteen {
    position: relative;
    font-size: 16px;
    color: #d43396;
    padding: 12px 45px 13px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #ffffff;
    font-family: "Lato", sans-serif;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
}

.btn-style-fourteen:hover {
    color: #ffffff;
    background: none;
}

/* Sec Title Two */
.sec-title-two {
    position: relative;
    margin-bottom: 40px;
}

.sec-title-two .title {
    position: relative;
    color: #d43396;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sec-title-two h2 {
    position: relative;
    font-size: 40px;
    color: #394963;
    line-height: 1.2em;
    font-weight: 700;
    margin-top: 10px;
    font-family: "Lato", sans-serif;
}

.sec-title-two .text {
    position: relative;
    color: #7f8897;
    font-size: 20px;
    line-height: 1.6em;
    margin-top: 22px;
}

.sec-title-two.light .title,
.sec-title-two.light h2,
.sec-title-two.light .text {
    color: #ffffff;
}

.header-style-six .main-menu .navigation > li > a {
    font-size: 18px;
    color: #394963;
    font-family: "Lato", sans-serif;
}

.header-style-six .main-menu .navigation > li.current > a,
.header-style-six .main-menu .navigation > li:hover > a {
    color: #d43396;
}

.header-style-six .header-upper .nav-outer {
    margin-left: 40px;
}

.header-style-six .main-menu .navigation > li > a:before {
    background-color: #d43396;
    left: 25%;
    top: 35px;
    width: 50px;
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left top;
    transition: all 500ms ease;
}

.header-style-six .main-menu .navigation > li.current > a:before {
    opacity: 1;
    transform: rotate(-45deg);
}

.header-style-six .header-upper .auto-container {
    max-width: 1550px;
    padding: 0px 30px;
}

.header-style-six.fixed-header .outer-box .theme-btn {
    border-color: #d43396;
    color: #d43396;
    overflow: hidden;
}

.header-style-six.fixed-header .outer-box .theme-btn span {
    position: relative;
    z-index: 1;
}

.header-style-six.fixed-header .outer-box .theme-btn:before {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background: #d43396;
    position: absolute;
    content: "";
    opacity: 0;
    transition: all 600ms ease;
    transform-origin: left;
    transform: scaleX(0);
}

.header-style-six.fixed-header .outer-box .theme-btn:hover {
    color: #ffffff;
}

.header-style-six.fixed-header .outer-box .theme-btn:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

/* Banner Section Eight */
.banner-section-eight {
    position: relative;
    padding-top: 170px;
    padding-bottom: 120px;
    background-color: #fffbfd;
}

.banner-section-eight:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 150px;
    background-color: #ffffff;
}

.banner-section-eight .icon-one {
    position: absolute;
    left: 70px;
    top: 50%;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
}

.banner-section-eight .icon-two {
    position: absolute;
    left: 38%;
    top: 25%;
    width: 28px;
    height: 22px;
    background-repeat: no-repeat;
}

.banner-section-eight .icon-three {
    position: absolute;
    left: 42%;
    top: 25%;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
}

.banner-section-eight .icon-four {
    position: absolute;
    left: 32%;
    top: 80%;
    width: 41px;
    height: 35px;
    background-repeat: no-repeat;
}

.banner-section-eight .pattern-one {
    position: absolute;
    left: 0px;
    bottom: 30%;
    width: 98px;
    height: 224px;
    background-repeat: no-repeat;
}

.banner-section-eight .auto-container {
    max-width: 1550px;
    padding: 0px 30px;
}

.banner-section-eight .content-box {
    position: relative;
    margin-bottom: 40px;
    max-width: 665px;
    width: 100%;
    float: left;
    padding-right: 120px;
    padding-top: 120px;
}

.banner-section-eight .content-box h2 {
    position: relative;
    color: #394963;
    font-size: 69px;
    line-height: 1.1em;
    font-weight: 700;
}

.banner-section-eight .content-box .text {
    position: relative;
    color: #7f8897;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 45px;
    font-family: "Lato", sans-serif;
}

.banner-section-eight .carousel-box {
    position: relative;
    float: left;
    width: 100%;
    z-index: 1;
    max-width: 370px;
    height: 100%;
    display: block;
    background-size: cover;
}

.banner-section-eight .carousel-box .carousel-inner-box {
    position: relative;
    width: 370px;
    height: 750px;
    padding: 50px 10px 40px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 30px;
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
}

.banner-section-eight .pattern-two {
    position: absolute;
    left: -35px;
    top: -30px;
    width: 150px;
    height: 140px;
    background-repeat: no-repeat;
}

.banner-section-eight .carousel-box .carousel-inner-box .owl-dots,
.banner-section-eight .carousel-box .carousel-inner-box .owl-nav {
    display: none;
}

.banner-section-eight .banner-sidebar {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    transform: translateX(120px);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 0px 0px 0px 100px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d53590), color-stop(#db3780), color-stop(#df3c70), color-stop(#df4461), to(#dd4e54));
    background-image: -o-linear-gradient(top, #d53590, #db3780, #df3c70, #df4461, #dd4e54);
    background-image: linear-gradient(to bottom, #d53590, #db3780, #df3c70, #df4461, #dd4e54);
}

.banner-section-eight .banner-sidebar:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: url(../images/background/map-pattern.png) center center no-repeat;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner {
    position: relative;
    height: 100%;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .authors-box {
    position: absolute;
    height: 100%;
    left: 260px;
    width: 100%;
    max-width: 560px;
}

.banner-section-eight .banner-sidebar .author-box .author-inner {
    position: relative;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .authors-box:before {
    position: absolute;
    content: "";
    left: 0%;
    bottom: 17%;
    width: 183px;
    height: 687px;
    background: url(../images/icons/line-1.png) no-repeat;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .authors-box:after {
    position: absolute;
    content: "";
    left: 17%;
    bottom: 150px;
    width: 382px;
    height: 512px;
    background: url(../images/icons/line-2.png) no-repeat;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .circle-one {
    position: absolute;
    content: "";
    left: 50%;
    top: 35%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .circle-two {
    position: absolute;
    content: "";
    left: 20%;
    top: 45%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.banner-author-box {
    position: relative;
    z-index: 1;
}

.banner-author-box .author-inner {
    position: relative;
    text-align: center;
}

.banner-author-box .author-inner .image-outer {
    position: relative;
    background: url(../images/icons/author-bg.png) center top no-repeat;
}

.banner-author-box .author-inner .image-outer .image {
    position: relative;
    width: 50px;
    height: 50px;
    margin-left: 6px;
    top: 6px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.banner-author-box .author-inner h3 {
    position: relative;
    color: #ffffff;
    font-size: 40px;
    margin-top: 20px;
    font-family: "Qwigley", cursive;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .authors-box .author-one {
    position: absolute;
    left: 0%;
    bottom: 6%;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .authors-box .author-two {
    position: absolute;
    right: 4%;
    bottom: 39%;
}

.banner-section-eight .banner-sidebar .banner-sidebar-inner .authors-box .author-three {
    position: absolute;
    left: 19%;
    top: 20%;
}

.banner-section-eight .sponsors-carousel-box {
    position: absolute;
    max-width: 750px;
    padding-top: 40px;
}

.banner-section-eight .sponsors-carousel-box .image-box {
    text-align: center;
    line-height: 50px !important;
}

.banner-section-eight .sponsors-carousel-box .image-box img {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: 30px;
}

.banner-section-eight .sponsors-carousel-box .owl-dots,
.banner-section-eight .sponsors-carousel-box .owl-nav {
    display: none;
}

/***

====================================================================
	Services Section
====================================================================

***/
.services-section {
    position: relative;
    padding: 150px 0px 0px;
}

.services-section .inner-container {
    padding-bottom: 80px;
    border-bottom: 2px dotted #b2b9c5;
}

/* Service Block */
.services-block {
    position: relative;
    margin-bottom: 30px;
}

.services-block .inner-box {
    position: relative;
    padding-right: 50px;
}

.services-block .inner-box .icon-outer {
    position: relative;
    display: inline-block;
}

.services-block .inner-box .icon-outer .icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: #ffffff;
    font-size: 38px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    margin-bottom: 38px;
    display: inline-block;
    background-color: #4e936e;
    transition: all 900ms ease;
}

.services-block .inner-box .icon-outer:after {
    position: absolute;
    content: "";
    right: -15px;
    top: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 900ms ease;
    background-color: rgba(78, 147, 110, 0.2);
}

.services-block .inner-box:hover .icon-outer:after {
    transform: rotateX(360deg);
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
}

.services-block .inner-box h3 {
    position: relative;
    color: #394963;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3em;
}

.services-block .inner-box h3 a {
    position: relative;
    color: #394963;
    transition: all 300ms ease;
}

.services-block .inner-box h3 a:hover {
    color: #de514e;
}

.services-block .inner-box .text {
    position: relative;
    color: #7f8897;
    font-size: 18px;
    line-height: 1.6em;
    margin-top: 18px;
    margin-bottom: 28px;
}

.services-block:nth-child(2) .inner-box .icon-outer .icon {
    background-color: #c54949;
}

.services-block:nth-child(2) .inner-box .icon-outer:after {
    background-color: rgba(197, 73, 73, 0.2);
}

.services-block:nth-child(3) .inner-box .icon-outer .icon {
    background-color: #dcb918;
}

.services-block:nth-child(3) .inner-box .icon-outer:after {
    background-color: rgba(220, 185, 24, 0.2);
}

/***

====================================================================
	About App Section
====================================================================

***/
.about-app-section {
    position: relative;
    padding-top: 130px;
}

.about-app-section .title-column {
    position: relative;
}

.about-app-section .title-column .inner-column {
    position: relative;
    margin-bottom: 40px;
    padding-top: 170px;
    z-index: 1;
}

.about-app-section .title-column .inner-column .more {
    position: relative;
    color: #394963;
    font-size: 16px;
    font-weight: 700;
    transition: all 300ms ease;
}

.about-app-section .title-column .inner-column .more .arrow {
    position: relative;
    margin-left: 8px;
    top: 2px;
}

.about-app-section .title-column .inner-column .more:hover {
    color: #d43396;
}

.about-app-section .image-column {
    position: relative;
}

.about-app-section .image-column .inner-column {
    position: relative;
}

.about-app-section .image-column .inner-column .circle-one {
    position: absolute;
    right: -50px;
    top: 140px;
    width: 400px;
    height: 400px;
    opacity: 0.5;
    border-radius: 50%;
    background-color: rgba(215, 60, 129, 0.5);
}

.about-app-section .image-column .inner-column .circle-two {
    position: absolute;
    right: -8%;
    top: 140px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d53590), color-stop(#db3780), color-stop(#df3c70), color-stop(#df4461), to(#dd4e54));
    background-image: -o-linear-gradient(top, #d53590, #db3780, #df3c70, #df4461, #dd4e54);
    background-image: linear-gradient(to bottom, #d53590, #db3780, #df3c70, #df4461, #dd4e54);
}

.about-app-section .image-column .image {
    position: relative;
    z-index: 1;
    margin-right: -100px;
    max-width: 692px;
}

.about-app-section .image-column .image-two {
    position: absolute;
    left: 12%;
    top: 80px;
    z-index: 1;
}

/***

====================================================================
	Download Section
====================================================================

***/
.download-section {
    position: relative;
    padding: 130px 0px 130px;
    background-image: -moz-linear-gradient(to right, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.download-section .title-column {
    position: relative;
}

.download-section .title-column .inner-column {
    position: relative;
    padding-top: 125px;
    padding-bottom: 50px;
    padding-right: 100px;
}

.download-section .title-column .inner-column .btn-box .theme-btn {
    position: relative;
    min-width: 194px;
    padding: 13px 28px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.download-section .app-column {
    position: relative;
}

.download-section .app-column .inner-column {
    position: relative;
}

.download-section .app-column .inner-column .app-carousel-outer {
    position: relative;
    width: 310px;
    height: 629px;
    padding: 42px 9px 36px;
    background: url(images/resource/mokeup-1.html) no-repeat;
    background-size: cover;
}

.download-section .app-column .inner-column .authors-box {
    position: absolute;
    height: 100%;
    left: 0px;
    width: 100%;
    max-width: 470px;
}

.download-section .app-column .inner-column .authors-box:before {
    position: absolute;
    content: "";
    right: 50px;
    top: 0px;
    width: 514px;
    height: 446px;
    background: url(../images/icons/line-3.png) no-repeat;
}

.download-section .app-column .inner-column .authors-box .author-one {
    position: absolute;
    left: -35%;
    bottom: 10%;
}

.download-section .app-column .inner-column .authors-box .author-two {
    position: absolute;
    right: 0%;
    top: 0%;
}

/***

====================================================================
	Feature Section Eight
====================================================================

***/
.features-section-eight {
    position: relative;
    padding: 105px 0px 100px;
}

.features-section-eight .auto-container {
    max-width: 1330px;
}

.features-section-eight .inner-container {
    position: relative;
    padding-top: 110px;
}

.features-section-eight .inner-container .circles-boxed {
    position: absolute;
    top: 100px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.features-section-eight .inner-container .circles-boxed .circle-one {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 885px;
    width: 885px;
    border-radius: 50%;
    margin-left: -442px;
    margin-top: -442px;
    background-color: rgba(207, 49, 146, 0.03);
}

.features-section-eight .inner-container .circles-boxed .circle-two {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 700px;
    width: 700px;
    border-radius: 50%;
    margin-left: -350px;
    margin-top: -350px;
    background-color: rgba(207, 49, 146, 0.03);
}

.features-section-eight .inner-container .circles-boxed .circle-three {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    margin-left: -250px;
    margin-top: -250px;
    background-color: rgba(207, 49, 146, 0.03);
}

.features-section-eight .inner-container .circles-boxed .circle-four {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 365px;
    width: 365px;
    border-radius: 50%;
    margin-left: -182px;
    margin-top: -182px;
    background-color: rgba(207, 49, 146, 0.03);
}

.features-section-eight .inner-container .circles-boxed .circle-four .ripple:before,
.features-section-eight .inner-container .circles-boxed .circle-four .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -ms-box-shadow: 0 0 0 0 rgba(207, 49, 146, 0.1);
    -o-box-shadow: 0 0 0 0 rgba(207, 49, 146, 0.1);
    box-shadow: 0 0 0 0 rgba(207, 49, 146, 0.1);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.features-section-eight .inner-container .circles-boxed .circle-four .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.features-section-eight .inner-container .circles-boxed .circle-four .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 400px rgba(255, 102, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 102, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 400px rgba(255, 102, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 102, 0);
    }
}

.features-section-eight .left-column {
    position: relative;
    z-index: 5;
}

.features-section-eight .left-column .inner-column {
    position: relative;
    margin-right: -56px;
    padding-top: 140px;
}

/* Feature Block Five */
.feature-block-five {
    position: relative;
    margin-bottom: 60px;
    cursor: pointer;
    z-index: 1;
}

.feature-block-five .inner-box {
    position: relative;
    text-align: right;
    padding-top: 8px;
    min-height: 70px;
    padding-right: 100px;
}

.feature-block-five .inner-box .icon-box {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 70px;
    height: 70px;
    line-height: 72px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    display: inline-block;
    background-color: #4188ca;
    transition: all 500ms ease;
}

.feature-block-five.active .inner-box .icon-box {
    transform: scale(1.5);
    box-shadow: 0px 15px 25px 2px rgba(0, 0, 0, 0.1);
}

.feature-block-five .inner-box h3 {
    position: relative;
    color: #394963;
    font-size: 22px;
    line-height: 1.3em;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.feature-block-five .inner-box .text {
    position: relative;
    color: #7f8897;
    font-size: 18px;
    margin-top: 5px;
    font-family: "Lato", sans-serif;
}

.feature-block-five:nth-child(2) .inner-box .icon-box {
    background-color: #d5419f;
}

.feature-block-five:nth-child(3) .inner-box .icon-box {
    background-color: #77bb2d;
}

.features-section-eight .right-column {
    position: relative;
    z-index: 5;
}

.features-section-eight .right-column .inner-column {
    position: relative;
    margin-left: -56px;
    padding-top: 140px;
}

.features-section-eight .right-column .feature-block-five .inner-box {
    position: relative;
    padding-right: 0px;
    padding-left: 100px;
    text-align: left;
}

.features-section-eight .right-column .feature-block-five .inner-box .icon-box {
    left: 0px;
    right: auto;
}

.features-section-eight .right-column .feature-block-five .inner-box .icon-box {
    background-color: #dcb918;
}

.features-section-eight .right-column .feature-block-five:nth-child(2) .inner-box .icon-box {
    background-color: #4e936e;
}

.features-section-eight .right-column .feature-block-five:nth-child(3) .inner-box .icon-box {
    background-color: #c54949;
}

.features-section-eight .image-column {
    position: relative;
    text-align: center;
}

.features-section-eight .image-column .inner-column {
    position: relative;
}

.features-section-eight .image-column .inner-column .image {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 310px;
    height: 640px;
    border-radius: 28px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background: url(../images/resource/mokeup-3.png) center center no-repeat;
    background-size: 100% 100%;
    opacity: 1;
    overflow: hidden;
}

.features-section-eight .image-column .inner-column .image .image-box {
    position: absolute;
    left: 12px;
    top: 52px;
    width: 286px;
    height: 546px;
    overflow: hidden;
}

.features-section-eight .image-column .inner-column .image .image-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.features-section-eight .image-column .inner-column .image.appeared .image-box img {
    -webkit-animation: slideInUp 0.5s linear 1;
    animation: slideInUp 0.5s linear 1;
}

.clients-section-two .pattern-layer {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -200px;
    width: 1281px;
    height: 1444px;
}

/***

====================================================================
	Call To Action Section
====================================================================

***/
.call-to-action-six {
    position: relative;
    padding: 135px 0px 135px;
    background-image: -webkit-gradient(linear, left top, right top, from(#d43396), color-stop(#dd3482), color-stop(#e13a6f), color-stop(#e1455e), to(#de514e));
    background-image: -o-linear-gradient(left, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
    background-image: linear-gradient(to right, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
}

.call-to-action-six .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-repeat: repeat;
}

.call-to-action-six h2 {
    position: relative;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    font-family: "Lato", sans-serif;
}

/* .call-to-action-six h2 span{
	font-weight:300;
} */
.call-to-action-six .btn-column {
    text-align: right;
    padding-top: 30px;
}

/***

====================================================================
	Footer Style Two
====================================================================

***/
.footer-style-two {
    position: relative;
    background-color: #fcfafb;
}

.footer-style-two .widgets-section {
    position: relative;
    padding: 115px 0px 70px;
}

.footer-style-two .footer-column {
    position: relative;
    margin-bottom: 40px;
}

.footer-style-two .footer-column .footer-title {
    position: relative;
    color: #394963;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 30px;
    font-family: "Lato", sans-serif;
}

.footer-style-two .footer-column .footer-list {
    position: relative;
}

.footer-style-two .footer-column .footer-list li {
    position: relative;
    margin-bottom: 16px;
}

.footer-style-two .footer-column .footer-list li a {
    position: relative;
    color: #7f8897;
    font-size: 18px;
    line-height: 1.3em;
    transition: all 300ms ease;
}

.footer-style-two .footer-column .footer-list li a:hover {
    color: #d94175;
}

.footer-style-two .footer-column .text {
    position: relative;
    color: #9ca3b0;
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-style-two .widgets-section .building-pattern {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 96px;
    width: 100%;
    background: url(../images/background/building-layer.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.footer-style-two .cloud-one {
    position: absolute;
    margin-left: 85px;
    top: 200px;
    height: 36px;
    width: 100px;
    background: url(../images/icons/cloud-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: animateCloud 10s linear infinite;
    animation: animateCloud 10s linear infinite;
}

.footer-style-two .cloud-two {
    position: absolute;
    margin-left: 200px;
    top: 60px;
    height: 29px;
    width: 80px;
    background: url(../images/icons/cloud-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: animateCloudtwo 20s linear infinite;
    animation: animateCloudtwo 20s linear infinite;
}

.footer-style-two .cloud-three {
    position: absolute;
    margin-right: 180px;
    top: 60px;
    height: 35px;
    width: 100px;
    background: url(../images/icons/cloud-4.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: animateCloud 30s linear infinite;
    animation: animateCloud 20s linear infinite;
}

.footer-style-two .cloud-four {
    position: absolute;
    top: 200px;
    height: 35px;
    width: 100px;
    background: url(../images/icons/cloud-5.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: animateCloud 40s linear infinite;
    animation: animateCloud 40s linear infinite;
}

.footer-style-two .cloud-five {
    position: absolute;
    margin-right: 130px;
    bottom: 170px;
    height: 35px;
    width: 100px;
    background: url(../images/icons/cloud-6.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: animateCloud 50s linear infinite;
    animation: animateCloud 50s linear infinite;
}

.clients-section-two.style-three {
    padding-top: 160px;
}

.clients-section-two.style-three .content-column .btn-box a {
    border-radius: 50px;
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
}

.newsletter-form .form-group {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    z-index: 1;
}

.newsletter-form .form-group input,
.newsletter-form .form-group select,
.newsletter-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
    color: #75717b;
    font-weight: 500;
    height: 60px;
    padding: 25px 20px;
    border-radius: 50px;
    background-color: #ffffff;
    border: 1px solid transparent;
    transition: all 300ms ease;
    box-shadow: 0 20px 40px rgba(42, 38, 45, 0.06);
}

.newsletter-form .form-group input:focus,
.newsletter-form .form-group select:focus,
.newsletter-form .form-group textarea:focus {
    border: 1px solid #dd4d58;
}

.newsletter-form .form-group input[type=submit],
.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 4px;
    font-size: 16px;
    font-weight: 700;
    padding: 11px 20px;
    line-height: 30px;
    cursor: pointer;
    color: #ffffff;
    border-radius: 50px;
    font-family: "Lato", sans-serif;
    background-image: -webkit-gradient(linear, left top, right top, from(#d43396), color-stop(#dd3482), color-stop(#e13a6f), color-stop(#e1455e), to(#de514e));
    background-image: -o-linear-gradient(left, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
    background-image: linear-gradient(to right, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
}

.footer-style-two .footer-bottom {
    position: relative;
    padding: 20px 0px 30px;
    border-top: 1px solid #f0e5ea;
}

.footer-style-two .footer-bottom .copyright {
    position: relative;
    color: #9ca3b0;
    font-size: 16px;
    padding-top: 15px;
}

.footer-style-two .footer-bottom .social-box {
    position: relative;
}

.footer-style-two .footer-bottom .social-box li {
    position: relative;
    margin-left: 2px;
    display: inline-block;
}

.footer-style-two .footer-bottom .social-box li a {
    position: relative;
    color: #c0a4b5;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 16px;
    line-height: 50px;
    border-radius: 50px;
    display: inline-block;
    transition: all 300ms ease;
}

.footer-style-two .footer-bottom .social-box li a:hover {
    color: #ffffff;
    background-image: -webkit-gradient(linear, left top, right top, from(#d43396), color-stop(#dd3482), color-stop(#e13a6f), color-stop(#e1455e), to(#de514e));
    background-image: -o-linear-gradient(left, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
    background-image: linear-gradient(to right, #d43396, #dd3482, #e13a6f, #e1455e, #de514e);
}

/* Apeee - SaaS, Software & WebApp Templatee */
@media only screen and (max-width: 7000px) {
    .page-wrapper {
        overflow: hidden;
    }
}

@media only screen and (min-width: 1560px) {
    .app-screenshots-one .owl-dots {
        left: -670px;
    }
}

@media only screen and (max-width: 1599px) {
    .banner-section-three .image-box .image-2 {
        right: 50px;
        top: -100px;
    }
}

@media only screen and (max-width: 1500px) {
    .app-screenshots-one .owl-dots {
        left: -560px;
    }

    .header-style-six .header-upper .auto-container,
    .banner-section-eight .auto-container {
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 1340px) {
    .banner-section .layer-image {
        left: -100px;
    }

    .banner-section .image-box {
        right: 0px;
    }

    .banner-section-three .image-box .image-1 {
        position: relative;
        top: 50px;
    }

    .banner-section-six .image-box .iphone-image,
    .banner-section-three .image-box .image-2 {
        display: none;
    }

    .banner-section-six .image-box .mac-image {
        margin-left: -200px;
        margin-right: 0;
    }

    .banner-section-six .content-box {
        padding-top: 50px;
    }

    .app-screenshots-one .owl-dots {
        left: -530px;
    }
}

@media only screen and (max-width: 1139px) {
    .banner-section .layer-outer,
    .banner-section .image-box {
        display: none;
    }

    .banner-section .content-box {
        padding: 220px 0 70px;
    }

    .about-section {
        padding: 170px 0 20px;
    }

    .features-section .blocks-column .inner-column {
        padding-left: 0;
    }

    .testimonial-section-two .outer-box,
    .features-section .blocks-column .row {
        margin: 0 -15px;
    }

    .features-section .feature-block {
        padding: 0 15px;
    }

    .features-section-five .content-column .inner-column,
    .about-section-two .content-column .inner-column,
    .features-section .title-column .inner-column {
        padding: 0 0;
    }

    .features-section {
        padding-bottom: 100px;
    }

    .banner-section-three .layer-outer,
    .user-friendly-section .content-column .sec-title h2 br,
    .saas-feature .content-column .sec-title br,
    .banner-section-two .content-column h1 br {
        display: none;
    }

    .banner-section-three .content-box {
        padding: 200px 0 50px;
        text-align: center;
        margin: 0 auto;
    }

    .banner-section-three .image-box {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
    }

    .banner-section-three .image-box .image-1 {
        position: relative;
        display: inline-block;
        right: 0;
        top: 0;
    }

    .header-style-three .main-menu .navigation > li > a {
        color: #4c4754;
    }

    .header-style-three .main-menu .navigation > li:hover > a,
    .header-style-three .main-menu .navigation > li.current > a {
        color: #8a57de;
    }

    .banner-section-four .content-box h1 {
        font-size: 40px;
        line-height: 1.3em;
    }

    .clients-section-two .content-column .inner-column {
        padding-top: 0;
    }

    .banner-section-five {
        padding: 250px 0 150px;
    }

    .banner-section-five .content-box {
        padding-top: 0px;
    }

    .user-friendly-section .image-column .inner-column {
        padding-right: 0;
        margin-left: 0;
    }

    .sidebar-page-container .sidebar {
        padding-left: 0;
    }

    .app-screenshots-one .owl-dots {
        position: relative;
        left: 0;
        bottom: 0;
        padding-top: 50px;
    }

    .banner-section-eight .content-box {
        max-width: 560px;
        padding-right: 15px;
    }

    .banner-section-eight .banner-sidebar {
        width: 25%;
    }

    .clients-section-two .content-column .inner-column,
    .download-section .title-column .inner-column,
    .services-block .inner-box {
        padding-right: 0px;
    }

    .download-section .app-column .inner-column .authors-box .author-two {
        right: -14%;
    }

    .call-to-action-six h2 {
        font-size: 36px;
    }

    .main-menu .navigation > li {
        margin-right: 35px;
    }

    .banner-section-eight .banner-sidebar {
        transform: translateX(0px);
    }

    .feature-block-five .inner-box {
        padding-right: 0;
        text-align: center;
    }

    .features-section-eight .right-column .feature-block-five .inner-box {
        padding-left: 0;
        text-align: center;
    }

    .feature-block-five .inner-box .icon-box,
    .features-section-eight .right-column .feature-block-five .inner-box .icon-box,
    .feature-block-five.active .inner-box .icon-box {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        transform: scale(1);
        position: relative;
        margin: 0px 0px 20px;
    }

    .feature-block-five .inner-box {
        text-align: center;
    }

    .banner-section-eight .content-box h2 {
        font-size: 56px;
    }
}

@media only screen and (min-width: 1024px) {
    .main-menu .navigation > li > ul,
    .main-menu .navigation > li > ul > li > ul {
        display: block !important;
        visibility: hidden;
        opacity: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .main-header.fixed-header,
    .main-header {
        top: 0 !important;
        box-shadow: none;
        border-bottom: 1px solid #f1f1f1;
    }

    .header-style-four.fixed-header,
    .header-style-four {
        background-color: #58a0e4 !important;
        border-bottom: 0;
    }

    .about-app-section .image-column .image {
        margin-right: 0px;
    }

    .features-section-eight .left-column .inner-column {
        margin-right: 0px;
    }

    .features-section-eight .image-column {
        order: 3;
    }

    .features-section-eight .right-column {
        order: 2;
    }

    .features-section-eight .inner-container,
    .features-section-eight .left-column .inner-column,
    .features-section-eight .right-column .inner-column {
        padding-top: 0px;
    }

    .features-section-eight .inner-container .circles-boxed {
        top: 0px;
    }

    .features-section-eight .right-column .inner-column {
        margin-left: 0px;
    }

    .call-to-action-six,
    .call-to-action-six .btn-column {
        text-align: center;
    }

    .header-style-five.fixed-header,
    .header-style-five {
        border-bottom: 0;
        background-color: transparent;
    }

    .banner-section-eight .content-box h2 br,
    .banner-section-eight .banner-sidebar,
    .main-header .outer-box .btn-box {
        display: none;
    }

    .banner-section-eight .content-box h2 {
        font-size: 50px;
    }

    .banner-section-eight .sponsors-carousel-box {
        margin-top: 60px;
        max-width: 100%;
        width: 100%;
        left: 0px;
    }

    .banner-section-eight .sponsors-carousel-box h4 {
        text-align: center;
    }

    .banner-section-eight .content-box {
        max-width: 100%;
        padding-top: 50px;
        float: none;
        width: 100%;
        text-align: center;
    }

    .banner-section-eight .carousel-box {
        float: none;
        margin: 0 auto;
    }

    .large-container {
        padding: 0 15px;
    }

    .main-menu .navigation > li {
        margin-left: 20px;
        margin-right: 0;
    }

    .main-header .header-upper .nav-outer {
        float: right;
    }

    .banner-section .content-box {
        padding-top: 170px;
    }

    .banner-section-three .content-box {
        padding-top: 170px;
    }

    .banner-section-seven .content-box h2,
    .banner-section-six .content-box h2,
    .banner-section-five .content-box h2,
    .call-to-action-four .title-column h3,
    .banner-section-three .content-box h1,
    .banner-section-two .content-column h1,
    .banner-section .content-box h1 {
        font-size: 40px;
        line-height: 1.2em;
    }

    .banner-section-five .content-box {
        padding-top: 0px;
        text-align: center;
        max-width: 100%;
    }

    .about-section .image-column .image-1 {
        padding-left: 0;
    }

    .user-friendly-section .content-column .inner-column,
    .get-the-app .image-column .image-box,
    .about-section .image-column {
        text-align: center;
    }

    .banner-section-four .layer-outer,
    .features-section .title-column .icon-box,
    .get-the-app .anim-icons,
    .features-section .anim-icons {
        display: none;
    }

    .features-section {
        padding-bottom: 0;
    }

    .app-screenshots-one .title-column .inner {
        padding-top: 60px;
    }

    .testimonial-section-two,
    .app-screenshots-one {
        padding-bottom: 50px;
    }

    .saas-feature .image-column .inner-column,
    .clients-section-two .image-column .inner-column,
    .features-section-five .carousel-column .inner-column,
    .features-section-four .image-column .inner-column,
    .banner-section-two .image-column .inner-column,
    .get-the-app-two .image-column .inner-column,
    .about-section-two .image-column .inner-column {
        margin: 0;
    }

    .clients-section-two .image-column .inner-column,
    .saas-feature .content-column .inner-column,
    .get-the-app-two .content-column .inner-column,
    .about-section-two .image-column .inner-column,
    .banner-section-two .image-column .inner-column,
    .testimonial-section .content-column .inner-column {
        padding: 0;
    }

    .about-section .content-column .inner-column,
    .about-section-two .image-column .inner-column {
        text-align: center;
    }

    .banner-section-two .image-column {
        margin-bottom: 50px;
    }

    .get-the-app .image-column .image-box .image-2 {
        right: 50%;
        margin-right: -200px;
        bottom: -50px;
    }

    .banner-section-two .content-column .inner-column {
        padding: 190px 0 120px;
    }

    .about-section .content-column,
    .clients-section-two .content-column,
    .features-section-four .content-column,
    .banner-section-four .content-column,
    .get-the-app-two .content-column,
    .about-section-two .content-column,
    .testimonial-section .content-column {
        order: 0;
    }

    .banner-section-seven {
        padding: 220px 0 150px;
    }

    .features-section-four .content-column,
    .about-section-two .content-column {
        margin-bottom: 50px;
    }

    .about-section-two.style-two .image-column .inner-column {
        padding-left: 0;
        padding-top: 70px;
        text-align: left;
    }

    .call-to-action-three .outer-box {
        padding: 30px 15px;
        text-align: center;
    }

    .call-to-action-five .title-column,
    .call-to-action-five .link-column,
    .call-to-action-three .btn-column,
    .call-to-action-three .title-column {
        width: 100%;
    }

    .banner-section-four .image-column .image-box {
        padding: 0;
        margin: 0;
    }

    .banner-section-four .content-box {
        padding: 170px 0 100px;
        text-align: center;
        max-width: 100%;
    }

    .testimonial-block-two .content-column .inner-column {
        padding: 70px 0 0;
        text-align: center;
    }

    .testimonial-carousel-three .owl-dots {
        top: 20%;
    }

    .clients-section-two {
        padding-top: 0;
        padding-bottom: 100px;
    }

    .video-section .image-box {
        margin: 0;
        bottom: 0;
    }

    .clients-section-two.style-two {
        padding: 70px 0 100px;
    }

    .clients-section-two .image-column .icon {
        position: relative;
        display: inline-block;
        height: 100px !important;
        width: 100px !important;
        line-height: 100px;
        left: 0;
        top: 0;
        margin: 0 30px 30px;
        padding: 0;
    }

    .clients-section-two .image-column .icon img {
        width: 100px;
        height: 100px;
        display: inline-block;
    }

    .clients-section-two .image-column .inner-column {
        height: auto;
        padding: 0;
    }

    .clients-section-two .image-column .inner-column:after {
        display: table;
        clear: both;
        content: "";
    }

    .clients-section-two .image-column .circle-one,
    .clients-section-two .image-column .circle-two,
    .clients-section-two .image-column .circle-three {
        display: none;
    }

    .call-to-action-four {
        text-align: center;
        background-size: cover;
    }

    .call-to-action-four .title-column,
    .call-to-action-four .btn-column {
        width: 100%;
    }

    .banner-section-five {
        padding: 170px 0 100px;
    }

    .get-the-app.style-two .content-column .inner-column {
        padding: 70px 0;
        text-align: center;
    }

    .get-the-app.style-two .image-column .inner-column {
        padding: 0px 0 70px;
    }

    .banner-section-five .content-column {
        margin-bottom: 70px;
    }

    .about-section .image-column .inner-column {
        margin-top: 50px;
    }

    .banner-section-six {
        padding: 200px 0 100px;
    }

    .banner-section-six .content-box {
        padding-top: 0;
        margin: 0 auto 0;
        text-align: center;
    }

    .banner-section-six .image-box {
        text-align: center;
    }

    .banner-section-six .image-box img {
        display: inline-block;
    }

    .blog-single {
        padding: 0;
    }

    .single-post-banner {
        padding: 210px 0px 120px;
    }

    .single-post-banner h1 {
        font-size: 30px;
        line-height: 1.2em;
    }

    .single-post-banner h1 br {
        display: none;
    }

    .about-app-section .title-column .inner-column {
        padding-top: 0px;
    }

    .download-section .app-column .inner-column .app-carousel-outer {
        margin: 0 auto;
    }

    .download-section .app-column .inner-column .authors-box {
        left: 24%;
    }

    .clients-section-two.style-three {
        padding-top: 0px;
    }

    .download-section .title-column .inner-column {
        padding-bottom: 0px;
        text-align: center;
    }

    .clients-section-two .content-column .inner-column,
    .clients-section-two .image-column .inner-column {
        text-align: center;
    }

    .footer-style-two .footer-column .footer-title {
        margin-bottom: 20px;
    }

    .main-header .nav-outer {
        width: 100%;
        padding: 0;
        margin: 0 !important;
        margin-top: -85px !important;
    }

    .main-menu {
        width: 100%;
        display: block;
    }

    .main-menu .navbar-collapse {
        max-height: 400px;
        max-width: none;
        overflow: auto;
        float: none !important;
        width: 100% !important;
        padding: 0px 0px 0px;
        border: none;
        margin: 0px 0px 15px;
        border-radius: 0px;
        box-shadow: none;
    }

    .main-menu .navbar-collapse.show,
    .main-menu .collapsing {
        padding: 0px 0px 0px;
        border: none;
        margin: 0px 0px 15px;
        border-radius: 0px;
        box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.05), -3px 0px 5px 0px rgba(0, 0, 0, 0.05);
    }

    .main-menu .navbar-header {
        position: relative;
        float: none;
        display: block;
        text-align: right;
        width: 100%;
        padding: 20px 0px 10px;
        right: 0px;
        z-index: 12;
    }

    .main-menu .navbar-header .navbar-toggle {
        display: inline-block;
        z-index: 12;
        border: 1px solid #ffffff;
        float: none;
        margin: 0px 0px 0px 0px;
        border-radius: 0px;
        background: #ffffff;
    }

    .main-menu .navbar-collapse > .navigation {
        float: none !important;
        padding: 10px 20px;
        margin: 0px !important;
        width: 100% !important;
        background: #ffffff !important;
    }

    .main-menu .navbar-collapse > .navigation > li {
        margin: 0px 0px 0px !important;
        float: none !important;
        padding: 0px !important;
        width: 100%;
    }

    .main-menu .navigation > li > a,
    .main-menu .navigation > li > ul:before {
        border: none;
    }

    .main-menu .navbar-collapse > .navigation > li > a {
        padding: 10px 10px !important;
        border: none !important;
    }

    .main-menu .navigation li a:after,
    .main-menu .navigation li a:before,
    .main-menu .navigation li:before,
    .main-menu .navigation li:after {
        color: #ffffff !important;
        right: 15px;
        font-size: 16px;
        display: none !important;
    }

    .main-menu .navbar-collapse > .navigation > li > ul,
    .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
        position: relative;
        border: none;
        float: none;
        visibility: visible;
        opacity: 1;
        display: none;
        background: #ffffff !important;
        margin: 0px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 0px;
        outline: none;
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
        transform: translateY(0px);
        transition: none !important;
        -webkit-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
        -moz-transition: none !important;
    }

    .main-menu .navbar-collapse > .navigation > li > ul,
    .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
        padding-bottom: 15px;
        padding-left: 30px;
        padding-top: 10px;
        border-bottom: 1px solid #f0f0f0 !important;
    }

    .main-menu .navbar-collapse > .navigation > li,
    .main-menu .navbar-collapse > .navigation > li > ul > li,
    .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li {
        border-top: 1px solid #ffffff !important;
        border-bottom: none;
        opacity: 1 !important;
        top: 0px !important;
        left: 0px !important;
        visibility: visible !important;
        margin: 0px;
        padding: 0px;
    }

    .main-menu .navbar-collapse > .navigation > li:first-child {
        border: none !important;
    }

    .main-menu .navbar-collapse > .navigation > li > a,
    .main-menu .navbar-collapse > .navigation > li > ul > li > a,
    .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a {
        padding: 14px 10px !important;
        line-height: 22px;
        color: #394963 !important;
        background: #ffffff;
        text-align: left;
        font-size: 20px;
    }

    .main-menu .navbar-collapse > .navigation > li > ul > li > a {
        font-size: 20px;
        font-weight: 400 !important;
        color: #7f8897 !important;
        padding: 7px 0px !important;
    }

    .main-menu .navbar-collapse > .navigation > li > ul > li {
        border: none !important;
    }

    .main-menu .navbar-collapse > .navigation > li > a:hover,
    .main-menu .navbar-collapse > .navigation > li > a:active,
    .main-menu .navbar-collapse > .navigation > li > a:focus {
        /* background:#d43396; */
    }

    .main-menu .navbar-collapse > .navigation > li:hover > a,
    .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
    .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
    .main-menu .navbar-collapse > .navigation > li.current > a,
    .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
        /* background:#8a57de; */
        color: #d43396 !important;
    }

    .main-menu .navbar-collapse > .navigation li.dropdown .dropdown-btn {
        display: block;
    }

    .sec-title br,
    .main-menu .navbar-collapse > .navigation li.dropdown:after,
    .main-menu .navigation > li > ul:before {
        display: none !important;
    }

    .main-header .header-upper .logo-box {
        z-index: 30;
    }

    .main-menu .navbar-header .navbar-toggler {
        display: inline-block;
        z-index: 12;
        width: 54px;
        height: 40px;
        float: none;
        padding: 0px;
        text-align: center;
        border-radius: 3px;
        /* background: #8a57de;
    border: 1px solid #8a57de; */
    }

    .main-menu .navbar-header .navbar-toggler .icon-bar {
        position: relative;
        background: #394963;
        height: 3px;
        width: 40px;
        display: block;
        margin: 0 auto;
        margin: 7px 11px;
    }

    .main-header .nav-outer {
        width: 100%;
        margin-top: -60px;
    }

    .main-header .main-menu .navbar-header .navbar-toggler {
        /* background-color: #8a57de; */
    }

    .main-menu .navbar-header .navbar-toggler .icon-bar {
        background-color: #394963;
    }

    .header-style-five.fixed-header,
    .header-style-five {
        border-bottom: 0;
        background-color: #202020;
    }

    .header-style-four.fixed-header,
    .header-style-four {
        background-color: #202020 !important;
        border-bottom: 0;
    }

    .main-header {
        background-color: #ffffff;
    }

    .main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
        border: none;
        color: #777777;
    }

    .header-style-four .main-menu .navbar-header .navbar-toggler .icon-bar {
        background-color: #ffffff !important;
    }
}

@media only screen and (max-width: 767px) {
    .auto-container {
        padding: 0px 20px;
    }

    .sec-title h2 {
        font-size: 28px;
        line-height: 1.3em;
    }

    .page-title {
        padding: 190px 0 100px;
    }

    .page-title h1 {
        font-size: 40px;
    }

    .about-section-two.style-two .image-box .image-2,
    .call-to-action-three .title-column h3 br,
    .banner-section .content-box h1 br,
    .about-section .anim-icons,
    .banner-section .anim-icons,
    .about-section .anim-iconsp {
        display: none;
    }

    .about-section,
    .features-section,
    .testimonial-section,
    .main-footer,
    .pricing-section,
    .subscribe-section,
    .fun-fact-section,
    .features-section-two,
    .testimonial-section-two,
    .get-the-app-two,
    .subscribe-section-two,
    .features-section-three,
    .features-section-four,
    .features-section-five,
    .pricing-section-two,
    .perfect-integration,
    .saas-feature .outer-box,
    .testimonial-section-three,
    .call-to-action-four,
    .news-section,
    .faq-section,
    .features-section-seven,
    .about-section.style-two,
    .call-to-action-five,
    .features-section-two.style-two,
    .about-section-two.style-two.alternate,
    .main-footer.style-three .widgets-section,
    .get-the-app .content-column .inner-column,
    .user-friendly-section,
    .sidebar-page-container,
    .team-section,
    .about-section-two.style-two.alternate-two {
        padding-top: 70px;
    }

    .testimonial-section,
    .pricing-section,
    .about-section-two,
    .get-the-app-two,
    .features-section-four,
    .features-section-five,
    .clients-section-two,
    .faq-section,
    .call-to-action-four,
    .user-friendly-section,
    .about-section .image-column .inner-column,
    .call-to-action-five,
    .testimonial-section-three,
    .saas-feature .outer-box,
    .about-section-two.style-two.alternate-two {
        padding-bottom: 70px;
    }

    .features-section-seven,
    .pricing-section-two,
    .features-section-three,
    .fun-fact-section {
        padding-bottom: 40px;
    }

    .news-section,
    .team-section,
    .sidebar-page-container,
    .perfect-integration,
    .main-footer {
        padding-bottom: 30px;
    }

    .about-section-two.style-two {
        padding: 70px 0 150px;
    }

    .about-section.style-two,
    .features-section-two {
        padding-bottom: 0;
    }

    .feature-block-four {
        margin-bottom: 70px;
    }

    .banner-section .content-box {
        padding: 170px 0 70px;
    }

    .about-section .image-column .inner-column {
        margin: 0;
    }

    .about-section.style-two .image-column {
        margin-top: 50px;
    }

    .subscribe-section .subscribe-form,
    .get-the-app .image-column .inner-column,
    .app-screenshots-one .title-column .inner {
        padding: 0;
    }

    .main-footer.style-three .widgets-section {
        padding-bottom: 0;
    }

    .about-section .image-column .image-2 {
        display: none;
    }

    .features-section-two .feature-block {
        margin-bottom: 70px;
    }

    .call-to-action-five,
    .feature-block .inner-box {
        text-align: center;
    }

    .feature-block .icon-box:before {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .subscribe-section-two h2 {
        font-size: 30px;
        line-height: 1.2em;
        margin-bottom: 40px;
    }

    .call-to-action-five .title-column {
        margin-bottom: 0;
    }

    .news-block-two h3,
    .call-to-action-three .title-column h3 {
        font-size: 26px;
        line-height: 1.3em;
    }

    .banner-section-seven {
        padding: 170px 0 100px;
    }

    .clients-section-two.style-two .image-column .inner-column {
        margin: 0;
    }

    .comments-area .comment-box.reply-comment {
        margin-left: 20px;
    }

    .link-post .link {
        display: block;
        top: 0;
        margin-top: 10px;
    }

    .app-screenshots-one .carousel-outer {
        margin: 0 auto;
    }

    .app-screenshots-one .owl-stage-outer {
        width: auto;
        overflow: visible;
    }

    .features-section .title-column .inner-column,
    .app-screenshots-one .title-column {
        text-align: center;
    }

    .app-screenshots-one .title-column .inner {
        max-width: none;
    }

    .sec-title .text br,
    .sec-title h2 br {
        display: none;
    }

    .get-the-app,
    .get-the-app .content-column .inner-column {
        padding-bottom: 70px;
    }

    .clients-section-two .content-column .inner-column {
        text-align: center;
    }

    .features-section-eight .inner-container .circles-boxed {
        top: auto;
        bottom: 400px;
    }

    .services-block .inner-box {
        text-align: center;
    }

    .feature-block-five .inner-box {
        padding-right: 0px;
        text-align: center;
    }

    .feature-block-five .inner-box .icon-box {
        position: relative;
        margin-bottom: 25px;
    }

    .feature-block-five {
        margin-bottom: 50px;
    }

    .features-section-eight .right-column .feature-block-five .inner-box {
        padding-left: 0px;
        text-align: center;
    }

    .footer-style-two .footer-bottom .pull-left,
    .footer-style-two .footer-bottom .pull-right {
        width: 100%;
        text-align: center;
    }

    .footer-style-two .footer-bottom .copyright {
        margin-bottom: 15px;
    }

    .banner-section-eight .content-box h2 {
        font-size: 40px;
    }

    .banner-section-eight .content-box .text br {
        display: none;
    }

    .download-section .title-column .inner-column {
        text-align: center;
    }

    .download-section .title-column .inner-column .btn-box .theme-btn {
        margin: 0px 10px 10px;
    }

    .about-app-section .title-column .inner-column {
        text-align: center;
    }

    .features-section-eight .sec-title-two {
        margin-bottom: 70px;
    }

    .call-to-action-six {
        padding: 80px 0px;
    }

    .download-section {
        padding-bottom: 80px;
    }

    .banner-section-eight {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 599px) {
    .banner-section-eight .sponsors-carousel-box .image-box img {
        width: auto;
    }

    .banner-section-seven .content-box h3 {
        letter-spacing: 2px;
    }

    .banner-section-eight .content-box h2 {
        font-size: 30px;
    }

    .banner-section-eight .content-box .text br {
        display: none;
    }

    .sec-title.style-three h2,
    .user-friendly-section .content-column .sec-title h2,
    .banner-section-seven .content-box h2,
    .banner-section-six .content-box h2,
    .banner-section-five .content-box h2,
    .call-to-action-five .title-column h3,
    .banner-section-four .content-box h1,
    .call-to-action-four .title-column h3,
    .banner-section-three .content-box h1,
    .banner-section-two .content-column h1,
    .subscribe-section .title-column h2,
    .banner-section .content-box h1 {
        font-size: 30px;
        line-height: 1.2em;
    }

    .feature-block-two .inner-box {
        padding: 50px 15px 25px;
        min-height: auto;
    }

    .testimonial-block .inner-box {
        padding: 30px 20px 45px;
    }

    .pricing-table-two .inner-box {
        padding: 50px 25px;
    }

    .news-block-two .share-option,
    .testimonial-carousel-three .owl-dots,
    .features-section-four .image-column .image-2,
    .get-the-app .image-column .image-box .image-2 {
        display: none;
    }

    .blog-classic,
    .get-the-app .image-column .image-box {
        padding: 0;
    }

    .about-section-two.style-two.alternate,
    .about-section-two.style-two {
        padding-bottom: 70px;
    }

    .main-footer .app-btn,
    .get-the-app-two .app-btn,
    .get-the-app .app-btn {
        width: 100%;
        margin: 0 0 20px;
        text-align: center;
    }

    .pricing-tabs .tab-buttons .tab-btn {
        min-width: 70px;
    }

    .subscribe-form .form-group input[type=submit],
    .subscribe-form button {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 20px;
        padding: 15px 20px;
    }

    .testimonial-block-two .content-column .text,
    .testimonial-block .text {
        font-size: 18px;
        line-height: 26px;
        text-align: center;
    }

    .list-style-one li {
        font-size: 18px;
    }

    .main-footer .footer-bottom .privacy {
        width: 100%;
    }

    .main-footer .footer-bottom .privacy a {
        margin-left: 0;
        margin-right: 10px;
    }

    .testimonial-block-two .social-links {
        margin-right: -135px;
    }

    .feature-block-four .inner-box {
        padding-left: 0;
    }

    .feature-block-four .icon-box {
        position: relative;
        left: 0;
        display: inline-block;
        margin-bottom: 20px;
    }

    .testimonial-block-three .inner {
        margin: 0px;
        padding: 40px 20px 40px;
        box-shadow: none;
    }

    .testimonial-section-four .owl-dots {
        position: relative;
        left: 0;
        top: 0;
        margin-top: 30px;
    }

    .banner-section-six .image-box .mac-image {
        margin-left: -100px;
    }

    .news-block-two h3 {
        font-size: 22px;
        line-height: 1.2em;
    }

    .link-post .inner,
    .blog-single blockquote,
    .blockquote-post blockquote {
        padding: 40px 20px;
    }

    .blog-single blockquote .icon,
    .blockquote-post .icon {
        display: none;
    }

    .category-list li a span {
        float: right;
    }

    .post-widget .post {
        padding-top: 0;
    }

    .comments-area .comment-box.reply-comment {
        margin-left: 0;
    }

    .comments-area .comment-box.reply-comment .comment,
    .comments-area .comment,
    .author-box .inner-box {
        padding-left: 0;
        text-align: center;
    }

    .comments-area .comment-box .author-thumb,
    .author-box .thumb {
        position: relative;
        display: inline-block;
        margin-bottom: 0;
    }

    .blockquote-post blockquote,
    .link-post .inner {
        min-height: auto;
    }

    .sec-title-two h2 {
        font-size: 30px;
    }

    .call-to-action-six h2 {
        font-size: 28px;
    }

    .features-section-eight .image-column .inner-column .image {
        width: 270px;
        height: 557px;
    }

    .features-section-eight .image-column .inner-column .image .image-box {
        width: 250px;
        height: 475px;
        left: 10px;
        top: 45px;
    }

    .download-section .app-column .inner-column .authors-box:before {
        display: none;
    }

    .download-section .app-column .inner-column .authors-box .author-one {
        left: -90px;
        z-index: 4;
        bottom: 0px;
    }

    .download-section .app-column .inner-column .authors-box .author-two {
        right: 50px !important;
        top: 0px;
        left: auto;
        z-index: 4;
    }

    .main-menu .navbar-collapse > .navigation > li > a, .main-menu .navbar-collapse > .navigation > li > ul > li > a, .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a {
        font-size: 18px !important;
    }

    .main-menu .navbar-collapse > .navigation > li > ul > li > a {
        font-size: 17px !important;
    }
}

@media only screen and (max-width: 479px) {
    .banner-section-eight .carousel-box .carousel-inner-box {
        transform: scale(0.7) translateX(-57px);
        -webkit-transform: scale(0.7) translateX(-57px);
        -ms-transform: scale(0.7) translateX(-57px);
        -o-transform: scale(0.7) translateX(-57px);
        -moz-transform: scale(0.7) translateX(-57px);
        width: 100%;
        height: auto;
    }

    .download-section .app-column .inner-column .app-carousel-outer {
        transform: scale(0.8) translateX(-14px);
        -webkit-transform: scale(0.8) translateX(-14px);
        -ms-transform: scale(0.8) translateX(-14px);
        -o-transform: scale(0.8) translateX(-14px);
        -moz-transform: scale(0.8) translateX(-14px);
    }

    .services-block {
        margin-bottom: 45px;
    }

    .call-to-action-six h2 {
        font-size: 24px;
    }

    .download-section,
    .download-section .title-column .inner-column {
        padding-top: 50px;
    }

    .services-section {
        padding-top: 100px;
    }

    .clients-section-two .image-column .icon {
        margin: 0px 15px 30px;
    }
}

/* Variables */
/* ------------------------------------------ */
/*                 CONTENTS                   */
/* ------------------------------------------ */
/*   01 - General                             */
/*   02 - Colors                              */
/*   03 - Fonts                               */
/* Mixins */
/* ------------------------------------------ */
/*                 CONTENTS                   */
/* ------------------------------------------ */
/*   01 - General                             */
/* Utilities */
/* ------------------------------------------ */
/*                 CONTENTS                   */
/* ------------------------------------------ */
/*   01 - General                             */
.about-app-section .title-column .inner-column {
    padding-top: 80px;
}

.shadow-cs {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#demo-form,
.features-section-four {
    background-color: #d8e9f3;
}

.video-section .image-box {
    margin-top: 0;
    bottom: 0;
}

.video-section {
    padding: 80px 0 80px;
}

.logo {
    width: 180px;
    height: 50px;
}

@media (min-width: 1116px) {
    .logo {
        width: 200px;
    }
}

.main-header .header-upper .logo-box .logo img {
    max-height: 30px;
    max-width: 150px;
}

@media (min-width: 1116px) {
    .main-header .header-upper .logo-box .logo img {
        max-height: 50px;
        max-width: 200px;
    }
}

.main-header.fixed-header .header-upper .logo-box .logo img {
    max-height: 30px;
    max-width: 150px;
}

@media (min-width: 1116px) {
    .main-header.fixed-header .header-upper .logo-box .logo img {
        max-height: 25px;
        max-width: 160px;
    }
}

.btn-style-four,
.btn-style-two,
.btn-style-five {
    color: #ffffff;
    background-color: #65b32e;
}

.btn-style-one {
    color: #006fb7;
}

.header-style-three.fixed-header .main-menu .navigation > li > a {
    color: #006fb7;
}

.header-style-two.fixed-header .outer-box .btn-box a,
.header-style-three.fixed-header .outer-box .btn-box a,
.header-style-one.fixed-header .outer-box .btn-box a {
    border: 1px solid #006fb7;
}

.btn-style-one:hover,
.btn-style-two:hover,
.btn-style-five:hover {
    background-color: #8db7ce;
}

.btn-style-one:hover {
    background-color: #006fb7;
}

.header-style-three.fixed-header .main-menu .navigation > li > a:before {
    background-color: #006fb7;
}

.sec-title .title {
    color: #006fb7;
}

.banner-section .content-box .title {
    color: #006fb7;
}

.main-footer.style-three {
    background: #eff6fa;
}

.main-footer .app-btn {
    background-color: #d8e9f3;
    color: #8db7ce;
}

.main-footer .app-btn:hover {
    background-color: #8db7ce;
    color: #d8e9f3;
}

.list-style-one li:before {
    color: #646a9b;
}

.app-screenshots-one .owl-dots .owl-dot.active span {
    background: #646a9b;
}

.app-screenshots-one {
    margin: 150px 0;
}

.saas-feature .outer-box {
    border-top: 0;
}

.sec-title .title {
    color: #006fb7;
}

.about-section {
    position: relative;
    padding: 30px 0 20px;
}

.pricing-table .text {
    font-size: 24px;
    color: #006fb7;
}

.pricing-table .inner-box:hover .table-footer a {
    background-color: #65b32e;
}

.pricing-table:hover .inner-box {
    border-color: #65b32e;
}

.pricing-table .table-content ul li.check:before {
    color: #006fb7;
}

.banner-section .layer-image {
    background-image: url(../images/icons/1.svg);
}

.banner-section-three.alternative .layer-image {
    background-image: url(../images/icons/bg-2.png);
}

.banner-section-three .layer-image {
    background-image: url(../images/icons/2.svg);
    left: -215px;
}

@media screen and (min-width: 1600px) {
    .banner-section-three .layer-image {
        left: -315px;
    }
}

.shape-5 {
    background-image: url(../images/icons/shape-5.svg);
}

.features-section .title-column .icon-box {
    background-color: #65b32e;
}

.main-footer.style-three:before {
    background-image: url(../images/icons/footer-shape-2.svg);
    background-size: contain;
}

.app-screenshots-one .bg-icon-layer {
    background: url(../images/icons/screenshots-icon-layer.svg) center top no-repeat;
}

.shape-1 {
    background-image: url(../images/icons/shape-1.svg);
}

.shape-2 {
    background-image: url(../images/icons/shape-2.svg);
}

.shape-4 {
    background-image: url(../images/icons/shape-4.svg);
}

.shape-3 {
    background-image: url(../images/icons/shape-3.svg);
}

.banner-section-three.alternative .layer-image {
    background-image: url(../images/icons/bg-2.svg);
    background-position: left top;
}

.pattern-layer {
    background-repeat: no-repeat;
}

.pricing-tabs .tab-buttons .tab-btn.active-btn {
    color: #65b32e;
}

.main-footer .contact-info-list li a:hover,
.main-footer.style-three .list a:hover,
.social-icon-one li a:hover {
    color: #006fb7;
}

.main-footer.style-three .list a:before {
    background-color: #006fb7;
}

.sec-title-two .title {
    color: #006fb7;
}

.video-section .image-box .video-link .icon {
    color: #65b32e;
}

.sidebar .search-box .form-group input:focus {
    border-color: #91c53c;
}

.app-screenshots-one .owl-dots .owl-dot span {
    background: #8db7ce;
}

.app-screenshots-one .owl-dots .owl-dot.active span {
    background: #006fb7;
}

.pricing-tabs .tab-buttons:before {
    background: #91c53c;
    background: -webkit-gradient(linear, left top, right top, from(#709922), to(#91c53c));
    background: -o-linear-gradient(left, #709922 0%, #91c53c 100%);
    background: linear-gradient(to right, #709922 0%, #91c53c 100%);
}

.btn-style-three {
    color: #65b32e;
    border: 2px solid #65b32e;
}

.pricing-table.tagged .table-footer a {
    background-color: #65b32e;
}

.btn-style-three:hover {
    background-color: #75894d;
}

.pricing-table .inner-box {
    border: 2px solid #ecf2e2;
}

.btn-style-seven {
    color: #006fb7;
    border: 2px solid #006fb7;
}

.btn-style-seven:hover {
    background-color: #006fb7;
}

.accordion-box .block .icon {
    color: #006fb7;
}

.pricing-table.tagged .inner-box {
    border: 3px solid #65b32e;
}

.subscribe-form .form-group input:focus,
.subscribe-form .form-group select:focus,
.subscribe-form .form-group textarea:focus {
    border: 1px solid #65b32e;
}

.subscribe-form .form-group input,
.subscribe-form .form-group select,
.subscribe-form .form-group textarea {
    padding: 25px 26px 25px 18px;
}

@media screen and (min-width: 1400px) {
    .subscribe-form .form-group input,
    .subscribe-form .form-group select,
    .subscribe-form .form-group textarea {
        padding: 25px 40px;
    }
}

.feature-block .link-box a:hover,
.feature-block h4 a:hover {
    color: #65b32e;
}

.features-section {
    padding: 20px 0 80px;
}

.features-section .feature-block {
    padding: 0px 20px;
}

@media screen and (min-width: 768px) {
    .features-section .feature-block {
        padding: 0px 50px;
    }
}

@media screen and (min-width: 1400px) {
    .features-section .feature-block {
        padding: 0px 60px;
    }
}

.feature-block .icon-box .icon {
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .feature-block .icon-box .icon {
        margin: 0;
    }
}

.theme_color {
    color: #006fb7;
}

.clients-section-two .image-column .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 100px;
    height: 100px;
}

.clients-section-two .image-column .icon a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clients-section-two .image-column .icon img {
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 768px) {
    .clients-section-two .image-column .icon img {
        width: 55px;
        height: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .clients-section-two .image-column .icon {
        height: 60px !important;
        width: 60px !important;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

.custom-color {
    color: #65b32e;
}

.app-screenshots-one .owl-dots {
    bottom: 0;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-items: center;
    padding: 20px 0;
    height: 90px;
    margin-left: 3%;
}

@media screen and (max-width: 768px) {
    .header-link {
        display: none;
    }
}

.header-link a {
    color: #006fb7;
    font-weight: 600;
    transition: all 200ms ease;
}

.header-link a:hover, .header-link a:focus, .header-link a:active {
    color: #65b32e;
}

.faq-section .auto-container {
    max-width: 1270px;
}

.banner-section-three.alternative {
    padding: 100px 0 0;
}

@media screen and (min-width: 1200px) {
    .banner-section-three.alternative {
        padding: 200px 0 0;
    }
}

.banner-section-three .layer-outer {
    top: -7px;
    display: block;
    width: 45%;
}

@media only screen and (min-width: 768px) {
    .banner-section-three .layer-outer {
        width: 38%;
    }
}

.subscribe-form .form-group textarea {
    height: 180px;
}

#section-map {
    padding: 0 0 60px;
}

#section-map #map {
    width: 100%;
    height: 45vh;
}

.section-contact-form {
    padding: 0;
}

@media screen and (max-width: 768px) {
    .section-contact-form {
        margin: 40px 0;
    }
}

.section-contact-data a {
    color: #75717b;
    transition: all 200ms ease;
}

.section-contact-data a:hover, .section-contact-data a:focus, .section-contact-data a:active {
    color: #65b32e;
}

.call-to-action-six {
    position: relative;
    background-color: #006fb7;
    background-image: none;
}

.call-to-action-six .title {
    color: white;
    text-transform: uppercase;
}

.call-to-action-six p {
    color: white;
    margin-top: 30px;
}

.saas-feature.img-content .outer-box {
    padding: 50px 0;
}

@media screen and (min-width: 1024px) {
    .saas-feature.img-content.reverse .row {
        flex-direction: row-reverse;
    }
}

@media only screen and (max-width: 1023px) {
    .main-menu .navbar-collapse > .navigation > li:hover > a,
    .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a,
    .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a,
    .main-menu .navbar-collapse > .navigation > li.current > a,
    .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
        color: #006fb7 !important;
    }
}

/*
@media only screen and (max-width: 1115px) {
  .main-menu .navbar-header .navbar-toggler {
    display: inline-block;
    z-index: 12;
    width: 54px;
    height: 40px;
    float: none;
    padding: 0px;
    text-align: center;
    border-radius: 3px;
  }
}

@media (min-width: 1116px) {
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1116px) {
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-basis: auto;
  }
}

@media (max-width: 1115px) {
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
}*/
html,
body {
    overflow-x: hidden;
}

.pricing-tabs .tab-buttons .tab-btn:before {
    right: -29px;
}

.pricing-tabs .tab-buttons .tab-btn.active-btn:before {
    right: 18px;
}

.pricing-tabs .tab-buttons .tab-btn:last-child {
    padding-left: 45px;
}

.link-box a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #006fb7;
    transition: all 200ms ease;
}

.link-box a:hover, .link-box a:focus, .link-box a:active {
    color: #65b32e;
}

.link-box a i {
    margin-left: 10px;
}

.saas-feature .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 270px;
    margin: 10px 0 30px;
}

@media only screen and (min-width: 768px) {
    .saas-feature .image-column .image img {
        width: 75%;
        margin: 0 auto;
        max-height: 480px;
    }
}

.features-section-eight .image-column .inner-column .image .image-box {
    position: absolute;
    left: 19px;
    top: 16px;
    width: 272px;
    height: 608px;
    overflow: hidden;
    border-radius: 30px;
}

.features-section-eight .image-column .inner-column .image {
    box-shadow: none;
}

.features-section-eight .image-column .inner-column .image:after {
    content: " ";
    background-image: url(../images/resource/mokeup-3_up.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    width: 159px;
    height: 25px;
    top: 12px;
    left: 81px;
}

.features-section-eight .image-column .inner-column .image .image-box img {
    border-radius: 30px;
}

.features-section-eight .image-column .inner-column .image.appeared .image-box img {
    -webkit-animation: fadeIn 0.5s linear 1;
    animation: fadeIn 0.5s linear 1;
}

.screenshot-carousel.owl-carousel .owl-item img {
    width: 101%;
}

.screenshot-carousel img {
    max-width: 101%;
}

@media screen and (max-width: 599px) {
    .features-section-eight .image-column .inner-column .image {
        width: 312px;
        height: 641px;
    }
}

@media screen and (max-width: 768px) {
    .pricing-tabs .tab-buttons:before {
        width: 77px;
    }
}

@media screen and (max-width: 768px) {
    .pricing-tabs .tab-buttons .tab-btn:before {
        right: -14px;
    }
}

.section-content-mob br {
    display: block !important;
}

.shape-box {
    position: relative;
    display: block;
}

.shape-box:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    height: 80%;
    width: 100%;
    background-image: url(../images/icons/shape-6.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@media only screen and (min-width: 1200px) {
    .banner-section-three .content-box h1 {
        font-size: 45px;
        line-height: 54px;
    }
}

.banner-section-three .image-box {
    max-width: 600px;
    padding-top: 110px;
    max-height: 490px;
    /* Landscape */
    /* Landscape */
}

@media only screen and (min-width: 768px) {
    .banner-section-three .image-box {
        max-width: unset;
        width: 100%;
        text-align: right;
        position: relative;
        max-height: 455px;
    }
}

@media only screen and (min-width: 1024px) {
    .banner-section-three .image-box {
        max-height: 615px;
    }
}

@media only screen and (min-width: 1200px) {
    .banner-section-three .image-box {
        position: absolute;
        max-width: 480px;
        right: 50px;
        top: 120px;
        padding-top: 0;
        max-height: unset;
        text-align: center;
    }
}

@media only screen and (min-width: 1400px) {
    .banner-section-three .image-box {
        max-width: 600px;
        top: 120px;
    }
}

@media only screen and (min-width: 1600px) {
    .banner-section-three .image-box {
        top: 130px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
    .banner-section-three .image-box {
        max-width: 480px;
        top: 160px;
        right: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
    .banner-section-three .image-box {
        max-width: 780px;
        top: 30px;
        right: 70px;
        max-height: 295px;
    }
}

@media only screen and (min-width: 768px) {
    .banner-section-three .image-box .image-1 {
        max-width: 70%;
    }
}

@media only screen and (min-width: 1200px) {
    .banner-section-three .image-box .image-1 {
        max-width: unset;
    }
}

.banner-section-three .image-box .image-2 {
    display: block;
    right: 80px;
    top: -240px;
    /* Landscape */
}

@media only screen and (min-width: 400px) and (max-width: 1023px) {
    .banner-section-three .image-box .image-2 {
        left: -73px;
        top: 90px;
        position: absolute;
    }
}

@media only screen and (min-width: 1024px) {
    .banner-section-three .image-box .image-2 {
        right: 300px;
    }
}

@media only screen and (min-width: 1200px) {
    .banner-section-three .image-box .image-2 {
        position: relative;
        right: 200px;
        top: -260px;
    }
}

@media only screen and (min-width: 1341px) {
    .banner-section-three .image-box .image-2 {
        right: 250px;
        top: 0;
    }
}

.banner-section-three .large-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
}

@media only screen and (min-width: 1200px) {
    .banner-section-three .large-container {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .about-app-section {
        padding-top: 0;
    }
}

.banner-section-three .content-box {
    position: relative;
    max-width: 570px;
    width: 100%;
    padding: 0 0 130px;
    z-index: 10;
    /* Landscape */
}

@media only screen and (min-width: 768px) {
    .banner-section-three .content-box {
        padding: 80px 0 130px;
    }
}

@media only screen and (min-width: 1200px) {
    .banner-section-three .content-box {
        padding: 270px 50px 90px;
    }
}

@media only screen and (min-width: 1400px) {
    .banner-section-three .content-box {
        padding: 270px 0 90px;
    }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
    .banner-section-three .content-box {
        max-width: 670px;
        padding: 270px 50px 90px;
    }
}

.section-feature .outer-box {
    padding: 90px 0 50px;
}

.section-feature.app-screenshots-one {
    padding: 0px 0px 70px;
    margin: 80px 0 0;
}

.section-feature .content-column .inner-column {
    padding: 0;
}

.features-section-eight {
    padding: 105px 0px 50px;
}

.clients-section-two.style-three {
    padding-top: 70px;
}

@media only screen and (max-width: 1139px) {
    .banner-section .layer-outer,
    .banner-section .image-box {
        display: block;
    }
}

@media only screen and (max-width: 1139px) {
    .banner-section .layer-image {
        background-position: left -300px;
    }
}

@media only screen and (max-width: 1024px) {
    .banner-section .content-box {
        padding: 250px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section .content-box h1 {
        max-width: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section .layer-outer {
        height: 70%;
        width: 40%;
    }
}

@media only screen and (max-width: 1024px) {
    .banner-section .image-box .image img {
        max-width: 335px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section .image-box .image img {
        max-width: 155px;
    }
}

.header-style-three .main-menu .navigation > li > a {
    color: #ffffff;
}

@media only screen and (min-width: 1024px) {
    .header-style-three .main-menu .navigation > li > a {
        color: #ffffff;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section .image-box {
        top: 100px;
    }
}

.app-screenshots-one .owl-dots .owl-dot {
    background-color: transparent;
}

.app-screenshots-one .carousel-outer .mockup-layer:before {
    width: 24px;
}

.app-screenshots-one .carousel-outer .mockup-layer:after {
    width: 24px;
}

.app-screenshots-one .carousel-outer .shadow-layer {
    width: 318px;
    height: 636px;
    left: -9px;
    top: -22px;
}

.about-section .image-column .image-box {
    z-index: 1;
}

.seo-section {
    padding-top: 30px;
}

.list-check {
    padding-left: 60px;
}

.list-check li {
    position: relative;
}

.list-check li:before {
    content: " ";
    position: absolute;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve' fill='%2365b32e'%3E%3Cg%3E%3Cg%3E%3Cpath d='M504.502,75.496c-9.997-9.998-26.205-9.998-36.204,0L161.594,382.203L43.702,264.311c-9.997-9.998-26.205-9.997-36.204,0 c-9.998,9.997-9.998,26.205,0,36.203l135.994,135.992c9.994,9.997,26.214,9.99,36.204,0L504.502,111.7 C514.5,101.703,514.499,85.494,504.502,75.496z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    left: -50px;
}

.btn-style-one:hover,
.btn-style-two:hover,
.btn-style-five:hover {
    background-color: #4c4754;
}

a:hover {
    color: #006fb7;
}

@media only screen and (max-width: 768px) {
    .addons-section {
        padding: 20px 0 0;
    }
}

@media only screen and (max-width: 768px) {
    .addons-section.saas-feature.img-content .outer-box {
        padding: 0;
    }
}

@media only screen and (max-width: 1100px) {
    .addons-section.saas-feature .content-column {
        margin-bottom: 0px;
    }
}

.video-section .image-box .video-link .icon {
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
}

.figure-video {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
}

.figure-video .video-link {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 8%;
    bottom: 0;
    width: 85%;
    height: 76%;
    z-index: 1;
}

.figure-video .video-link .icon {
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 50%;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-animation-name: zoom-fade;
    animation-name: zoom-fade;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    transition: all 500ms ease;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
}

.figure-video .video-link .icon:after {
    content: "";
    position: absolute;
    left: -15px;
    top: -15px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 500ms ease;
}

.figure-video img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease;
}

.owl-carousel-mob.owl-carousel .owl-dots .owl-dot {
    background-color: transparent;
    margin-right: 15px;
}

.owl-carousel-mob.owl-carousel .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background: #8db7ce;
    transform: scale(0.6);
    border-radius: 50%;
    transition: all 500ms ease;
}

.owl-carousel-mob.owl-carousel .owl-dots .owl-dot.active span {
    background: #006fb7;
    transform: scale(1);
}

.owl-carousel-mob .icon-box {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
    line-height: 42px !important;
    margin-bottom: 15px !important;
}

.owl-carousel-mob .icon-box.two {
    background-color: #d5419f;
}

.owl-carousel-mob .icon-box.three {
    background-color: #77bb2d;
}

.owl-carousel-mob .icon-box.four {
    background-color: #dcb918;
}

.owl-carousel-mob .icon-box.five {
    background-color: #4e936e;
}

.owl-carousel-mob .icon-box.six {
    background-color: #c54949;
}

.owl-carousel-mob .feature-block-five {
    margin-bottom: 20px;
}

.owl-carousel-mob .image {
    width: 262px !important;
    height: 521px !important;
}

.owl-carousel-mob .image .image-box {
    width: 222px !important;
    height: 488px !important;
}

.owl-carousel-mob .image:after {
    width: 99px !important;
}

.feature-block .icon-box .icon {
    color: #006fb7 !important;
    width: 65px;
    height: 65px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.feature-block:nth-child(2) .icon-box .icon,
.feature-block:nth-child(6) .icon-box .icon {
    color: #006fb7;
}

.icon-stampcard {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='62px' height='60px' viewBox='0 0 62 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_stempelkarte%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon_stempelkarte' stroke='%230270B6'%3E%3Cg%3E%3Crect id='Rectangle' x='0.5' y='0.5' width='61' height='59'%3E%3C/rect%3E%3Ccircle id='Oval' fill='%230270B6' cx='18.5' cy='17.5' r='8.5'%3E%3C/circle%3E%3Cpath d='M18.5,52 C23.1944204,52 27,48.1944204 27,43.5 C27,38.8055796 23.1944204,35 18.5,35 C13.8055796,35 10,38.8055796 10,43.5 C10,48.1944204 13.8055796,52 18.5,52 Z' id='Oval-Copy-2' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,26 C49.1944204,26 53,22.1944204 53,17.5 C53,12.8055796 49.1944204,9 44.5,9 C39.8055796,9 36,12.8055796 36,17.5 C36,22.1944204 39.8055796,26 44.5,26 Z' id='Oval-Copy' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,52 C49.1944204,52 53,48.1944204 53,43.5 C53,38.8055796 49.1944204,35 44.5,35 C39.8055796,35 36,38.8055796 36,43.5 C36,48.1944204 39.8055796,52 44.5,52 Z' id='Oval-Copy-3' stroke-dasharray='3,4'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-customerdata {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='62px' height='60px' viewBox='0 0 62 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_stempelkarte%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon_stempelkarte' stroke='%230270B6'%3E%3Cg%3E%3Crect id='Rectangle' x='0.5' y='0.5' width='61' height='59'%3E%3C/rect%3E%3Ccircle id='Oval' fill='%230270B6' cx='18.5' cy='17.5' r='8.5'%3E%3C/circle%3E%3Cpath d='M18.5,52 C23.1944204,52 27,48.1944204 27,43.5 C27,38.8055796 23.1944204,35 18.5,35 C13.8055796,35 10,38.8055796 10,43.5 C10,48.1944204 13.8055796,52 18.5,52 Z' id='Oval-Copy-2' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,26 C49.1944204,26 53,22.1944204 53,17.5 C53,12.8055796 49.1944204,9 44.5,9 C39.8055796,9 36,12.8055796 36,17.5 C36,22.1944204 39.8055796,26 44.5,26 Z' id='Oval-Copy' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,52 C49.1944204,52 53,48.1944204 53,43.5 C53,38.8055796 49.1944204,35 44.5,35 C39.8055796,35 36,38.8055796 36,43.5 C36,48.1944204 39.8055796,52 44.5,52 Z' id='Oval-Copy-3' stroke-dasharray='3,4'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-voucher-social-media {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='56px' height='60px' viewBox='0 0 56 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3EIcon_sm%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='CityStamp_Desktop' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='00_Home' transform='translate(-792.000000, -1747.000000)' fill='%230270B6'%3E%3Cg id='Icon_sm' transform='translate(792.000000, 1747.000000)'%3E%3Cg%3E%3Cg id='social-media' fill-rule='nonzero'%3E%3Cpath d='M49.3744564,0 L46.817278,0 C45.6932116,0 45.6932116,1.7578125 46.817278,1.7578125 L49.3744564,1.7578125 C52.0152863,1.7578125 54.1638506,3.91710937 54.1638506,6.57117187 L54.1638506,26.9116406 C54.1638506,29.5658203 52.0154025,31.7251172 49.3744564,31.7251172 L46.4741909,31.7251172 C46.2828382,31.7251172 46.0968299,31.7886328 45.9447469,31.9059375 L40.622888,36.0119531 L40.622888,32.6040234 C40.622888,32.1186328 40.2328631,31.7251172 39.7515187,31.7251172 L29.1463734,31.7251172 C28.2779087,31.7251172 27.4432531,31.4939062 26.7071203,31.0543359 L26.7071203,21.1880859 C26.7071203,19.3400391 25.7739419,17.7072656 24.3568631,16.7412891 L24.3568631,6.57117188 C24.3568631,3.91710938 26.5054274,1.7578125 29.1463734,1.7578125 L48.3276515,1.7578125 C49.4516017,1.7578125 49.4516017,0 48.3276515,0 L29.1463734,0 C25.5444813,0 22.6141245,2.94785156 22.6141245,6.57117188 L22.6141245,15.9687891 C22.2151535,15.8726953 21.7994523,15.8203125 21.371668,15.8203125 L5.42026556,15.8203125 C2.47840664,15.8203125 0.0849294606,18.2282812 0.0849294606,21.1880859 L0.0849294606,23.0859375 C0.0849294606,24.2196094 1.82766805,24.2196094 1.82766805,23.0859375 L1.82766805,21.1880859 C1.82766805,19.1975391 3.43923651,17.578125 5.42026556,17.578125 L21.3717842,17.578125 C23.3528133,17.578125 24.9644979,19.1975391 24.9644979,21.1880859 L24.9644979,31.4042578 C24.9540415,31.4818359 24.9545062,31.56 24.9644979,31.6369922 L24.9644979,37.2282422 C24.9644979,37.33875 24.9578755,37.4487891 24.948,37.5582422 L23.1510041,37.5582422 C21.1709046,37.5582422 19.5201826,38.9997656 19.1779087,40.8943359 C19.0986722,40.9244531 19.0225726,40.9665234 18.9520498,41.0213672 L15.0547054,44.0566406 L15.0547054,41.7171094 C15.0547054,41.2317187 14.6646805,40.8382031 14.1833361,40.8382031 L5.42026556,40.8382031 C3.43923651,40.8382031 1.82766805,39.2187891 1.82766805,37.2282422 L1.82766805,22.5 C1.82766805,21.3663281 0.0849294606,21.3663281 0.0849294606,22.5 L0.0849294606,37.2283594 C0.0849294606,40.1881641 2.47840664,42.5961328 5.42026556,42.5961328 L13.312083,42.5961328 L13.312083,45.8457422 C13.312083,46.5507422 14.1607967,46.9736719 14.7160332,46.5414844 L19.1118008,43.1180859 L19.1118008,53.0057812 C19.1118008,55.2469922 20.9239004,57.0701953 23.1511203,57.0701953 L28.4984232,57.0701953 L28.4984232,59.1210937 C28.4984232,59.8258594 29.3471369,60.2492578 29.9022573,59.8168359 L33.4290954,57.0701953 L34.4710207,57.0701953 C36.6982407,57.0701953 38.5103402,55.246875 38.5103402,53.0057812 L38.5103402,51.4453125 C38.5103402,50.3116406 36.7676017,50.3116406 36.7676017,51.4453125 L36.7676017,53.0057812 C36.7676017,54.2777344 35.7374108,55.3123828 34.4710207,55.3123828 L33.1317842,55.3123828 C32.9390373,55.3123828 32.751751,55.3768359 32.5993195,55.4955469 L30.2410456,57.3319922 L30.2410456,56.1911719 C30.2410456,55.7057812 29.8510207,55.3122656 29.3696763,55.3122656 L23.1510041,55.3122656 C21.8847303,55.3122656 20.8544232,54.2775 20.8544232,53.0056641 L20.8544232,41.6227734 C20.8544232,40.3508203 21.8846141,39.3161719 23.1510041,39.3161719 L34.4710207,39.3161719 C35.7372946,39.3161719 36.7676017,40.3509375 36.7676017,41.6227734 L36.7676017,52.96875 C36.7676017,54.1024219 38.5103402,54.1024219 38.5103402,52.96875 L38.5103402,41.6228906 C38.5103402,39.3816797 36.6982407,37.5584766 34.4710207,37.5584766 L26.6972448,37.5584766 C26.7038672,37.4486719 26.7072365,33.0094922 26.7072365,33.0094922 C27.4755519,33.3210938 28.2992863,33.4830469 29.1464896,33.4830469 L38.8802656,33.4830469 L38.8802656,37.7908594 C38.8802656,38.4941016 39.7253776,38.9175 40.2810788,38.4889453 L46.7694108,33.4830469 L49.3745726,33.4830469 C52.9763485,33.4830469 55.9067054,30.5351953 55.9067054,26.9117578 L55.9067054,6.57117188 C55.9067054,2.94785156 52.9762324,0 49.3744564,0 Z' id='Path'%3E%3C/path%3E%3Cpath d='M41.4376763,6.49359375 C40.3312697,6.20871094 39.203834,7.09042969 39.203834,8.24355469 C39.203834,9.5034375 38.7486307,10.7176172 37.9226888,11.6617969 L35.5218921,14.4019922 C35.3664398,14.1614062 35.0978257,14.0021484 34.791917,14.0021484 L30.105112,14.0021484 C29.6237676,14.0021484 29.2337427,14.3956641 29.2337427,14.8810547 L29.2337427,25.5175781 C29.2337427,26.0029687 29.6237676,26.3964844 30.105112,26.3964844 L34.791917,26.3964844 C35.1440664,26.3964844 35.4466058,26.1854297 35.5840498,25.8823828 C36.5329129,26.4671484 37.6324647,26.7833203 38.7511867,26.7833203 L47.0340747,26.7833203 C48.2997676,26.7833203 49.3439004,25.6755469 49.2845311,24.4021875 C49.2581577,23.8382812 49.286971,16.2664453 49.286971,16.0982812 C49.286971,14.8453125 48.2762988,13.8257813 47.0366307,13.8257813 L42.7293942,13.8127734 L42.9077344,13.3867969 C43.7227552,11.4399609 43.5885643,9.18246094 42.549195,7.34765625 C42.3066058,6.91898438 41.9117012,6.61582031 41.4376763,6.49359375 C40.9634191,6.37148438 41.9117012,6.61582031 41.4376763,6.49359375 C40.3313859,6.20871094 41.9117012,6.61582031 41.4376763,6.49359375 L41.4376763,6.49359375 Z M33.9205477,24.6386719 L30.9764813,24.6386719 L30.9764813,15.7599609 L33.9205477,15.7599609 L33.9205477,24.6386719 Z M47.0340747,15.5834766 C47.3154689,15.5834766 47.5443485,15.8143359 47.5443485,16.0981641 C47.5443485,16.2653906 47.5426058,16.7192578 47.5402822,17.3346094 C47.5273859,20.7321094 47.5187884,23.9498437 47.5436515,24.4846875 C47.5527137,24.6776953 47.4596515,24.8063672 47.4034191,24.8658984 C47.3060581,24.9687891 47.174888,25.0253906 47.0340747,25.0253906 L38.7511867,25.0253906 C37.7638672,25.0253906 36.7975768,24.6802734 36.0300747,24.0536719 L35.6632863,23.7541406 L35.6632863,16.8950391 L39.2290456,12.8252344 C40.3366141,11.5591406 40.9465726,9.93199219 40.9465726,8.2434375 C40.9465726,8.19375 41.0138423,8.18085937 41.0361494,8.21953125 C41.807834,9.58160156 41.9072863,11.2575 41.3023237,12.7027734 L40.614639,14.345625 C40.5011286,14.6166797 40.5297095,14.926875 40.69039,15.1722656 C40.8513029,15.4176562 41.1231701,15.5655469 41.4146722,15.5664844 L47.0340747,15.5834766 Z' id='Shape'%3E%3C/path%3E%3Cpath d='M28.8004979,43.8510938 C28.0968963,43.2667969 27.1608133,43.0362891 26.2218257,43.2665625 C25.0185228,43.5612891 23.8042988,44.6958984 23.8042988,46.5660938 C23.8042988,47.7301172 24.2254606,48.7405078 25.091834,49.6550391 C25.7995021,50.4021094 26.8207469,51.1125 28.4029212,51.9585938 C28.5306058,52.0269141 28.6708382,52.0610156 28.8110705,52.0610156 C28.9513029,52.0610156 29.0915353,52.0269141 29.2192199,51.9585938 C31.9794855,50.4826172 33.8177261,49.0007813 33.8177261,46.5660938 C33.8177261,44.6857031 32.5603983,43.5626953 31.3142241,43.2839063 C30.3780249,43.074375 29.4704066,43.2967969 28.8004979,43.8510938 L28.8004979,43.8510938 Z M32.0748714,46.5660938 C32.0748714,47.8792969 31.2112863,48.8504297 28.8109544,50.1832031 C26.4106224,48.8503125 25.5469212,47.8791797 25.5469212,46.5660938 C25.5469212,45.5889844 26.1078506,45.1033594 26.6328797,44.9746875 C26.7296598,44.9510156 26.8332946,44.9376563 26.939834,44.9376563 C27.3347386,44.9376563 27.7689129,45.1216406 28.0365975,45.6451172 C28.1891452,45.9430078 28.4974938,46.1276953 28.8282656,46.1207813 C29.1604315,46.1141016 29.4600664,45.9174609 29.6005311,45.6137109 C29.8825062,45.0041016 30.4755021,44.896875 30.9365145,45.0001172 C31.4869876,45.1230469 32.0748714,45.5991797 32.0748714,46.5660938 L32.0748714,46.5660938 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3Cpath d='M8.28149378,21.4279687 C9.46749141,21.4279687 10.3974074,21.8051915 11.0712697,22.5596484 C11.745132,23.3141053 12.0820581,24.3574152 12.0820581,25.6896094 C12.0820581,27.0218035 11.745132,28.0719102 11.0712697,28.8399609 C10.3974074,29.6080117 9.46749141,29.9920312 8.28149378,29.9920312 C7.10897339,29.9920312 6.1857959,29.6080117 5.51193361,28.8399609 C4.83807132,28.0719102 4.50114523,27.0218035 4.50114523,25.6896094 C4.50114523,24.371009 4.83807132,23.3310976 5.51193361,22.5698438 C6.1857959,21.8085899 7.10897339,21.4279687 8.28149378,21.4279687 Z M8.28149378,22.9776563 C7.63458598,22.9776563 7.1325661,23.2155445 6.77541909,23.6913281 C6.41827207,24.1671118 6.23970124,24.8331988 6.23970124,25.6896094 C6.23970124,26.5596137 6.41827207,27.235896 6.77541909,27.7184766 C7.1325661,28.2010571 7.63458598,28.4423438 8.28149378,28.4423438 C8.94187882,28.4423438 9.45400648,28.2010571 9.81789212,27.7184766 C10.1817778,27.235896 10.3637178,26.5596137 10.3637178,25.6896094 C10.3637178,24.8331988 10.1817778,24.1671118 9.81789212,23.6913281 C9.45400648,23.2155445 8.94187882,22.9776563 8.28149378,22.9776563 Z M17.742473,21.46875 L19.743834,21.46875 L9.43379253,35.7421875 L7.41221577,35.7421875 L17.742473,21.46875 Z M19.0160664,27.2392969 C20.202064,27.2392969 21.13198,27.6165197 21.8058423,28.3709766 C22.4797046,29.1254335 22.8166307,30.1687433 22.8166307,31.5009375 C22.8166307,32.8331317 22.4797046,33.8832383 21.8058423,34.6512891 C21.13198,35.4193398 20.202064,35.8033594 19.0160664,35.8033594 C17.843546,35.8033594 16.9203685,35.4193398 16.2465062,34.6512891 C15.5726439,33.8832383 15.2357178,32.8331317 15.2357178,31.5009375 C15.2357178,30.1823372 15.5726439,29.1424257 16.2465062,28.3811719 C16.9203685,27.6199181 17.843546,27.2392969 19.0160664,27.2392969 Z M19.0160664,28.7889844 C18.3691586,28.7889844 17.8671387,29.0268726 17.5099917,29.5026562 C17.1528447,29.9784399 16.9742739,30.644527 16.9742739,31.5009375 C16.9742739,32.3709418 17.1528447,33.0472241 17.5099917,33.5298047 C17.8671387,34.0123852 18.3691586,34.2536719 19.0160664,34.2536719 C19.6764514,34.2536719 20.1885791,34.0123852 20.5524647,33.5298047 C20.9163504,33.0472241 21.0982905,32.3709418 21.0982905,31.5009375 C21.0982905,30.644527 20.9163504,29.9784399 20.5524647,29.5026562 C20.1885791,29.0268726 19.6764514,28.7889844 19.0160664,28.7889844 Z' id='%25' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-mobile-offer {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='42px' height='60px' viewBox='0 0 42 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_iphone%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='icon_iphone' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg fill='%230270B6' fill-rule='nonzero'%3E%3Cpath d='M35,0 C33.68785,0 7.89331667,0 7,0 C3.1402,0 0,3.15421875 0,7.03125 L0,52.96875 C0,56.8457813 3.1402,60 7,60 L35,60 C38.8598,60 42,56.8457813 42,52.96875 L42,7.03125 C42,3.15421875 38.8598,0 35,0 Z M39,54.5 C39,55.8785 37.8464571,57 36.4285714,57 L5.57142857,57 C4.15354286,57 3,55.8785 3,54.5 L3,5.5 C3,4.1215 4.15354286,3 5.57142857,3 L10.1523,3 L10.6879286,4.547375 C11.0399571,5.56475 12.0209571,6.25 13.125,6.25 L28.875,6.25 C29.9790429,6.25 30.9600429,5.56475 31.3120714,4.547375 L31.8477,3 L36.4285714,3 C37.8464571,3 39,4.1215 39,5.5 L39,54.5 Z' id='Shape'%3E%3C/path%3E%3Cpath d='M13.423,20 C15.1243418,20 16.4583285,20.5364946 17.425,21.6095 C18.3916715,22.6825054 18.875,24.1663239 18.875,26.061 C18.875,27.9556761 18.3916715,29.4491612 17.425,30.5415 C16.4583285,31.6338388 15.1243418,32.18 13.423,32.18 C11.7409916,32.18 10.4166715,31.6338388 9.45,30.5415 C8.4833285,29.4491612 8,27.9556761 8,26.061 C8,24.1856573 8.4833285,22.7066721 9.45,21.624 C10.4166715,20.5413279 11.7409916,20 13.423,20 Z M13.423,22.204 C12.4949954,22.204 11.7748359,22.5423299 11.2625,23.219 C10.7501641,23.8956701 10.494,24.8429939 10.494,26.061 C10.494,27.2983395 10.7501641,28.2601632 11.2625,28.9465 C11.7748359,29.6328368 12.4949954,29.976 13.423,29.976 C14.3703381,29.976 15.1049974,29.6328368 15.627,28.9465 C16.1490026,28.2601632 16.41,27.2983395 16.41,26.061 C16.41,24.8429939 16.1490026,23.8956701 15.627,23.219 C15.1049974,22.5423299 14.3703381,22.204 13.423,22.204 Z M28.822,28.265 C30.5233418,28.265 31.8573285,28.8014946 32.824,29.8745 C33.7906715,30.9475054 34.274,32.4313239 34.274,34.326 C34.274,36.2206761 33.7906715,37.7141612 32.824,38.8065 C31.8573285,39.8988388 30.5233418,40.445 28.822,40.445 C27.1399916,40.445 25.8156715,39.8988388 24.849,38.8065 C23.8823285,37.7141612 23.399,36.2206761 23.399,34.326 C23.399,32.4506573 23.8823285,30.9716721 24.849,29.889 C25.8156715,28.8063279 27.1399916,28.265 28.822,28.265 Z M29.866,20.058 L15.076,40.358 L12.176,40.358 L26.995,20.058 L29.866,20.058 Z M28.822,30.469 C27.8939954,30.469 27.1738359,30.8073299 26.6615,31.484 C26.1491641,32.16067 25.893,33.1079939 25.893,34.326 C25.893,35.5633395 26.1491641,36.5251632 26.6615,37.2115 C27.1738359,37.8978368 27.8939954,38.241 28.822,38.241 C29.7693381,38.241 30.5039974,37.8978368 31.026,37.2115 C31.5480026,36.5251632 31.809,35.5633395 31.809,34.326 C31.809,33.1079939 31.5480026,32.16067 31.026,31.484 C30.5039974,30.8073299 29.7693381,30.469 28.822,30.469 Z' id='%25'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-qr-code {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='65px' height='65px' viewBox='0 0 65 65' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_qr%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='icon_qr' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg fill='%230270B6'%3E%3Cpolygon id='Fill-1' points='0.308 15.77 2.885 15.77 2.885 0.308 0.308 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-2' points='0.308 18.346 2.885 18.346 2.885 15.769 0.308 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-3' points='0.308 23.5 2.885 23.5 2.885 20.923 0.308 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-4' points='0.308 28.654 2.885 28.654 2.885 26.077 0.308 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-5' points='0.308 31.231 2.885 31.231 2.885 28.654 0.308 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-6' points='0.308 38.962 2.885 38.962 2.885 36.385 0.308 36.385'%3E%3C/polygon%3E%3Cpolygon id='Fill-7' points='0.308 44.116 2.885 44.116 2.885 41.539 0.308 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-8' points='0.308 51.847 2.885 51.847 2.885 46.693 0.308 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-9' points='0.308 59.578 2.885 59.578 2.885 51.847 0.308 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-10' points='0.308 64.731 2.885 64.731 2.885 59.577 0.308 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-11' points='2.885 2.885 5.462 2.885 5.462 0.308 2.885 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-12' points='2.885 18.346 5.462 18.346 5.462 15.769 2.885 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-13' points='2.885 26.077 5.462 26.077 5.462 23.5 2.885 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-14' points='2.885 38.962 5.462 38.962 5.462 33.808 2.885 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-15' points='2.885 44.116 5.462 44.116 5.462 41.539 2.885 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-16' points='2.885 49.27 5.462 49.27 5.462 46.693 2.885 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-17' points='2.885 64.731 5.462 64.731 5.462 62.154 2.885 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-18' points='5.462 2.885 8.039 2.885 8.039 0.308 5.462 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-19' points='5.462 13.193 8.039 13.193 8.039 5.462 5.462 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-20' points='5.462 18.346 8.039 18.346 8.039 15.769 5.462 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-21' points='5.462 23.5 8.039 23.5 8.039 20.923 5.462 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-22' points='5.462 31.231 8.039 31.231 8.039 28.654 5.462 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-23' points='5.462 38.962 8.039 38.962 8.039 33.808 5.462 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-24' points='5.462 49.27 8.039 49.27 8.039 46.693 5.462 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-25' points='5.462 59.578 8.039 59.578 8.039 51.847 5.462 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-26' points='5.462 64.731 8.039 64.731 8.039 62.154 5.462 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-27' points='8.039 2.885 10.616 2.885 10.616 0.308 8.039 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-28' points='8.039 13.193 10.616 13.193 10.616 5.462 8.039 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-29' points='8.039 18.346 10.616 18.346 10.616 15.769 8.039 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-30' points='8.039 26.077 10.616 26.077 10.616 23.5 8.039 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-31' points='8.039 31.231 10.616 31.231 10.616 28.654 8.039 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-32' points='8.039 36.385 10.616 36.385 10.616 33.808 8.039 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-33' points='8.039 41.539 10.616 41.539 10.616 38.962 8.039 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-34' points='8.039 49.27 10.616 49.27 10.616 46.693 8.039 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-35' points='8.039 59.578 10.616 59.578 10.616 51.847 8.039 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-36' points='8.039 64.731 10.616 64.731 10.616 62.154 8.039 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-37' points='10.615 2.885 13.192 2.885 13.192 0.308 10.615 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-38' points='10.615 13.193 13.192 13.193 13.192 5.462 10.615 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-39' points='10.615 18.346 13.192 18.346 13.192 15.769 10.615 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-40' points='10.615 28.654 13.192 28.654 13.192 23.5 10.615 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-41' points='10.615 36.385 13.192 36.385 13.192 31.231 10.615 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-42' points='10.615 44.116 13.192 44.116 13.192 38.962 10.615 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-43' points='10.615 49.27 13.192 49.27 13.192 46.693 10.615 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-44' points='10.615 59.578 13.192 59.578 13.192 51.847 10.615 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-45' points='10.615 64.731 13.192 64.731 13.192 62.154 10.615 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-46' points='13.192 2.885 15.769 2.885 15.769 0.308 13.192 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-47' points='13.192 18.346 15.769 18.346 15.769 15.769 13.192 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-48' points='13.192 28.654 15.769 28.654 15.769 26.077 13.192 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-49' points='13.192 31.231 15.769 31.231 15.769 28.654 13.192 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-50' points='13.192 44.116 15.769 44.116 15.769 33.808 13.192 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-51' points='13.192 49.27 15.769 49.27 15.769 46.693 13.192 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-52' points='13.192 64.731 15.769 64.731 15.769 62.154 13.192 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-53' points='15.769 15.77 18.346 15.77 18.346 0.308 15.769 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-54' points='15.769 18.346 18.346 18.346 18.346 15.769 15.769 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-55' points='15.769 23.5 18.346 23.5 18.346 20.923 15.769 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-56' points='15.769 28.654 18.346 28.654 18.346 26.077 15.769 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-57' points='15.769 33.808 18.346 33.808 18.346 31.231 15.769 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-58' points='15.769 38.962 18.346 38.962 18.346 36.385 15.769 36.385'%3E%3C/polygon%3E%3Cpolygon id='Fill-59' points='15.769 44.116 18.346 44.116 18.346 41.539 15.769 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-60' points='15.769 51.847 18.346 51.847 18.346 46.693 15.769 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-61' points='15.769 59.578 18.346 59.578 18.346 51.847 15.769 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-62' points='15.769 64.731 18.346 64.731 18.346 59.577 15.769 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-63' points='18.346 26.077 20.923 26.077 20.923 20.923 18.346 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-64' points='18.346 31.231 20.923 31.231 20.923 28.654 18.346 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-65' points='18.346 44.116 20.923 44.116 20.923 36.385 18.346 36.385'%3E%3C/polygon%3E%3Cpolygon id='Fill-66' points='20.923 2.885 23.5 2.885 23.5 0.308 20.923 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-67' points='20.923 8.039 23.5 8.039 23.5 5.462 20.923 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-68' points='20.923 15.769 23.5 15.769 23.5 13.192 20.923 13.192'%3E%3C/polygon%3E%3Cpolygon id='Fill-69' points='20.923 18.346 23.5 18.346 23.5 15.769 20.923 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-70' points='20.923 28.654 23.5 28.654 23.5 26.077 20.923 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-71' points='20.923 38.962 23.5 38.962 23.5 31.231 20.923 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-72' points='20.923 49.27 23.5 49.27 23.5 44.116 20.923 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-73' points='20.923 59.577 23.5 59.577 23.5 57 20.923 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-74' points='20.923 64.731 23.5 64.731 23.5 62.154 20.923 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-75' points='23.5 5.462 26.077 5.462 26.077 0.308 23.5 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-76' points='23.5 23.5 26.077 23.5 26.077 18.346 23.5 18.346'%3E%3C/polygon%3E%3Cpolygon id='Fill-77' points='23.5 28.654 26.077 28.654 26.077 26.077 23.5 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-78' points='23.5 36.385 26.077 36.385 26.077 31.231 23.5 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-79' points='23.5 44.116 26.077 44.116 26.077 38.962 23.5 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-80' points='23.5 46.693 26.077 46.693 26.077 44.116 23.5 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-81' points='23.5 51.847 26.077 51.847 26.077 49.27 23.5 49.27'%3E%3C/polygon%3E%3Cpolygon id='Fill-82' points='23.5 54.424 26.077 54.424 26.077 51.847 23.5 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-83' points='23.5 59.577 26.077 59.577 26.077 57 23.5 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-84' points='23.5 62.154 26.077 62.154 26.077 59.577 23.5 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-85' points='26.077 8.039 28.654 8.039 28.654 5.462 26.077 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-86' points='26.077 13.193 28.654 13.193 28.654 10.616 26.077 10.616'%3E%3C/polygon%3E%3Cpolygon id='Fill-87' points='26.077 18.346 28.654 18.346 28.654 15.769 26.077 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-88' points='26.077 26.077 28.654 26.077 28.654 20.923 26.077 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-89' points='26.077 44.116 28.654 44.116 28.654 33.808 26.077 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-90' points='26.077 49.27 28.654 49.27 28.654 46.693 26.077 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-91' points='26.077 57 28.654 57 28.654 54.423 26.077 54.423'%3E%3C/polygon%3E%3Cpolygon id='Fill-92' points='26.077 64.731 28.654 64.731 28.654 62.154 26.077 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-93' points='28.654 2.885 31.231 2.885 31.231 0.308 28.654 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-94' points='28.654 13.193 31.231 13.193 31.231 8.039 28.654 8.039'%3E%3C/polygon%3E%3Cpolygon id='Fill-95' points='28.654 20.923 31.231 20.923 31.231 18.346 28.654 18.346'%3E%3C/polygon%3E%3Cpolygon id='Fill-96' points='28.654 28.654 31.231 28.654 31.231 23.5 28.654 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-97' points='28.654 33.808 31.231 33.808 31.231 28.654 28.654 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-98' points='28.654 41.539 31.231 41.539 31.231 38.962 28.654 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-99' points='28.654 49.27 31.231 49.27 31.231 46.693 28.654 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-100' points='28.654 54.424 31.231 54.424 31.231 51.847 28.654 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-101' points='28.654 62.154 31.231 62.154 31.231 59.577 28.654 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-102' points='31.231 2.885 33.808 2.885 33.808 0.308 31.231 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-103' points='31.231 15.769 33.808 15.769 33.808 13.192 31.231 13.192'%3E%3C/polygon%3E%3Cpolygon id='Fill-104' points='31.231 20.923 33.808 20.923 33.808 15.769 31.231 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-105' points='31.231 28.654 33.808 28.654 33.808 23.5 31.231 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-106' points='31.231 41.539 33.808 41.539 33.808 28.654 31.231 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-107' points='31.231 59.578 33.808 59.578 33.808 51.847 31.231 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-108' points='31.231 62.154 33.808 62.154 33.808 59.577 31.231 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-109' points='33.808 2.885 36.385 2.885 36.385 0.308 33.808 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-110' points='33.808 10.616 36.385 10.616 36.385 5.462 33.808 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-111' points='33.808 15.769 36.385 15.769 36.385 13.192 33.808 13.192'%3E%3C/polygon%3E%3Cpolygon id='Fill-112' points='33.808 28.654 36.385 28.654 36.385 26.077 33.808 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-113' points='33.808 38.962 36.385 38.962 36.385 36.385 33.808 36.385'%3E%3C/polygon%3E%3Cpolygon id='Fill-114' points='33.808 44.116 36.385 44.116 36.385 41.539 33.808 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-115' points='33.808 46.693 36.385 46.693 36.385 44.116 33.808 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-116' points='33.808 51.847 36.385 51.847 36.385 49.27 33.808 49.27'%3E%3C/polygon%3E%3Cpolygon id='Fill-117' points='33.808 54.424 36.385 54.424 36.385 51.847 33.808 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-118' points='33.808 59.577 36.385 59.577 36.385 57 33.808 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-119' points='33.808 64.731 36.385 64.731 36.385 62.154 33.808 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-120' points='36.385 8.039 38.962 8.039 38.962 5.462 36.385 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-121' points='36.385 15.77 38.962 15.77 38.962 10.616 36.385 10.616'%3E%3C/polygon%3E%3Cpolygon id='Fill-122' points='36.385 18.346 38.962 18.346 38.962 15.769 36.385 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-123' points='36.385 44.116 38.962 44.116 38.962 38.962 36.385 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-124' points='36.385 59.577 38.962 59.577 38.962 57 36.385 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-125' points='36.385 64.731 38.962 64.731 38.962 59.577 36.385 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-126' points='38.962 10.616 41.539 10.616 41.539 5.462 38.962 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-127' points='38.962 28.654 41.539 28.654 41.539 20.923 38.962 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-128' points='38.962 44.116 41.539 44.116 41.539 31.231 38.962 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-129' points='38.962 46.693 41.539 46.693 41.539 44.116 38.962 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-130' points='38.962 51.847 41.539 51.847 41.539 49.27 38.962 49.27'%3E%3C/polygon%3E%3Cpolygon id='Fill-131' points='38.962 57.001 41.539 57.001 41.539 51.847 38.962 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-132' points='38.962 64.731 41.539 64.731 41.539 62.154 38.962 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-133' points='41.539 5.462 44.116 5.462 44.116 2.885 41.539 2.885'%3E%3C/polygon%3E%3Cpolygon id='Fill-134' points='41.539 15.769 44.116 15.769 44.116 13.192 41.539 13.192'%3E%3C/polygon%3E%3Cpolygon id='Fill-135' points='41.539 18.346 44.116 18.346 44.116 15.769 41.539 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-136' points='41.539 28.654 44.116 28.654 44.116 20.923 41.539 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-137' points='41.539 31.231 44.116 31.231 44.116 28.654 41.539 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-138' points='41.539 36.385 44.116 36.385 44.116 33.808 41.539 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-139' points='41.539 44.116 44.116 44.116 44.116 41.539 41.539 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-140' points='41.539 51.847 44.116 51.847 44.116 44.116 41.539 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-141' points='41.539 54.424 44.116 54.424 44.116 51.847 41.539 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-142' points='41.539 64.731 44.116 64.731 44.116 59.577 41.539 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-143' points='44.116 28.654 46.693 28.654 46.693 26.077 44.116 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-144' points='44.116 31.231 46.693 31.231 46.693 28.654 44.116 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-145' points='44.116 36.385 46.693 36.385 46.693 33.808 44.116 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-146' points='44.116 44.116 46.693 44.116 46.693 41.539 44.116 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-147' points='44.116 57.001 46.693 57.001 46.693 51.847 44.116 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-148' points='46.693 15.77 49.27 15.77 49.27 0.308 46.693 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-149' points='46.693 18.346 49.27 18.346 49.27 15.769 46.693 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-150' points='46.693 26.077 49.27 26.077 49.27 23.5 46.693 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-151' points='46.693 38.962 49.27 38.962 49.27 31.231 46.693 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-152' points='46.693 44.116 49.27 44.116 49.27 41.539 46.693 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-153' points='46.693 49.27 49.27 49.27 49.27 46.693 46.693 46.693'%3E%3C/polygon%3E%3Cpolygon id='Fill-154' points='46.693 54.424 49.27 54.424 49.27 51.847 46.693 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-155' points='46.693 64.731 49.27 64.731 49.27 59.577 46.693 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-156' points='49.27 2.885 51.847 2.885 51.847 0.308 49.27 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-157' points='49.27 18.346 51.847 18.346 51.847 15.769 49.27 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-158' points='49.27 26.077 51.847 26.077 51.847 20.923 49.27 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-159' points='49.27 36.385 51.847 36.385 51.847 31.231 49.27 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-160' points='49.27 44.116 51.847 44.116 51.847 38.962 49.27 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-161' points='49.27 54.424 51.847 54.424 51.847 51.847 49.27 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-162' points='49.27 59.577 51.847 59.577 51.847 57 49.27 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-163' points='49.27 62.154 51.847 62.154 51.847 59.577 49.27 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-164' points='51.847 2.885 54.424 2.885 54.424 0.308 51.847 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-165' points='51.847 13.193 54.424 13.193 54.424 5.462 51.847 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-166' points='51.847 18.346 54.424 18.346 54.424 15.769 51.847 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-167' points='51.847 44.116 54.424 44.116 54.424 38.962 51.847 38.962'%3E%3C/polygon%3E%3Cpolygon id='Fill-168' points='51.847 51.847 54.424 51.847 54.424 44.116 51.847 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-169' points='51.847 59.578 54.424 59.578 54.424 51.847 51.847 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-170' points='51.847 62.154 54.424 62.154 54.424 59.577 51.847 59.577'%3E%3C/polygon%3E%3Cpolygon id='Fill-171' points='54.423 2.885 57 2.885 57 0.308 54.423 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-172' points='54.423 13.193 57 13.193 57 5.462 54.423 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-173' points='54.423 18.346 57 18.346 57 15.769 54.423 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-174' points='54.423 28.654 57 28.654 57 23.5 54.423 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-175' points='54.423 31.231 57 31.231 57 28.654 54.423 28.654'%3E%3C/polygon%3E%3Cpolygon id='Fill-176' points='54.423 41.539 57 41.539 57 36.385 54.423 36.385'%3E%3C/polygon%3E%3Cpolygon id='Fill-177' points='54.423 59.577 57 59.577 57 57 54.423 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-178' points='54.423 64.731 57 64.731 57 62.154 54.423 62.154'%3E%3C/polygon%3E%3Cpolygon id='Fill-179' points='57 2.885 59.577 2.885 59.577 0.308 57 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-180' points='57 13.193 59.577 13.193 59.577 5.462 57 5.462'%3E%3C/polygon%3E%3Cpolygon id='Fill-181' points='57 18.346 59.577 18.346 59.577 15.769 57 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-182' points='57 23.5 59.577 23.5 59.577 20.923 57 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-183' points='57 28.654 59.577 28.654 59.577 26.077 57 26.077'%3E%3C/polygon%3E%3Cpolygon id='Fill-184' points='57 38.962 59.577 38.962 59.577 36.385 57 36.385'%3E%3C/polygon%3E%3Cpolygon id='Fill-185' points='57 57 59.577 57 59.577 54.423 57 54.423'%3E%3C/polygon%3E%3Cpolygon id='Fill-186' points='59.577 2.885 62.154 2.885 62.154 0.308 59.577 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-187' points='59.577 18.346 62.154 18.346 62.154 15.769 59.577 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-188' points='59.577 26.077 62.154 26.077 62.154 23.5 59.577 23.5'%3E%3C/polygon%3E%3Cpolygon id='Fill-189' points='59.577 36.385 62.154 36.385 62.154 33.808 59.577 33.808'%3E%3C/polygon%3E%3Cpolygon id='Fill-190' points='59.577 44.116 62.154 44.116 62.154 41.539 59.577 41.539'%3E%3C/polygon%3E%3Cpolygon id='Fill-191' points='59.577 51.847 62.154 51.847 62.154 49.27 59.577 49.27'%3E%3C/polygon%3E%3Cpolygon id='Fill-192' points='59.577 59.577 62.154 59.577 62.154 54.423 59.577 54.423'%3E%3C/polygon%3E%3Cpolygon id='Fill-193' points='62.154 15.77 64.731 15.77 64.731 0.308 62.154 0.308'%3E%3C/polygon%3E%3Cpolygon id='Fill-194' points='62.154 18.346 64.731 18.346 64.731 15.769 62.154 15.769'%3E%3C/polygon%3E%3Cpolygon id='Fill-195' points='62.154 28.654 64.731 28.654 64.731 20.923 62.154 20.923'%3E%3C/polygon%3E%3Cpolygon id='Fill-196' points='62.154 38.962 64.731 38.962 64.731 31.231 62.154 31.231'%3E%3C/polygon%3E%3Cpolygon id='Fill-197' points='62.154 49.27 64.731 49.27 64.731 44.116 62.154 44.116'%3E%3C/polygon%3E%3Cpolygon id='Fill-198' points='62.154 54.424 64.731 54.424 64.731 51.847 62.154 51.847'%3E%3C/polygon%3E%3Cpolygon id='Fill-199' points='62.154 59.577 64.731 59.577 64.731 57 62.154 57'%3E%3C/polygon%3E%3Cpolygon id='Fill-200' points='62.154 64.731 64.731 64.731 64.731 62.154 62.154 62.154'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-e-mail-push {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='62px' height='60px' viewBox='0 0 62 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_stempelkarte%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon_stempelkarte' stroke='%230270B6'%3E%3Cg%3E%3Crect id='Rectangle' x='0.5' y='0.5' width='61' height='59'%3E%3C/rect%3E%3Ccircle id='Oval' fill='%230270B6' cx='18.5' cy='17.5' r='8.5'%3E%3C/circle%3E%3Cpath d='M18.5,52 C23.1944204,52 27,48.1944204 27,43.5 C27,38.8055796 23.1944204,35 18.5,35 C13.8055796,35 10,38.8055796 10,43.5 C10,48.1944204 13.8055796,52 18.5,52 Z' id='Oval-Copy-2' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,26 C49.1944204,26 53,22.1944204 53,17.5 C53,12.8055796 49.1944204,9 44.5,9 C39.8055796,9 36,12.8055796 36,17.5 C36,22.1944204 39.8055796,26 44.5,26 Z' id='Oval-Copy' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,52 C49.1944204,52 53,48.1944204 53,43.5 C53,38.8055796 49.1944204,35 44.5,35 C39.8055796,35 36,38.8055796 36,43.5 C36,48.1944204 39.8055796,52 44.5,52 Z' id='Oval-Copy-3' stroke-dasharray='3,4'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-platform {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='62px' height='60px' viewBox='0 0 62 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_stempelkarte%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon_stempelkarte' stroke='%230270B6'%3E%3Cg%3E%3Crect id='Rectangle' x='0.5' y='0.5' width='61' height='59'%3E%3C/rect%3E%3Ccircle id='Oval' fill='%230270B6' cx='18.5' cy='17.5' r='8.5'%3E%3C/circle%3E%3Cpath d='M18.5,52 C23.1944204,52 27,48.1944204 27,43.5 C27,38.8055796 23.1944204,35 18.5,35 C13.8055796,35 10,38.8055796 10,43.5 C10,48.1944204 13.8055796,52 18.5,52 Z' id='Oval-Copy-2' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,26 C49.1944204,26 53,22.1944204 53,17.5 C53,12.8055796 49.1944204,9 44.5,9 C39.8055796,9 36,12.8055796 36,17.5 C36,22.1944204 39.8055796,26 44.5,26 Z' id='Oval-Copy' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,52 C49.1944204,52 53,48.1944204 53,43.5 C53,38.8055796 49.1944204,35 44.5,35 C39.8055796,35 36,38.8055796 36,43.5 C36,48.1944204 39.8055796,52 44.5,52 Z' id='Oval-Copy-3' stroke-dasharray='3,4'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-addons {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='62px' height='60px' viewBox='0 0 62 60' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 58 (84663) - https://sketch.com --%3E%3Ctitle%3Eicon_stempelkarte%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='icon_stempelkarte' stroke='%230270B6'%3E%3Cg%3E%3Crect id='Rectangle' x='0.5' y='0.5' width='61' height='59'%3E%3C/rect%3E%3Ccircle id='Oval' fill='%230270B6' cx='18.5' cy='17.5' r='8.5'%3E%3C/circle%3E%3Cpath d='M18.5,52 C23.1944204,52 27,48.1944204 27,43.5 C27,38.8055796 23.1944204,35 18.5,35 C13.8055796,35 10,38.8055796 10,43.5 C10,48.1944204 13.8055796,52 18.5,52 Z' id='Oval-Copy-2' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,26 C49.1944204,26 53,22.1944204 53,17.5 C53,12.8055796 49.1944204,9 44.5,9 C39.8055796,9 36,12.8055796 36,17.5 C36,22.1944204 39.8055796,26 44.5,26 Z' id='Oval-Copy' stroke-dasharray='3,4'%3E%3C/path%3E%3Cpath d='M44.5,52 C49.1944204,52 53,48.1944204 53,43.5 C53,38.8055796 49.1944204,35 44.5,35 C39.8055796,35 36,38.8055796 36,43.5 C36,48.1944204 39.8055796,52 44.5,52 Z' id='Oval-Copy-3' stroke-dasharray='3,4'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature-block .icon-box:before {
    background-image: url(../images/icons/small-shape-1.svg);
    background-repeat: no-repeat;
}

.feature-block:nth-child(2) .icon-box:before {
    background-image: url(../images/icons/small-shape-2.svg);
}

.feature-block:nth-child(3) .icon-box:before {
    background-image: url(../images/icons/small-shape-3.svg);
}

.feature-block:nth-child(4) .icon-box:before {
    background-image: url(../images/icons/small-shape-4.svg);
}

.feature-block:nth-child(5) .icon-box:before {
    background-image: url(../images/icons/small-shape-5.svg);
}

.feature-block:nth-child(6) .icon-box:before {
    background-image: url(../images/icons/small-shape-6.svg);
}

.feature-block:nth-child(7) .icon-box:before {
    background-image: url(../images/icons/small-shape-7.svg);
}

.feature-block:nth-child(8) .icon-box:before {
    background-image: url(../images/icons/small-shape-8.svg);
}

#store-search-map-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#haendlersuche-container {
    background: #fff;
    flex: 100% 0 0;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    #haendlersuche-container {
        flex: 50% 0 0;
    }
}

#haendlersuche {
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 10px;
}

#haendlersuche .dropdown-toggle {
    border-right: 1px solid #f3f3f3;
}

#haendlersuche .btn {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0;
}

#haendlersuche .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

#haendlersuche .btn-primary:hover {
    background-color: #0062cc;
    border-color: #0062cc;
}

#haendlersuche .form-control {
    border-color: #fff;
    width: auto;
}

#haendlersuche .input-group {
    width: 100%;
}

#haendlersuche .input-group-btn {
    flex: 60px 0 0;
}

#haendlersuche .form-group {
    margin: 0;
    flex: 1 0 0;
}

#store-search-map {
    height: 600px;
    flex: 100% 0 0;
}

@media screen and (min-width: 768px) {
    #store-search-map {
        flex: 50% 0 0;
    }
}

#store-search-map .cluster div {
    font-size: 20px !important;
    color: #92cdb8 !important;
}

.store-search__item {
    margin-top: 20px;
}

.store-search__item:nth-child(1n) {
    padding-right: 30px;
}

.store-search__item:nth-child(2n) {
    padding-left: 30px;
}

.store-search__item h4 {
    font-size: 16px;
}

.store-search__item p {
    line-height: 1.4rem;
}

#store-search-results .store-search__item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-content: center;
    padding-bottom: 8px;
}

#store-search-results .store-search__item__title a {
    color: #007bff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex: 80px 0 0;
}

#store-search-results .store-search__item__title a .title {
    flex: calc(100% - 80px) 0 0;
}

#store-search-results .store-search__item__title a .distance {
    color: #6c757d;
    flex: 80px 0 0;
    text-align: right;
}

#store-search-results .store-search__item__title img {
    margin-right: 10px;
}

#store-search-results .store-search__item__title h4 {
    flex: calc(100% - 50px) 0 0;
    line-height: 24px;
}

#store-search-results .store-search__item__title--restaurant:before {
    background-image: url(../images/map/marker_restaurant.png);
}

#store-search-results .store-search__item__title--cafe:before {
    background-image: url(../images/map/marker_cafe.png);
}

#store-search-results .store-search__item__title--bistro:before {
    background-image: url(../images/map/marker_bistro.png);
}

#store-search-results .store-search__item__title--bar:before {
    background-image: url(../images/map/marker_bar.png);
}

#store-search-results .store-search__item__title--baeckerei:before {
    background-image: url(../images/map/marker_baeckerei.png);
}

#store-search-results .store-search__item__title--club:before {
    background-image: url(../images/map/marker_club.png);
}

#store-search-results .store-search__item__title--firseur:before {
    background-image: url(../images/map/marker_friseur.png);
}

#store-search-results .store-search__item__title--nagelstudio:before {
    background-image: url(../images/map/marker_nagelstudio.png);
}

#store-search-results .store-search__item__title--kosmetikstudio:before {
    background-image: url(../images/map/marker_kosmetikstudio.png);
}

#store-search-results .store-search__item__title--solarium:before {
    background-image: url(../images/map/marker_solarium.png);
}

#store-search-results .store-search__item__title--freizeit:before {
    background-image: url(../images/map/marker_freizeit.png);
}

#store-search-results .store-search__item__title--hotel:before {
    background-image: url(../images/map/marker_hotel.png);
}

#store-search-results .store-search__item__title--spielhalle:before {
    background-image: url(../images/map/marker_spielhalle.png);
}

#store-search-results .store-search__item__title--theater_kino:before {
    background-image: url(../images/map/marker_theater_kino.png);
}

#store-search-results .store-search__item__title--fitnesstudio:before {
    background-image: url(../images/map/marker_fitnesstudio.png);
}

#store-search-results .store-search__item__title--tanzstudio:before {
    background-image: url(../images/map/marker_tanzstudio.png);
}

#store-search-results .store-search__item__title--verein:before {
    background-image: url(../images/map/marker_verein.png);
}

#store-search-results .store-search__item__title--seminar_kongress:before {
    background-image: url(../images/map/marker_seminar_kongress.png);
}

#store-search-results .store-search__item__title--workshop_coworking:before {
    background-image: url(../images/map/marker_workshop.png);
}

#store-search-results .store-search__item__title--sonstiges:before {
    background-image: url(../images/map/marker_sonstiges.png);
}

#store-search-results .store-search__item__text__inner a {
    color: #007bff;
}

.store-search-results__placeholder {
    padding: 15px;
}

.partner-section .card {
    border: none;
    padding: 2rem;
    transform: scale(1);
    transition: 250ms all ease-in-out;
}

.partner-section .card .card-img-top {
    width: 100%;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 250ms all ease-in-out;
}

.partner-section .card .card-body {
    text-align: center;
}

.partner-section .card:hover {
    transform: scale(1.1);
}

.partner-section .card:hover .card-img-top {
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0);
}

/**
 * Partner
 */
.frontpage-partner h2 img {
    display: inline-block;
    width: 110px;
    height: auto;
    margin: 0 10px;
    position: relative;
    top: -5px;
}

@media (min-width: 576px) {
    .frontpage-partner h2 img {
        width: 130px;
        top: -6px;
    }
}

.frontpage-partner-swiper {
    padding: 10px 0 30px;
}

@media (min-width: 576px) {
    .frontpage-partner-swiper {
        padding: 30px 0;
    }
}

.frontpage-partner-swiper .swiper-slide {
    width: 50%;
    padding: 0 0.5rem;
}

@media (min-width: 576px) {
    .frontpage-partner-swiper .swiper-slide {
        width: 20%;
    }
}

.frontpage-partner-swiper .swiper-slide span {
    display: block;
    height: 0;
    padding-bottom: 60%;
    position: relative;
}

@media (min-width: 576px) {
    .frontpage-partner-swiper .swiper-slide span {
        padding-bottom: 40%;
    }
}

.frontpage-partner-swiper .swiper-slide img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.frontpage-partner-swiper .swiper-pagination {
    position: relative;
    padding: 20px 0;
    margin-top: 30px;
}

@media (min-width: 576px) {
    .frontpage-partner-swiper .swiper-pagination {
        margin-top: 60px;
        padding: 40px 0;
    }
}

.frontpage-partner-swiper .swiper-pagination-bullet {
    background-color: #007bff;
    opacity: 0.6;
    width: 14px;
    height: 14px;
    margin: 0 10px !important;
}

.frontpage-partner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

#partner-wrapper .card-title {
    min-height: 64px;
}

#partner-wrapper .card {
    min-height: 466px;
}


#partner-wrapper .card .btn-style-seven {
    bottom: 20px;
    position: absolute;
}


.privacy-app-container table {
    width: 100%;
}

.privacy-app-container table td {
    padding: 1px 30px;
    border: solid;
}

.privacy-app-container table td p {
    margin: 0;
}

.smaller-h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}

.banner-section-three .layer-image {
    zoom: 1.2;
}

@media (min-width: 1139px) and (max-width: 1400px) {
    .banner-section .layer-image {
        background-position: left -723px;
    }
}
.honig{
height: 0;
width: 0;
padding: 0;
margin: 0 !important;
opacity: 0;
overflow: hidden;
}
