@-webkit-keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

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

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

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

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

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

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

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

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

@-webkit-keyframes flash {

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

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

@keyframes flash {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes shake {

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

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

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

@keyframes shake {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {

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

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

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

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

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

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

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

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

@keyframes jello {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {

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

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

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

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

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

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

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

@keyframes bounceIn {

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceInDown {

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

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

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

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

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

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

@keyframes bounceInDown {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInLeft {

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

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

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

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

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

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

@keyframes bounceInLeft {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInRight {

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

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

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

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

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

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

@keyframes bounceInRight {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInUp {

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

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

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

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

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

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

@keyframes bounceInUp {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 0;
    }
}

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

    to {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    to {
        opacity: 0;
    }
}

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

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

    to {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce),
(print) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

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

[class^="ti-"],
[class*=" ti-"] {
    font-family: "themify";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-size: 16px;
}

.ti-wand:before {
    content: "";
}

.ti-volume:before {
    content: "";
}

.ti-user:before {
    content: "";
}

.ti-unlock:before {
    content: "";
}

.ti-unlink:before {
    content: "";
}

.ti-trash:before {
    content: "";
}

.ti-thought:before {
    content: "";
}

.ti-target:before {
    content: "";
}

.ti-tag:before {
    content: "";
}

.ti-tablet:before {
    content: "";
}

.ti-star:before {
    content: "";
}

.ti-spray:before {
    content: "";
}

.ti-signal:before {
    content: "";
}

.ti-shopping-cart:before {
    content: "";
}

.ti-shopping-cart-full:before {
    content: "";
}

.ti-settings:before {
    content: "";
}

.ti-search:before {
    content: "";
}

.ti-zoom-in:before {
    content: "";
}

.ti-zoom-out:before {
    content: "";
}

.ti-cut:before {
    content: "";
}

.ti-ruler:before {
    content: "";
}

.ti-ruler-pencil:before {
    content: "";
}

.ti-ruler-alt:before {
    content: "";
}

.ti-bookmark:before {
    content: "";
}

.ti-bookmark-alt:before {
    content: "";
}

.ti-reload:before {
    content: "";
}

.ti-plus:before {
    content: "";
}

.ti-pin:before {
    content: "";
}

.ti-pencil:before {
    content: "";
}

.ti-pencil-alt:before {
    content: "";
}

.ti-paint-roller:before {
    content: "";
}

.ti-paint-bucket:before {
    content: "";
}

.ti-na:before {
    content: "";
}

.ti-mobile:before {
    content: "";
}

.ti-minus:before {
    content: "";
}

.ti-medall:before {
    content: "";
}

.ti-medall-alt:before {
    content: "";
}

.ti-marker:before {
    content: "";
}

.ti-marker-alt:before {
    content: "";
}

.ti-arrow-up:before {
    content: "";
}

.ti-arrow-right:before {
    content: "";
}

.ti-arrow-left:before {
    content: "";
}

.ti-arrow-down:before {
    content: "";
}

.ti-lock:before {
    content: "";
}

.ti-location-arrow:before {
    content: "";
}

.ti-link:before {
    content: "";
}

.ti-layout:before {
    content: "";
}

.ti-layers:before {
    content: "";
}

.ti-layers-alt:before {
    content: "";
}

.ti-key:before {
    content: "";
}

.ti-import:before {
    content: "";
}

.ti-image:before {
    content: "";
}

.ti-heart:before {
    content: "";
}

.ti-heart-broken:before {
    content: "";
}

.ti-hand-stop:before {
    content: "";
}

.ti-hand-open:before {
    content: "";
}

.ti-hand-drag:before {
    content: "";
}

.ti-folder:before {
    content: "";
}

.ti-flag:before {
    content: "";
}

.ti-flag-alt:before {
    content: "";
}

.ti-flag-alt-2:before {
    content: "";
}

.ti-eye:before {
    content: "";
}

.ti-export:before {
    content: "";
}

.ti-exchange-vertical:before {
    content: "";
}

.ti-desktop:before {
    content: "";
}

.ti-cup:before {
    content: "";
}

.ti-crown:before {
    content: "";
}

.ti-comments:before {
    content: "";
}

.ti-comment:before {
    content: "";
}

.ti-comment-alt:before {
    content: "";
}

.ti-close:before {
    content: "";
}

.ti-clip:before {
    content: "";
}

.ti-angle-up:before {
    content: "";
}

.ti-angle-right:before {
    content: "";
}

.ti-angle-left:before {
    content: "";
}

.ti-angle-down:before {
    content: "";
}

.ti-check:before {
    content: "";
}

.ti-check-box:before {
    content: "";
}

.ti-camera:before {
    content: "";
}

.ti-announcement:before {
    content: "";
}

.ti-brush:before {
    content: "";
}

.ti-briefcase:before {
    content: "";
}

.ti-bolt:before {
    content: "";
}

.ti-bolt-alt:before {
    content: "";
}

.ti-blackboard:before {
    content: "";
}

.ti-bag:before {
    content: "";
}

.ti-move:before {
    content: "";
}

.ti-arrows-vertical:before {
    content: "";
}

.ti-arrows-horizontal:before {
    content: "";
}

.ti-fullscreen:before {
    content: "";
}

.ti-arrow-top-right:before {
    content: "";
}

.ti-arrow-top-left:before {
    content: "";
}

.ti-arrow-circle-up:before {
    content: "";
}

.ti-arrow-circle-right:before {
    content: "";
}

.ti-arrow-circle-left:before {
    content: "";
}

.ti-arrow-circle-down:before {
    content: "";
}

.ti-angle-double-up:before {
    content: "";
}

.ti-angle-double-right:before {
    content: "";
}

.ti-angle-double-left:before {
    content: "";
}

.ti-angle-double-down:before {
    content: "";
}

.ti-zip:before {
    content: "";
}

.ti-world:before {
    content: "";
}

.ti-wheelchair:before {
    content: "";
}

.ti-view-list:before {
    content: "";
}

.ti-view-list-alt:before {
    content: "";
}

.ti-view-grid:before {
    content: "";
}

.ti-uppercase:before {
    content: "";
}

.ti-upload:before {
    content: "";
}

.ti-underline:before {
    content: "";
}

.ti-truck:before {
    content: "";
}

.ti-timer:before {
    content: "";
}

.ti-ticket:before {
    content: "";
}

.ti-thumb-up:before {
    content: "";
}

.ti-thumb-down:before {
    content: "";
}

.ti-text:before {
    content: "";
}

.ti-stats-up:before {
    content: "";
}

.ti-stats-down:before {
    content: "";
}

.ti-split-v:before {
    content: "";
}

.ti-split-h:before {
    content: "";
}

.ti-smallcap:before {
    content: "";
}

.ti-shine:before {
    content: "";
}

.ti-shift-right:before {
    content: "";
}

.ti-shift-left:before {
    content: "";
}

.ti-shield:before {
    content: "";
}

.ti-notepad:before {
    content: "";
}

.ti-server:before {
    content: "";
}

.ti-quote-right:before {
    content: "";
}

.ti-quote-left:before {
    content: "";
}

.ti-pulse:before {
    content: "";
}

.ti-printer:before {
    content: "";
}

.ti-power-off:before {
    content: "";
}

.ti-plug:before {
    content: "";
}

.ti-pie-chart:before {
    content: "";
}

.ti-paragraph:before {
    content: "";
}

.ti-panel:before {
    content: "";
}

.ti-package:before {
    content: "";
}

.ti-music:before {
    content: "";
}

.ti-music-alt:before {
    content: "";
}

.ti-mouse:before {
    content: "";
}

.ti-mouse-alt:before {
    content: "";
}

.ti-money:before {
    content: "";
}

.ti-microphone:before {
    content: "";
}

.ti-menu:before {
    content: "";
}

.ti-menu-alt:before {
    content: "";
}

.ti-map:before {
    content: "";
}

.ti-map-alt:before {
    content: "";
}

.ti-loop:before {
    content: "";
}

.ti-location-pin:before {
    content: "";
}

.ti-list:before {
    content: "";
}

.ti-light-bulb:before {
    content: "";
}

.ti-Italic:before {
    content: "";
}

.ti-info:before {
    content: "";
}

.ti-infinite:before {
    content: "";
}

.ti-id-badge:before {
    content: "";
}

.ti-hummer:before {
    content: "";
}

.ti-home:before {
    content: "";
}

.ti-help:before {
    content: "";
}

.ti-headphone:before {
    content: "";
}

.ti-harddrives:before {
    content: "";
}

.ti-harddrive:before {
    content: "";
}

.ti-gift:before {
    content: "";
}

.ti-game:before {
    content: "";
}

.ti-filter:before {
    content: "";
}

.ti-files:before {
    content: "";
}

.ti-file:before {
    content: "";
}

.ti-eraser:before {
    content: "";
}

.ti-envelope:before {
    content: "";
}

.ti-download:before {
    content: "";
}

.ti-direction:before {
    content: "";
}

.ti-direction-alt:before {
    content: "";
}

.ti-dashboard:before {
    content: "";
}

.ti-control-stop:before {
    content: "";
}

.ti-control-shuffle:before {
    content: "";
}

.ti-control-play:before {
    content: "";
}

.ti-control-pause:before {
    content: "";
}

.ti-control-forward:before {
    content: "";
}

.ti-control-backward:before {
    content: "";
}

.ti-cloud:before {
    content: "";
}

.ti-cloud-up:before {
    content: "";
}

.ti-cloud-down:before {
    content: "";
}

.ti-clipboard:before {
    content: "";
}

.ti-car:before {
    content: "";
}

.ti-calendar:before {
    content: "";
}

.ti-book:before {
    content: "";
}

.ti-bell:before {
    content: "";
}

.ti-basketball:before {
    content: "";
}

.ti-bar-chart:before {
    content: "";
}

.ti-bar-chart-alt:before {
    content: "";
}

.ti-back-right:before {
    content: "";
}

.ti-back-left:before {
    content: "";
}

.ti-arrows-corner:before {
    content: "";
}

.ti-archive:before {
    content: "";
}

.ti-anchor:before {
    content: "";
}

.ti-align-right:before {
    content: "";
}

.ti-align-left:before {
    content: "";
}

.ti-align-justify:before {
    content: "";
}

.ti-align-center:before {
    content: "";
}

.ti-alert:before {
    content: "";
}

.ti-alarm-clock:before {
    content: "";
}

.ti-agenda:before {
    content: "";
}

.ti-write:before {
    content: "";
}

.ti-window:before {
    content: "";
}

.ti-widgetized:before {
    content: "";
}

.ti-widget:before {
    content: "";
}

.ti-widget-alt:before {
    content: "";
}

.ti-wallet:before {
    content: "";
}

.ti-video-clapper:before {
    content: "";
}

.ti-video-camera:before {
    content: "";
}

.ti-vector:before {
    content: "";
}

.ti-themify-logo:before {
    content: "";
}

.ti-themify-favicon:before {
    content: "";
}

.ti-themify-favicon-alt:before {
    content: "";
}

.ti-support:before {
    content: "";
}

.ti-stamp:before {
    content: "";
}

.ti-split-v-alt:before {
    content: "";
}

.ti-slice:before {
    content: "";
}

.ti-shortcode:before {
    content: "";
}

.ti-shift-right-alt:before {
    content: "";
}

.ti-shift-left-alt:before {
    content: "";
}

.ti-ruler-alt-2:before {
    content: "";
}

.ti-receipt:before {
    content: "";
}

.ti-pin2:before {
    content: "";
}

.ti-pin-alt:before {
    content: "";
}

.ti-pencil-alt2:before {
    content: "";
}

.ti-palette:before {
    content: "";
}

.ti-more:before {
    content: "";
}

.ti-more-alt:before {
    content: "";
}

.ti-microphone-alt:before {
    content: "";
}

.ti-magnet:before {
    content: "";
}

.ti-line-double:before {
    content: "";
}

.ti-line-dotted:before {
    content: "";
}

.ti-line-dashed:before {
    content: "";
}

.ti-layout-width-full:before {
    content: "";
}

.ti-layout-width-default:before {
    content: "";
}

.ti-layout-width-default-alt:before {
    content: "";
}

.ti-layout-tab:before {
    content: "";
}

.ti-layout-tab-window:before {
    content: "";
}

.ti-layout-tab-v:before {
    content: "";
}

.ti-layout-tab-min:before {
    content: "";
}

.ti-layout-slider:before {
    content: "";
}

.ti-layout-slider-alt:before {
    content: "";
}

.ti-layout-sidebar-right:before {
    content: "";
}

.ti-layout-sidebar-none:before {
    content: "";
}

.ti-layout-sidebar-left:before {
    content: "";
}

.ti-layout-placeholder:before {
    content: "";
}

.ti-layout-menu:before {
    content: "";
}

.ti-layout-menu-v:before {
    content: "";
}

.ti-layout-menu-separated:before {
    content: "";
}

.ti-layout-menu-full:before {
    content: "";
}

.ti-layout-media-right-alt:before {
    content: "";
}

.ti-layout-media-right:before {
    content: "";
}

.ti-layout-media-overlay:before {
    content: "";
}

.ti-layout-media-overlay-alt:before {
    content: "";
}

.ti-layout-media-overlay-alt-2:before {
    content: "";
}

.ti-layout-media-left-alt:before {
    content: "";
}

.ti-layout-media-left:before {
    content: "";
}

.ti-layout-media-center-alt:before {
    content: "";
}

.ti-layout-media-center:before {
    content: "";
}

.ti-layout-list-thumb:before {
    content: "";
}

.ti-layout-list-thumb-alt:before {
    content: "";
}

.ti-layout-list-post:before {
    content: "";
}

.ti-layout-list-large-image:before {
    content: "";
}

.ti-layout-line-solid:before {
    content: "";
}

.ti-layout-grid4:before {
    content: "";
}

.ti-layout-grid3:before {
    content: "";
}

.ti-layout-grid2:before {
    content: "";
}

.ti-layout-grid2-thumb:before {
    content: "";
}

.ti-layout-cta-right:before {
    content: "";
}

.ti-layout-cta-left:before {
    content: "";
}

.ti-layout-cta-center:before {
    content: "";
}

.ti-layout-cta-btn-right:before {
    content: "";
}

.ti-layout-cta-btn-left:before {
    content: "";
}

.ti-layout-column4:before {
    content: "";
}

.ti-layout-column3:before {
    content: "";
}

.ti-layout-column2:before {
    content: "";
}

.ti-layout-accordion-separated:before {
    content: "";
}

.ti-layout-accordion-merged:before {
    content: "";
}

.ti-layout-accordion-list:before {
    content: "";
}

.ti-ink-pen:before {
    content: "";
}

.ti-info-alt:before {
    content: "";
}

.ti-help-alt:before {
    content: "";
}

.ti-headphone-alt:before {
    content: "";
}

.ti-hand-point-up:before {
    content: "";
}

.ti-hand-point-right:before {
    content: "";
}

.ti-hand-point-left:before {
    content: "";
}

.ti-hand-point-down:before {
    content: "";
}

.ti-gallery:before {
    content: "";
}

.ti-face-smile:before {
    content: "";
}

.ti-face-sad:before {
    content: "";
}

.ti-credit-card:before {
    content: "";
}

.ti-control-skip-forward:before {
    content: "";
}

.ti-control-skip-backward:before {
    content: "";
}

.ti-control-record:before {
    content: "";
}

.ti-control-eject:before {
    content: "";
}

.ti-comments-smiley:before {
    content: "";
}

.ti-brush-alt:before {
    content: "";
}

.ti-youtube:before {
    content: "";
}

.ti-vimeo:before {
    content: "";
}

.ti-twitter:before {
    content: "";
}

.ti-time:before {
    content: "";
}

.ti-tumblr:before {
    content: "";
}

.ti-skype:before {
    content: "";
}

.ti-share:before {
    content: "";
}

.ti-share-alt:before {
    content: "";
}

.ti-rocket:before {
    content: "";
}

.ti-pinterest:before {
    content: "";
}

.ti-new-window:before {
    content: "";
}

.ti-microsoft:before {
    content: "";
}

.ti-list-ol:before {
    content: "";
}

.ti-linkedin:before {
    content: "";
}

.ti-layout-sidebar-2:before {
    content: "";
}

.ti-layout-grid4-alt:before {
    content: "";
}

.ti-layout-grid3-alt:before {
    content: "";
}

.ti-layout-grid2-alt:before {
    content: "";
}

.ti-layout-column4-alt:before {
    content: "";
}

.ti-layout-column3-alt:before {
    content: "";
}

.ti-layout-column2-alt:before {
    content: "";
}

.ti-instagram:before {
    content: "";
}

.ti-google:before {
    content: "";
}

.ti-github:before {
    content: "";
}

.ti-flickr:before {
    content: "";
}

.ti-facebook:before {
    content: "";
}

.ti-dropbox:before {
    content: "";
}

.ti-dribbble:before {
    content: "";
}

.ti-apple:before {
    content: "";
}

.ti-android:before {
    content: "";
}

.ti-save:before {
    content: "";
}

.ti-save-alt:before {
    content: "";
}

.ti-yahoo:before {
    content: "";
}

.ti-wordpress:before {
    content: "";
}

.ti-vimeo-alt:before {
    content: "";
}

.ti-twitter-alt:before {
    content: "";
}

.ti-tumblr-alt:before {
    content: "";
}

.ti-trello:before {
    content: "";
}

.ti-stack-overflow:before {
    content: "";
}

.ti-soundcloud:before {
    content: "";
}

.ti-sharethis:before {
    content: "";
}

.ti-sharethis-alt:before {
    content: "";
}

.ti-reddit:before {
    content: "";
}

.ti-pinterest-alt:before {
    content: "";
}

.ti-microsoft-alt:before {
    content: "";
}

.ti-linux:before {
    content: "";
}

.ti-jsfiddle:before {
    content: "";
}

.ti-joomla:before {
    content: "";
}

.ti-html5:before {
    content: "";
}

.ti-flickr-alt:before {
    content: "";
}

.ti-email:before {
    content: "";
}

.ti-drupal:before {
    content: "";
}

.ti-dropbox-alt:before {
    content: "";
}

.ti-css3:before {
    content: "";
}

.ti-rss:before {
    content: "";
}

.ti-rss-alt:before {
    content: "";
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-preloader a:hover {
    color: #fff;
}

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

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

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

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

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

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

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
}

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

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

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

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

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

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

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

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

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

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

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

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

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

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

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

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

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}

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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.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 {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -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;
}

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -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;
}

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

    100% {
        opacity: 0;
    }
}

.owl-height {
    -webkit-transition: height 0.5s ease-in-out;
    transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0;
}

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

.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;
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
    transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

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

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

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

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

.hs-menu-initialized {
    position: relative;
    z-index: 10;
}

.hs-menu-initialized .animated {
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

.hs-overflow-x-locked {
    overflow-x: hidden;
}

.hs-sub-menu,
.hs-mega-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 2;
    margin-top: -0.002rem;
    visibility: hidden;
    background-color: #fff;
    opacity: 1 !important;
}

.hs-sub-menu-opened>.hs-sub-menu,
.hs-mega-menu-opened>.hs-mega-menu {
    visibility: visible;
    opacity: 1;
}

.hs-sub-menu {
    min-width: 180px;
}

.hs-has-sub-menu {
    overflow: hidden;
    position: relative;
}

.hs-sub-menu-opened {
    overflow: visible;
}

.hs-sub-menu .hs-sub-menu,
.hs-mega-menu .hs-sub-menu,
.hs-sub-menu .hs-mega-menu,
.hs-mega-menu .hs-mega-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

.hs-menu-vertical .hs-sub-menu,
.hs-menu-vertical .hs-mega-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

.hs-menu-vertical .hs-sub-menu {
    width: auto;
}

.hs-menu-vertical .hs-mega-menu {
    height: 100%;
}

.hs-mobile-state .hs-sub-menu,
.hs-mobile-state .hs-mega-menu {
    position: static;
    visibility: visible;
}

.hs-mobile-state .hs-has-mega-menu[data-max-width]>.hs-mega-menu,
.hs-mobile-state .hs-has-sub-menu[data-max-width]>.hs-sub-menu {
    max-width: initial !important;
}

.hs-menu-initialized.hs-rtl {
    direction: rtl;
    unicode-bidi: embed;
}

.hs-menu-initialized.hs-rtl .hs-sub-menu,
.hs-menu-initialized.hs-rtl .hs-mega-menu {
    left: auto;
    right: 0;
}

.hs-menu-initialized.hs-rtl .hs-sub-menu .hs-sub-menu,
.hs-menu-initialized.hs-rtl .hs-mega-menu .hs-sub-menu,
.hs-menu-initialized.hs-rtl .hs-sub-menu .hs-mega-menu,
.hs-menu-initialized.hs-rtl .hs-mega-menu .hs-mega-menu {
    left: auto;
    right: 100%;
}

.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu.hs-reversed {
    left: auto;
    right: 0;
}

.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu .hs-mega-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu .hs-mega-menu.hs-reversed {
    left: auto;
    right: 100%;
}

.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu.hs-reversed {
    right: auto;
    left: 0;
}

.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu .hs-mega-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu .hs-mega-menu.hs-reversed {
    right: auto;
    left: 100%;
}

.hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-left {
    left: 0;
    right: auto;
}

.hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-right {
    left: auto;
    right: 0;
}

.hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-center {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

/* .left-95{
    left: 100% !important;
} */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

@media (min-width: 320px) and (max-width: 768px) {
    html {
        font-size: 88%;
    }
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul:last-child {
    margin: 0;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

dt {
    font-weight: bold;
}

dd {
    margin-bottom: 1rem;
    margin-left: 1rem;
}

a {
    text-decoration: none;
}

a {
    color: #014cda;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: blue;
}

.badge {
    line-height: initial;
    font-weight: 500;
}

body {
    font-family: "Inter", Helvetica, sans-serif;
}

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

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

.body-font {
    font-family: "Inter", Helvetica, sans-serif;
}

.heading-font {
    font-family: "Inter", sans-serif;
}

h1,
.h1,
h2,
h3,
h4,
h5,
h6,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
    line-height: 1.25;
    font-family: "Inter", sans-serif;
    color: #363636;
}

.color-primary {
    color: #0948b3 !important;
}

.color-secondary {
    color: #e21837 !important;
}

.color-accent {
    color: #014cda !important;
}

.gray-light-bg {
    background: #fafafa !important;
}

.primary-bg {
    background: blue !important;
}
.primary-color {
    color: blue !important;
}

.secondary-bg {
    background: #014cda !important;
}

.accent-bg {
    background: #f59e0b !important;
}

.dark-bg {
    background: #02345c !important;
}

.dark-bg h1,
.dark-bg .h1,
.dark-bg h2,
.dark-bg .h2,
.dark-bg h3,
.dark-bg .h3,
.dark-bg h4,
.dark-bg .h4,
.dark-bg h5,
.dark-bg .h5,
.dark-bg h6,
.dark-bg .h6,
.dark-bg p {
    color: #fff;
}

.gradient-bg {
    background: #222 !important;
}

.facebook {
    color: #3b5999;
}

.twitter {
    color: #1da1f2;
}

.googleplus {
    color: #dd4b39;
}

.instagram {
    color: #e4405f;
}

.pinterest {
    color: #bd081c;
}

.dribbble {
    color: #ea4c89;
}

.behance {
    color: #0057ff;
}

.linkedin {
    color: #0077b5;
}

.youtube {
    color: #cd201f;
}

.whatsapp {
    color: #25d366;
}

.github {
    color: #222;
}

.facebook-bg {
    background: #3b5999;
}

.twitter-bg {
    background: #1da1f2;
}

.instagram-bg {
    background: #e4405f;
}

.pinterest-bg {
    background: #bd081c;
}

.dribbble-bg {
    background: #ea4c89;
}

.behance-bg {
    background: #0057ff;
}

.linkedin-bg {
    background: #0077b5;
}

.youtube-bg {
    background: #cd201f;
}

.dropbox-bg {
    background: #1e90ff;
}

.github-bg {
    background: #222;
}

.reddit-bg {
    background: #e84422;
}

.ptb-120 {
    padding: 120px 0;
}

.ptb-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ptb-80 {
    padding: 80px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-50 {
    padding: 50px 0;
}

.ptb-60 {
    padding: 60px 0;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.ptb-40 {
    padding: 40px 0;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.ptb-20 {
    padding: 20px 0;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

@media (min-width: 320px) and (max-width: 992px) {
    .ptb-100 {
        padding: 55px 0;
    }

    .pt-100 {
        padding-top: 55px;
    }

    .pb-100 {
        padding-bottom: 55px;
    }

    .ptb-80 {
        padding: 45px 0;
    }

    .pt-80 {
        padding-top: 45px;
    }

    .pb-80 {
        padding-bottom: 45px;
    }

    .ptb-60 {
        padding: 30px 0;
    }

    .pt-60 {
        padding-top: 30px;
    }

    .pb-60 {
        padding-bottom: 30px;
    }

    .ptb-40 {
        padding: 20px 0;
    }

    .pt-40 {
        padding-top: 20px;
    }

    .pb-40 {
        padding-bottom: 20px;
    }

    .ptb-120 {
        padding: 80px 0 35px;
    }
}

.bg-transparent ul li a:hover,
.white-bg.affix ul li a:hover {
    opacity: 1;
}

.bg-transparent.affix {
    background: #fff !important;
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.03),
        0 0.275rem 0.75rem -0.0625rem rgba(0, 0, 0, 0.06) !important;
    border-bottom: #000;
}

.topbar-nav li {
    font-size: 13px;
    line-height: initial;
    font-family: "Inter", sans-serif;
}

.topbar-nav li i {
    font-size: 13px;
}

.topbar-nav li a {
    color: #475569;
}

.topbar-nav li a:hover {
    color: #0948b3;
}

.topbar-nav li.list-inline-item:not(:last-child) {
    margin-right: 1rem;
}

.header-main {
    position: relative;
    display: block;
}

.main-header-menu-wrap {
    display: block !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: slideInU;
    animation-name: slideInU;
}

.main-header-menu-wrap .navbar-toggler.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #014cda;
}

.fixed-top {
    top: auto !important;
}

.main-header-menu-wrap.affix {
    position: fixed;
    top: 0 !important;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.header-nav {
    padding: 0;
}

@media (min-width: 320px) and (max-width: 767px) {
    .main-navbar-nav {
        padding-bottom: 15px;
    }

    .header-nav {
        padding: 0.5rem 0;
    }
}

.sub-menu-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.8203125rem;
    font-weight: 500;
    color: #475569;
}

.main-link-toggle::after {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    content: "";
    margin-left: 0.4rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    top: -1px;
}

.main-sub-menu {
    padding-left: 0;
    list-style: none;
}

.sub-menu-nav-group {
    padding-left: 0;
    list-style: none;
}

.u-header__navbar-link {
    color: #757575;
    font-size: 0.875rem;
    font-weight: 300;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.custom-nav-item:hover .custom-nav-link,
.custom-nav-item:focus .custom-nav-link {
    color: #0948b3;
}

.header-main .active>.custom-nav-link {
    color: #0948b3;
}

.custom-nav-link {
    font-size: 0.8203125rem;
    font-family: "Inter", Helvetica, sans-serif;
    font-weight: 500;
    position: relative;
}

.bg-transparent .header-nav a.custom-nav-link,
.gradient-bg .header-nav a.custom-nav-link {
    color: #111 !important;
    opacity: 0.8;
}

.bg-transparent .header-nav a.custom-nav-link:hover,
.gradient-bg .header-nav a.custom-nav-link:hover {
    opacity: 1;
}

.headroom--not-top.slideDown .bg-transparent {
    background: #0948b3 !important;
}

@media (max-width: 767px) {

    .bg-transparent .header-nav #navBar.navbar-collapse,
    .gradient-bg .header-nav #navBar.navbar-collapse {
        background: linear-gradient(75deg, #0948b3 10%, #014cda) !important;
    }

    .bg-transparent .header-nav #navBar.navbar-collapse,
    .gradient-bg .header-nav #navBar.navbar-collapse {
        padding: 0 15px 15px 15px;
    }

    .bg-transparent .header-nav #navBar.navbar-collapse .navbar-nav .nav-link,
    .gradient-bg .header-nav #navBar.navbar-collapse .navbar-nav .nav-link {
        padding-right: 1rem;
    }
}

.bg-transparent button.navbar-toggler span {
    color: #fff;
}

.sub-link-toggle {
    position: relative;
}

.sub-link-toggle::after {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-size: 10;
    font-weight: 900;
    content: "";
    margin-left: auto;
    margin-right: 0.04rem;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.main-sub-menu .active>.sub-menu-nav-link {
    color: #014cda;
}

.sub-menu-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
}

.hs-has-sub-menu {
    position: relative;
}

.navbar-expand {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.navbar-expand .main-navbar-nav {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-expand .main-navbar-nav .header-nav-last-item {
    text-align: right;
    padding-left: 1rem;
    padding-right: 0;
}

.header-nav-last-item .btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 10px;
    line-height: 1.25em;
}

.navbar-expand .main-navbar-nav .custom-nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
}

.navbar-expand .main-navbar-nav .sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
}

.navbar-expand .main-navbar-nav .sub-menu-nav-group .sub-menu-nav-link {
    padding-left: 0;
}

.navbar-expand .main-navbar-nav .main-sub-menu.hs-sub-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-expand .main-navbar-nav .main-sub-menu .hs-has-sub-menu {
    padding: 0;
}

.navbar-expand .main-navbar-nav .main-sub-menu .hs-has-sub-menu .main-sub-menu {
    margin-top: -1.1875rem;
}

.navbar-expand .u-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
    right: 20%;
}

.navbar-expand .mega-menu-wrap {
    padding: 2.5rem;
    margin-left: 0;
    margin-right: 0;
}

.navbar-expand .u-header__promo {
    border-bottom-right-radius: 0.25rem;
}

.navbar-expand .u-header__promo-card {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 1 0 0%;
    -webkit-box-flex: 1;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.navbar-expand .u-header__promo-card-deck {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
}

.navbar-expand .u-header__promo-card-deck .title-with-icon-item:not(:last-child) .title-with-icon-link {
    position: relative;
}

.navbar-expand .u-header__promo-card-deck .title-with-icon-item:not(:last-child) .title-with-icon-link::after {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1.5rem;
    border-right: 1px solid #e2e8f0;
    height: 100%;
    content: "";
}

.main-sub-menu {
    max-width: 1400px;
}

.menu-item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.content-feature-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.content-feature-list li {
    font-size: 14px;
    width: 100%;
}

.home-demo-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: grid;
    grid-gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.home-demo-list li {
    width: 100%;
}

.home-demo-list li a {
    font-size: 0.8203125rem;
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #475569;
}

.home-demo-list li a:hover {
    color: #0948b3;
}

@media (min-width: 320px) and (max-width: 767px) {
    .main-sub-menu {
        height: 220px;
        overflow-y: scroll;
    }

    .hs-mega-menu.hs-position-center {
        -webkit-transform: none !important;
        transform: none !important;
    }

    .hs-mega-menu.main-sub-menu {
        width: auto !important;
    }
}

.main-sub-menu-wrap {
    max-width: 100vw;
    position: absolute;
    top: 100%;
    font-size: 14px;
    text-align: left;
    left: 50%;
    list-style: none;
}

@media (min-width: 768px) {
    .navbar-expand-md .main-navbar-nav .custom-nav-link {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-right: 0.875rem;
        padding-left: 0.875rem;
    }

    .navbar-expand-md .main-navbar-nav .main-sub-menu {
        border-radius: 10px;
        -webkit-box-shadow: 0 12px 20px 0 rgba(23, 28, 33, 0.16);
        box-shadow: 0 12px 20px 0 rgba(23, 28, 33, 0.16);
    }

    .navbar-expand-md .hs-has-sub-menu ul.hs-sub-menu>.hs-has-sub-menu ul.hs-sub-menu {
        border-top-right-radius: 10px;
    }

    .navbar-expand-md .main-navbar-nav .main-sub-menu.hs-sub-menu {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-expand-md .main-navbar-nav .main-sub-menu .hs-has-sub-menu .main-sub-menu {
        margin-top: -1.1875rem;
    }

    .navbar-expand-md .main-navbar-nav .main-sub-menu.hs-sub-menu {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-expand-md .main-navbar-nav .main-sub-menu .hs-has-sub-menu {
        padding: 0;
    }

    .navbar-expand-md .main-navbar-nav .sub-menu-nav-link {
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }

    .navbar-expand-md .main-navbar-nav .header-nav-last-item {
        text-align: right;
        padding-left: 1rem;
        padding-right: 0;
    }

    .navbar-expand-md .mega-menu-wrap {
        padding: 2.5rem;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-expand-md .main-navbar-nav .sub-menu-nav-group .sub-menu-nav-link {
        padding-left: 0;
    }

    .navbar-expand-md .u-header__promo {
        border-bottom-right-radius: 0.25rem;
    }
}

.menu-banner-wrap {
    position: relative;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-left-radius: 0.25rem;
}

.menu-banner-content {
    z-index: 1;
    width: 100%;
    padding: 2rem 3rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.u-header__product-banner {
    background-color: #0944a9;
    border-radius: 0 0 10px 10px;
}

.custom-radius-right {
    border-radius: 0 0 10px 0;
}

.custom-radius-left {
    border-radius: 0 0 0 10px;
}

.custom-radius-bottom,
.u-header__product-banner:before {
    border-radius: 0 0 10px 10px;
}

.u-header__product-banner-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.u-header__promo {
    background-color: #fafafa;
}

.u-header__promo-inner {
    padding: 2rem;
}

.menu-countdown h2,
.menu-countdown .h2 {
    font-size: 25px;
    line-height: 20px;
    margin-bottom: 0;
    opacity: 0.8;
    color: #fff;
}

.menu-countdown h6,
.menu-countdown .h6 {
    font-size: 14px;
    line-height: 18px;
}

.offer-countdown-item h2,
.offer-countdown-item .h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 0;
    color: #fff;
}

.offer-countdown-item h6,
.offer-countdown-item .h6 {
    font-size: 16px;
    line-height: 18px;
    opacity: 0.8;
}

.menu-item-icon i {
    height: 2.5rem;
    width: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2.5rem;
    font-size: 18px;
    color: #fff;
}

.title-with-icon-link {
    display: inline-block;
    color: #475569;
    width: 100%;
}

.title-with-icon-link:hover .u-header__promo-title {
    color: #0948b3;
}

.title-with-icon-link:hover {
    background: #fafafa;
    border-radius: 0.375rem;
}

.menu-titile-icon {
    width: 100%;
    max-width: 2.5rem;
    padding: 5px;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
}

.product-menu-group li a {
    color: #898f98;
}

.product-menu-group li a:hover {
    color: #014cda;
}

.u-header__promo-title {
    display: block;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4rem;
}

.u-header__promo-text {
    display: block;
    color: #898f98;
}

small,
.small {
    font-size: 85%;
    font-weight: 400;
}

.u-header__promo-footer {
    background-color: #cbd5e1;
    border-radius: 0 0 10px 10px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.u-header__promo-footer-ver-divider {
    position: relative;
}

.u-header__promo-footer-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 767.98px) {

    .navbar-expand-md .custom-nav-link,
    .navbar-expand-md .sub-menu-nav-link {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .navbar-expand-md .main-link-toggle::after,
    .navbar-expand-md .sub-link-toggle::after {
        margin-left: auto;
    }

    .navbar-expand-md .hs-mega-menu-opened .custom-nav-link-toggle::after,
    .navbar-expand-md .hs-sub-menu-opened .custom-nav-link-toggle::after {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .navbar-expand-md .hs-sub-menu-opened>.sub-link-toggle::after {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .u-header--bg-transparent .main-navbar-nav {
        padding: 0.875rem 0;
        padding-top: 1rem;
    }

    .navbar-expand-md .sub-menu-title {
        padding-left: 1.5rem;
        margin-bottom: 0;
    }

    .u-header--bg-transparent .main-navbar-nav {
        background-color: #fff;
    }

    .navbar-expand-md .sub-menu-nav-group {
        padding-top: 0.5rem;
        padding-left: 1.5rem;
    }

    .navbar-expand-md .main-sub-menu:not(.u-header__promo) {
        border-left: 2px solid #0948b3;
    }

    .navbar-expand-md .main-sub-menu {
        min-width: 100% !important;
    }

    .navbar-expand-md .main-sub-menu .hs-has-sub-menu {
        padding-left: 1.5rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-expand-md .main-sub-menu .main-sub-menu,
    .main-sub-menu .submenu-item {
        padding-left: 1.5rem;
    }
}

.submenu-item a {
    border-left: 2px solid rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.submenu-item a:hover {
    border-color: #f67a3c;
}

.hs-mega-menu-opened a.custom-nav-link:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(-50%, 0) rotate(-315deg);
    transform: translate(-50%, 0) rotate(-315deg);
    border-radius: 3px;
    background-color: #fff;
}

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

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

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

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

.animated.slideDown {
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}

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

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

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

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

.animated.slideUp {
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.headroom {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.headroom--pinned {
    display: block;
}

.headroom--unpinned {
    display: none;
}

.headroom--pinned {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.headroom--unpinned {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

@media (min-width: 320px) and (max-width: 992px) {
    .navbar-expand-md .main-navbar-nav .custom-nav-link {
        padding-right: 0.4rem;
        padding-left: 0.4rem;
    }

    .ptb-100 {
        padding: 55px 0;
    }

    .pt-100 {
        padding-top: 55px;
    }

    .pb-100 {
        padding-bottom: 55px;
    }

    .pt-165 {
        padding-top: 100px;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
    .main-with-padding {
        padding-top: 92px !important;
    }

    .main-without-padding {
        padding-top: 36px !important;
    }

    .main-without-topbar {
        padding-top: 0 !important;
    }
}

.application-hosting {
    border-radius: 0 0 10px 10px;
    padding: 30px 25px;
    background-color: #0944a9;
}

.application-hosting-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    justify-items: center;
}

.application-hosting-list li {
    width: 100%;
}

.application-hosting-list li a {
    display: block;
    white-space: nowrap;
    padding: 10px 12px;
    text-align: left;
    border-radius: 4px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.application-hosting-list li a img {
    max-width: 20px;
    margin-right: 8px;
}

.application-hosting-list li a:hover {
    background: #022c4d;
}

.offcanvas-menu-wrap .dropdown-toggle:after {
    position: absolute;
    right: 0;
    top: 6px;
    content: "";
    font-family: "Font Awesome 6 Free";
    border: none;
    font-weight: 900;
}

.offcanvas-menu-wrap .u-header__product-banner,
.offcanvas-menu-wrap .application-hosting {
    border-radius: 0 0 3px 3px;
}

.offcanvas-menu-wrap .title-with-icon-link {
    padding: 12px 15px;
}

.offcanvas-menu-wrap small,
.offcanvas-menu-wrap .small {
    font-size: 95%;
}

.offcanvas-menu-wrap .dropdown-item {
    padding: 0.4rem 0.5rem;
}

.offcanvas-menu-wrap .navbar-nav .nav-link {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.offcanvas-menu-wrap .navbar-nav .dropdown-menu {
    position: relative !important;
    width: 100%;
    -webkit-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
    border: none;
    padding-top: 0;
}

.offcanvas-menu-wrap .navbar-nav .dropdown-menu .row {
    border: 1px solid rgba(148, 148, 148, 0.15);
    border-radius: 4px;
}

footer p {
    font-size: 14px;
}

footer ul {
    padding: 0;
}

footer ul li:not(:hover) {
    opacity: 0.8;
}

footer ul:not(.list-inline):not(.slides)>li {
    line-height: 30px !important;
}

footer ul:not([class*="menu"]) li>a:hover {
    text-decoration: none;
}

footer ul:not([class*="menu"]) li>a {
    font-weight: 400;
    font-size: 13px;
    display: block;
}

footer ul:not([class*="menu"]) li>a:hover {
    opacity: 1;
    color: inherit;
}

footer a {
    font-weight: normal;
    color: #cbd5e1;
}

.footer-1.gradient-bg p,
.footer-1.gradient-bg h6,
.footer-1.gradient-bg .h6 {
    color: #fff;
    opacity: 0.8;
}

.footer-1.gradient-bg ul li a {
    color: #fff;
    opacity: 0.8;
}

.footer-1.gradient-bg ul li a:hover {
    color: #fff;
    opacity: 1;
}

.small-text {
    font-size: 13px;
}

.small-text:not(p) {
    opacity: 1;
}

.footer-with-newsletter {
    margin-top: 80px;
}

.footer-with-newsletter .newsletter-wrap {
    margin-top: -136px;
    margin-bottom: 60px;
}

.newsletter-form .input-newsletter {
    height: 50px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 25px;
}

.newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    height: auto;
    border: none;
    border-radius: 30px;
    display: inline-block;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}

.newsletter-form button:focus {
    outline: none;
}

.terms-policy-wrap ul li a:hover {
    color: initial;
}

.copyright-text {
    font-size: 13px;
}

.social-list li a {
    padding: 6px 10px;
}

.footer-nav-list li a span {
    font-size: 12px;
    vertical-align: middle;
}

.bottom-sticky-footer {
    position: absolute;
    bottom: 1px;
    width: 100%;
    height: auto;
    z-index: 2;
}

.social-nav ul li a {
    color: #fff;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.tooltip-hover {
    position: relative;
}

.tooltip-hover a {
    display: block;
}

.tooltip-item {
    position: absolute;
    background-color: #333;
    pointer-events: none;
    color: #fff;
    font-size: 13px;
    bottom: 90%;
    left: 50%;
    opacity: 0;
    white-space: nowrap;
    visibility: hidden;
    z-index: 999;
    -webkit-box-shadow: #fef6e7;
    box-shadow: #fef6e7;
    -webkit-transform: translate3d(-50%, 0px, 0px);
    transform: translate3d(-50%, 0px, 0px);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    -webkit-transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.tooltip-item:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 6px solid #333;
    border-right: 6px solid rgba(0, 0, 0, 0);
    border-left: 6px solid rgba(0, 0, 0, 0);
}

.tooltip-hover:hover .tooltip-item {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    top: 100%;
    right: 50px;
    font-size: 16px;
    border-radius: 4px;
    z-index: 99;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    border: none;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0) 80%);
}

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

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

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

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

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

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

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

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

.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    top: 100%;
    right: 5%;
    font-size: 16px;
    border-radius: 4px;
    z-index: 99;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    border: none;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0) 80%);
}

.scroll-top.open {
    top: 90%;
    right: 5%;
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 0.9375rem;
    text-align: left;
    border: 0;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: blue;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    color: #fff;
}

.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "";
    float: right;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 30px;
    text-align: center;
    background-image: none;
    border-radius: 4px;
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
}

.accordion-flush .accordion-item:first-child {
    border-top: 0;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.how-it-work .accordion-button:after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.how-it-work .accordion-button:not(.collapsed):after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.gray-light-bg .faq-wrap .card .card-body {
    background: #fff !important;
}

.faq-wrap .card {
    border: 0;
}

.faq-wrap .card .card-header {
    padding: 0.95rem 1.25rem;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
    border-radius: 4px 4px 0 0;
    background: #0948b3;
    margin-bottom: 0;
    border: 1px solid #e2e8f0;
}

.faq-wrap .card .card-header h6,
.faq-wrap .card .card-header .h6 {
    color: #fff;
}

.faq-wrap .card .card-header.collapsed {
    background: rgba(0, 0, 0, 0);
}

.faq-wrap .card .card-header.collapsed h6,
.faq-wrap .card .card-header.collapsed .h6 {
    color: initial;
}

.faq-wrap .card .card-header.collapsed:after {
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: rgba(9, 72, 179, 0.008);
}

.faq-wrap .card .card-header:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "";
    color: #fff;
    float: right;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 30px;
    text-align: center;
    background: rgba(9, 72, 179, 0.0005);
    border-radius: 4px;
}

.faq-wrap .card .card-body {
    background: #f8fafc;
    border-radius: 0 0 4px 4px;
}

.single-faq h5 span,
.single-faq .h5 span {
    font-size: 22px;
    font-weight: 700;
}

.badge {
    line-height: inherit;
}

.badge.bg-secondary,
.badge.bg-light {
    color: #363636;
}

.bg-primary.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(9, 72, 179, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(9, 72, 179, 0.9);
}

.bg-accent.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(1, 76, 218, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(1, 76, 218, 0.9);
}

.bg-tertiary.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(246, 122, 60, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(246, 122, 60, 0.9);
}

.bg-secondary.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(250, 250, 250, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(250, 250, 250, 0.9);
}

.bg-success.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(75, 173, 68, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(75, 173, 68, 0.9);
}

.bg-info.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(56, 189, 248, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(56, 189, 248, 0.9);
}

.bg-warning.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(245, 158, 11, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(245, 158, 11, 0.9);
}

.bg-danger.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(255, 5, 5, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(255, 5, 5, 0.9);
}

.bg-light.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(255, 255, 255, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(255, 255, 255, 0.9);
}

.bg-dark.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(2, 52, 92, 0.9);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(2, 52, 92, 0.9);
}

.bg-secondary.badge-shadow,
.bg-light.badge-shadow {
    -webkit-box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.5rem 1.125rem -0.275rem rgba(0, 0, 0, 0.25);
}

.form-label {
    font-size: 0.87890625rem;
    font-family: "Inter", sans-serif;
}

input[type]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-select {
    font-size: 0.8203125rem;
}

input[type]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
select.form-select {
    font-size: 0.8203125rem;
}

input[type]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
select.form-select {
    font-size: 0.8203125rem;
}

input[type]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-select {
    font-size: 0.8203125rem;
}

button,
input[type="submit"],
input[type="reset"] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.form-control:disabled {
    cursor: not-allowed;
}

@keyframes animOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(35deg);
        transform: translate(73px, -1px) rotate(35deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(75deg);
        transform: translate(141px, 72px) rotate(75deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(110deg);
        transform: translate(83px, 122px) rotate(110deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(145deg);
        transform: translate(-40px, 72px) rotate(145deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes animOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(35deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(75deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(110deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(145deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
        transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
        transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
        transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
        transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

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

@-webkit-keyframes animTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

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

@keyframes animThree {
    0% {
        -webkit-transform: translate(165px, -179px);
        transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
        transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes animThree {
    0% {
        -webkit-transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
    }
}

@keyframes animFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
        transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
        transform: translate(251px, -200px) rotate(180deg);
    }
}

@-webkit-keyframes animFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
    }
}

@keyframes animFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
        transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
        transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
        transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
        transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
        transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
        transform: translate(-1px, 0px) rotate(180deg);
    }
}

@-webkit-keyframes animFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
    }
}

.animated-shape-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.animated-shape-wrap .animated-shape-item {
    position: absolute;
}

.animated-shape-wrap .animated-shape-item:nth-child(1) {
    background: rgba(0, 201, 157, 0.6);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 12%;
    left: 15%;
    -webkit-animation: animTwo 13s infinite linear;
    animation: animTwo 13s infinite linear;
}

.animated-shape-wrap .animated-shape-item:nth-child(2) {
    border: 5px solid rgba(0, 153, 229, 0.3);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 15%;
    left: 45%;
    -webkit-animation: animOne 15s infinite linear;
    animation: animOne 15s infinite linear;
}

.animated-shape-wrap .animated-shape-item:nth-child(3) {
    border: 5px solid rgba(244, 34, 104, 0.3);
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 30%;
    -webkit-animation: animFour 15s infinite linear alternate;
    animation: animFour 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(4) {
    background: rgba(252, 162, 73, 0.8);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 15%;
    right: 25%;
    -webkit-animation: animFive 15s infinite linear alternate;
    animation: animFive 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(5) {
    background: rgba(100, 45, 250, 0.4);
    width: 3px;
    height: 20px;
    top: 18%;
    right: 25%;
    -webkit-animation: animFour 15s infinite linear alternate;
    animation: animFour 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(5):before,
.animated-shape-wrap .animated-shape-item:nth-child(5):after {
    content: "";
    display: block;
    width: 100%;
    height: calc(50% - 2px);
    top: 6px;
    background: inherit;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.animated-shape-wrap .animated-shape-item:nth-child(5):before {
    right: -6px;
}

.animated-shape-wrap .animated-shape-item:nth-child(5):after {
    left: -6px;
}

.bg-image {
    position: relative;
}

.bg-image .background-image-wraper {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 0;
    transition: opacity 0.3s linear;
    -webkit-transition: opacity 0.3s linear;
    opacity: 0;
}

.bg-image .background-image-wraper img {
    display: none;
}

.bg-image .background-image-wraper:not([class*="col-"]) {
    width: 100%;
}

.light-bg-image {
    position: relative;
}

.light-bg-image .background-image-wraper {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 0;
    transition: opacity 0.3s linear;
    -webkit-transition: opacity 0.3s linear;
    opacity: 0;
}

.light-bg-image .background-image-wraper img {
    display: none;
}

.light-bg-image .background-image-wraper:not([class*="col-"]) {
    width: 100%;
}

[data-overlay] {
    position: relative;
}

[data-overlay]:before {
    position: absolute;
    content: "";
    background: linear-gradient(75deg, #820707, #013aa7) !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-top] {
    position: relative;
}

[data-overlay-top]:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80%;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(#1e293b),
            to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to bottom, #1e293b 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overly-bottom] {
    position: relative;
}

[data-overly-bottom]:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 80%;
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(rgba(0, 0, 0, 0)),
            to(#1e293b));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #1e293b 100%);
    bottom: 0;
    left: 0;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

[data-overlay-gradient] {
    position: relative;
}

[data-overlay-gradient]:before {
    position: absolute;
    content: "";
    background: #0948b3;
    background: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(5%, #0948b3),
            color-stop(95%, #014cda)) !important;
    background: linear-gradient(to right, #0948b3 5%, #014cda 95%) !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay="1"]:before,
[data-overly-top="1"]:before,
[data-overly-bottom="1"]:before,
[data-overlay-gradient="1"]:before {
    opacity: 0.1;
}

[data-overlay="2"]:before,
[data-overly-top="2"]:before,
[data-overly-bottom="2"]:before,
[data-overlay-gradient="2"]:before {
    opacity: 0.2;
}

[data-overlay="3"]:before,
[data-overly-top="3"]:before,
[data-overly-bottom="3"]:before,
[data-overlay-gradient="3"]:before {
    opacity: 0.3;
}

[data-overlay="4"]:before,
[data-overly-top="4"]:before,
[data-overly-bottom="4"]:before,
[data-overlay-gradient="4"]:before {
    opacity: 0.4;
}

[data-overlay="5"]:before,
[data-overly-top="5"]:before,
[data-overly-bottom="5"]:before,
[data-overlay-gradient="5"]:before {
    opacity: 0.5;
}

[data-overlay="6"]:before,
[data-overly-top="6"]:before,
[data-overly-bottom="6"]:before,
[data-overlay-gradient="6"]:before {
    opacity: 0.6;
}

[data-overlay="7"]:before,
[data-overly-top="7"]:before,
[data-overly-bottom="7"]:before,
[data-overlay-gradient="7"]:before {
    opacity: 0.7;
}

[data-overlay="8"]:before,
[data-overly-top="8"]:before,
[data-overly-bottom="8"]:before,
[data-overlay-gradient="8"]:before {
    opacity: 0.8;
}

[data-overlay="9"]:before,
[data-overly-top="9"]:before,
[data-overly-bottom="9"]:before,
[data-overlay-gradient="9"]:before {
    opacity: 0.9;
}

.bg-image.animated-color-bg>.background-image-wraper {
    opacity: 0.2 !important;
}

[data-overlay] *:not(.container):not(.background-image-wraper) {
    z-index: 2;
}

.bg-image .card-body {
    z-index: 2;
}

.hero-bottom-shape,
.hero-bottom-shape-two {
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-shape-img:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url("../img/about-bg-shape.html");
    background-repeat: no-repeat;
    background-size: cover;
}

.domain-search-wrap {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.1);
    /* margin-top: -100px */
}

.mt100 {
    margin-top: 100px;
}

.domain-search-form {
    width: 90%;
    margin: 0 auto;
    position: relative;
    height: calc(2.15em + 0.7rem);
    z-index: 9;
}

.domain-search-form input:not([type="submit"]) {
    width: 55%;
    height: 100%;
    border: none;
    padding-top: 10px;
    border-bottom: 2px solid blue;
}

.domain-search-form .select-group {
    position: absolute;
    right: 10px;
    height: 100%;
    width: 42%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
}

.select-group select.form-control {
    border: none;
    border-bottom: 2px solid #0948b3;
    width: 65%;
    height: inherit;
    padding: 5px;
}

.select-group button[type="submit"] {
    width: 100%;
    margin-left: 5px;
}

.domain-search-list {
    position: relative;
    display: block;
}

.domain-search-list li:not(:last-child) {
    margin-right: 0 !important;
    margin-bottom: 5px;
}

.domain-search-list li a {
    display: inline-block;
    padding: 0 6px;
    text-align: center;
    color: inherit;
    font-size: 12px;
    font-weight: 500;
}

.domain-search-list li a span {
    font-size: 15px;
    line-height: 15px;
    display: block;
    opacity: 0.7;
}

.uni_domain li button {
    font-size: 25px;
    border: 1px solid #ddd;
    border-bottom: 2px solid #888;
    background-color: #f4f4f4;
    padding: 0 15px;
}

.uni_domain li button:active,
.uni_domain li button:hover {
    background-color: #8244fd;
    color: #fff;
}

@media (min-width: 320px) and (max-width: 768px) {
    .domain-search-wrap {
        padding: 20px;
        border-radius: 10px;
        margin-top: 60px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .domain-search-form {
        width: 100%;
        height: auto;
    }

    .select-group select.form-control {
        height: calc(2.15em + 0.7rem);
    }

    .domain-search-form input:not([type="submit"]),
    .domain-search-form .select-group {
        width: 100%;
        height: calc(2.15em + 0.7rem);
    }

    .domain-search-form .select-group {
        position: relative;
        padding-top: 15px;
        right: auto;
    }

    .domain-list-wrap {
        display: none;
    }
}

.zindex-2 {
    z-index: 2;
}

.rounded-custom {
    border-radius: 1rem;
}

.promo-one-single {
    position: relative;
    display: block;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.promo-one-single a {
    text-decoration: none;
    position: absolute;
    right: 15px;
    bottom: -15px;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    -webkit-box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.12);
}

.promo-one-single:hover {
    background: linear-gradient(75deg, #073482, #013aa7) !important;
    color: #fff;
}

.promo-one-single:hover h5,
.promo-one-single:hover .h5 {
    color: #fff !important;
}

.promo-one-single:hover a {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.promo-one-single:hover a:hover {
    background: #f59e0b !important;
    color: #fff;
}

.mt-n-65 {
    margin-top: -65px;
}

.mt-n-90 {
    margin-top: -90px;
}

.mt-n-150 {
    margin-top: -150px;
}

.hosting-promo {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hosting-promo:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

.single-promo-card {
    border-radius: 1rem;
}

.single-promo-card.single-promo-hover {
    overflow: hidden;
    z-index: 1;
}

.single-promo-card.single-promo-hover:hover {
    color: #fff;
}

.single-promo-card.single-promo-hover:hover span,
.single-promo-card.single-promo-hover:hover h5,
.single-promo-card.single-promo-hover:hover .h5 {
    color: #fff !important;
}

.single-promo-card.single-promo-hover:hover:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: red;
}

.single-promo-card.single-promo-hover:before {
    content: "";
    position: absolute;
    right: -55px;
    width: 95px;
    height: 95px;
    bottom: -50px;
    border-radius: 35px;
    background-color: red;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.single-promo-card.single-promo-hover-2:hover {
    background-color: red;
    color: #fff;
}

.single-promo-card.single-promo-hover-2:hover span,
.single-promo-card.single-promo-hover-2:hover h5,
.single-promo-card.single-promo-hover-2:hover .h5 {
    color: #fff !important;
}

.headline {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 0 15px 0 0;
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    font-size: 14px;
}

.headline i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background:  blue;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: 0.5s;
}

@-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.hero-slider-content h1,
.hero-slider-content .h1 {
    font-weight: 700;
}

.single-counter-item span.h4 {
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}

.single-counter-item h6,
.single-counter-item .h6 {
    font-size: 13px;
    font-weight: 500;
}

.hero-equal-height {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

@media (min-width: 320px) and (max-width: 768px) {
    .hero-equal-height {
        min-height: auto;
    }
}

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.custom-dot.owl-theme .owl-dots {
    position: absolute;
    bottom: 15px;
}

.custom-dot.dot-bottom-center.owl-theme .owl-dots {
    width: 100%;
}

.custom-dot.dot-bottom-center.owl-theme .owl-dots button {
    margin: 0 4px;
}

.client-testimonial-1.dot-bottom-center .owl-dots,
.client-testimonial-2.dot-bottom-center .owl-dots {
    bottom: -25px !important;
}

.custom-dot.owl-theme .owl-dots button {
    border-radius: 100%;
}

.owl-theme .owl-dots button:focus {
    outline: none;
}

.custom-dot.owl-theme .owl-dots button.owl-dot.active,
.custom-dot.owl-theme .owl-dots button.owl-dot span {
    background: #e2e8f0;
}

.custom-dot.owl-theme .owl-dots button.owl-dot span:hover {
    background: #f67a3c;
}

.custom-dot.owl-theme .owl-dots button.owl-dot.active span {
    background: #f67a3c;
}

.custom-dot.owl-theme .owl-dots .owl-dot span {
    margin: 2px;
}

.big-price-wrap span.regular-price {
    position: absolute;
    left: 45%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -20%;
    font-size: 14px;
    color: #fefefe !important;
}

@media (min-width: 990px) and (max-width: 1280px) {
    .big-price-wrap span.regular-price {
        bottom: -10%;
    }
}

@media (min-width: 320px) and (max-width: 989px) {
    .big-price-wrap span.regular-price {
        bottom: -5%;
    }
}

.price-block .offer-price {
    font-weight: 700;
    font-size: 20rem;
    line-height: 15rem;
    font-family: "Inter", sans-serif;
}

.price-block .price-currency {
    font-weight: 700;
    font-size: 4rem;
    line-height: 3rem;
    font-family: "Inter", sans-serif;
}

.price-block .cent-value {
    font-weight: 700;
    font-size: 5rem;
    line-height: 4rem;
    font-family: "Inter", sans-serif;
}

.price-block .right-block {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.price-block .per-value {
    font-size: 2rem;
}

@media (min-width: 990px) and (max-width: 1280px) {
    .price-block .offer-price {
        font-size: 14rem;
    }

    .price-block .price-currency {
        font-size: 3rem;
        line-height: 6rem;
    }

    .price-block .cent-value {
        font-size: 3rem;
        line-height: inherit;
    }

    .price-block .per-value {
        line-height: 4rem;
    }
}

@media (min-width: 320px) and (max-width: 989px) {
    .price-block .offer-price {
        font-size: 10rem;
    }

    .price-block .price-currency {
        font-size: 2rem;
        line-height: 7rem;
    }

    .price-block .cent-value {
        font-size: 2rem;
        line-height: 7rem;
    }

    .price-block .per-value {
        line-height: 7rem;
    }
}

.custom-overlay:before {
    position: absolute;
    content: "";
    background: #0948b3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.9;
}

.big-text {
    position: relative;
    font-size: 120px;
    line-height: 130px;
    font-weight: 700;
}

.big-text span {
    position: absolute;
    font-size: 16px;
    top: -65px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .big-text {
        font-size: 60px;
        line-height: 80px;
    }

    .big-text span {
        top: -35px;
    }
}

.single-offer-box {
    background: rgb(255 214 214 / 25%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    margin: 20px 0;
    border-radius: 1rem;
    box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.single-offer-box .offer-header {
    width: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.9rem 0.9rem 0 0;
    font-size: 14px;
}

.single-offer-box .offer-content {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    padding: 5px 5px 20px;
}

.single-offer-box .offer-content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.single-offer-box .offer-content .starting-price small,
.single-offer-box .offer-content .starting-price .small {
    font-weight: 400;
    font-size: 55%;
    margin-right: 2px;
}

.single-offer-box .save-now-btn {
    position: absolute;
    bottom: -16px;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media (min-width: 320px) and (max-width: 575px) {
    .single-offer-box .save-now-btn {
        font-size: 10px;
    }

    .single-offer-box .save-now-btn i {
        display: none;
    }
}

.single-offer-wrap {
    width: 310px;
    height: 310px;
    background: #f8fafc;
    border-radius: 100%;
    text-align: center;
    position: relative;
}

@media (min-width: 320px) and (max-width: 575px) {
    .single-offer-wrap {
        width: 280px;
        height: 280px;
        margin: auto;
    }
}

.single-offer-wrap .offer-content-wrap {
    background: #f67a3c;
    border: 1px dashed #fff;
    padding: 15%;
    border-radius: 100%;
    width: 90%;
    height: 90%;
}

.single-offer-wrap .offer-header {
    border-radius: 30px;
    position: relative;
    background: rgba(0, 0, 0, 0.55);
}

.single-offer-wrap .offer-header .triangle {
    display: block;
    height: 0;
    width: 0;
    border: 10px solid rgba(0, 0, 0, 0);
    border-top-color: rgba(0, 0, 0, 0.55);
    position: absolute;
    bottom: -20px;
    left: calc(50% - 10px);
}

.single-offer-wrap .offer-content .starting-price {
    font-size: 65px;
}

.single-offer-wrap .offer-content .starting-price small,
.single-offer-wrap .offer-content .starting-price .small {
    font-size: 35%;
}

.hero-content-wrap {
    position: relative;
    display: block;
}

.offer-text {
    position: relative;
    font-size: 100px;
    line-height: 110px;
    font-weight: 700;
}

.offer-text span {
    position: absolute;
    font-size: 16px;
    top: -55px;
    left: 10px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .offer-text {
        font-size: 60px;
        line-height: 80px;
    }

    .offer-text span {
        top: -35px;
    }
}

.limited-time-text {
    background: #ff0505;
    border-radius: 35px 0 35px 0;
    position: absolute;
}

.hero-overlay-dark:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(2, 52, 92, 0.75);
}

.background-video-overly {
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(2, 52, 92, 0.64)),
            color-stop(rgba(2, 52, 92, 0.65)),
            color-stop(rgba(2, 52, 92, 0.72)),
            color-stop(rgba(2, 52, 92, 0.62)),
            to(rgba(2, 52, 92, 0.6)));
    background-image: linear-gradient(to right,
            rgba(2, 52, 92, 0.64),
            rgba(2, 52, 92, 0.65),
            rgba(2, 52, 92, 0.72),
            rgba(2, 52, 92, 0.62),
            rgba(2, 52, 92, 0.6));
}

.fit-cover {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.z--1 {
    z-index: -1;
}

.custom-indicators {
    top: -46px;
    z-index: 2;
}

.custom-indicators li {
    min-width: 200px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.custom-indicators li button {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 100%;
    padding: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px 4px 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.custom-indicators li button:focus {
    outline: none;
}

.custom-indicators li.active button {
    background: #fff;
    color: #02345c;
}

.gradient-overly-right-light,
.gradient-overly-right-color,
.gradient-overly-left,
.gradient-overly-bottom,
.gradient-overly-top {
    z-index: 1;
    width: 100%;
    min-width: 100%;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.gradient-overly-right-light:before,
.gradient-overly-right-color:before,
.gradient-overly-left:before,
.gradient-overly-bottom:before,
.gradient-overly-top:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.gradient-overly-right-light:before {
    background: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(30%, #fafafa),
            to(rgba(26, 44, 121, 0.18)));
    background: linear-gradient(to right,
            #fafafa 30%,
            rgba(26, 44, 121, 0.18) 100%);
}

.gradient-overly-right-color:before {
    background: -webkit-gradient(linear,
            left top,
            right top,
            color-stop(30%, #02345c),
            to(rgba(26, 44, 121, 0.18)));
    background: linear-gradient(to right,
            #02345c 30%,
            rgba(26, 44, 121, 0.18) 100%);
}

.gradient-overly-left:before {
    background: -webkit-gradient(linear,
            right top,
            left top,
            color-stop(30%, #02345c),
            to(rgba(26, 44, 121, 0.18)));
    background: linear-gradient(to left,
            #02345c 30%,
            rgba(26, 44, 121, 0.18) 100%);
}

.gradient-overly-bottom:before {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            color-stop(45%, #0948b3),
            to(rgba(26, 44, 121, 0.18)));
    background: linear-gradient(to bottom,
            #0948b3 45%,
            rgba(26, 44, 121, 0.18) 100%);
}

.gradient-overly-top:before {
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(35%, #0948b3),
            to(rgba(26, 44, 121, 0.18)));
    background: linear-gradient(to top,
            #0948b3 35%,
            rgba(26, 44, 121, 0.18) 100%);
}

.owl-carousel .owl-item .single-order-wrap {
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.001);
    box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.001);
}

.owl-carousel .owl-item .single-order-wrap img {
    width: 160px;
    margin: auto;
}

@media (min-width: 1300px) and (max-width: 1920px) {
    .img-custom-width {
        min-width: 720px;
    }
}

.btn-accent:hover,
.btn-accent:active,
.btn-accent:focus,
.btn-accent.active,
.btn-accent.show {
    border-color: #01379d;
    background-color: #01379d;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary.active,
.btn-secondary.show {
    border-color: #dbdbdb;
    background-color: #dbdbdb;
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-success.active,
.btn-success.show {
    border-color: #388133;
    background-color: #388133;
}

.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-info.active,
.btn-info.show {
    border-color: #08a5eb;
    background-color: #08a5eb;
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning:focus,
.btn-warning.active,
.btn-warning.show {
    border-color: #bb7808;
    background-color: #bb7808;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus,
.btn-danger.active,
.btn-danger.show {
    border-color: #c70000;
    background-color: #c70000;
}

.btn-light:hover,
.btn-light:active,
.btn-light:focus,
.btn-light.active,
.btn-light.show {
    border-color: #e0e0e0;
    background-color: #e0e0e0;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus,
.btn-dark.active,
.btn-dark.show {
    border-color: #011220;
    background-color: #011220;
}

.btn-light:hover,
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled).show {
    border-color: #fff;
    background-color: #fff;
}

.btn-outline-primary {
    border-color: rgba(9, 72, 179, 0.35);
}

.btn-outline-accent {
    border-color: rgba(1, 76, 218, 0.35);
}

.btn-outline-tertiary {
    border-color: rgba(246, 122, 60, 0.35);
}

.btn-outline-secondary {
    border-color: rgba(250, 250, 250, 0.35);
}

.btn-outline-success {
    border-color: rgba(75, 173, 68, 0.35);
}

.btn-outline-info {
    border-color: rgba(56, 189, 248, 0.35);
}

.btn-outline-warning {
    border-color: rgba(245, 158, 11, 0.35);
}

.btn-outline-danger {
    border-color: rgba(255, 5, 5, 0.35);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-dark {
    border-color: rgba(2, 52, 92, 0.35);
}

[class^="btn-outline-"]:hover,
[class^="btn-outline-"]:active,
[class^="btn-outline-"].active,
[class^="btn-outline-"].show,
[class*=" btn-outline-"]:hover,
[class*=" btn-outline-"]:active,
[class*=" btn-outline-"].active,
[class*=" btn-outline-"].show {
    color: #fff !important;
}

.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.show {
    color: #475569 !important;
}

.btn-outline-secondary {
    border-color: #cbd5e1;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.show {
    border-color: #cbd5e1 !important;
    color: #475569 !important;
}

.btn-shadow:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-primary.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(9, 72, 179, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(9, 72, 179, 0.5);
}

.btn-accent.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(1, 76, 218, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(1, 76, 218, 0.5);
}

.btn-tertiary.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(246, 122, 60, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(246, 122, 60, 0.5);
}

.btn-secondary.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(250, 250, 250, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(250, 250, 250, 0.5);
}

.btn-success.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(75, 173, 68, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(75, 173, 68, 0.5);
}

.btn-info.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(56, 189, 248, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(56, 189, 248, 0.5);
}

.btn-warning.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(245, 158, 11, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(245, 158, 11, 0.5);
}

.btn-danger.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(255, 5, 5, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(255, 5, 5, 0.5);
}

.btn-light.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(255, 255, 255, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(255, 255, 255, 0.5);
}

.btn-dark.btn-shadow {
    -webkit-box-shadow: 0 0.5rem 1rem -0.35rem rgba(2, 52, 92, 0.5);
    box-shadow: 0 0.5rem 1rem -0.35rem rgba(2, 52, 92, 0.5);
}

.read-more-link {
    font-weight: 500;
    font-family: "Inter", sans-serif;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.read-more-link i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.read-more-link:hover i {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}

.tooltip {
    z-index: 9;
}

.network-map-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.network-map-wrap ul li {
    position: absolute;
    z-index: 1;
    width: 10px;
    height: 10px;
    margin: -6px;
    background-color: #014cda;
    border-radius: 50%;
}

.network-map-wrap ul li span {
    display: block;
    width: 10px;
    height: 10px;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
    -webkit-transition: 0.5s linear;
    border-radius: 50%;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 115, 236, 0.1),
            0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1);
        box-shadow: 0 0 0 0 rgba(0, 115, 236, 0.1),
            0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(0, 115, 236, 0.1),
            0 0 0 20px rgba(0, 115, 236, 0.1), 0 0 0 30px rgba(0, 115, 236, 0);
        box-shadow: 0 0 0 10px rgba(0, 115, 236, 0.1),
            0 0 0 20px rgba(0, 115, 236, 0.1), 0 0 0 30px rgba(0, 115, 236, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 115, 236, 0.1),
            0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1);
        box-shadow: 0 0 0 0 rgba(0, 115, 236, 0.1),
            0 0 0 10px rgba(0, 115, 236, 0.1), 0 0 0 20px rgba(0, 115, 236, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(0, 115, 236, 0.1),
            0 0 0 20px rgba(0, 115, 236, 0.1), 0 0 0 30px rgba(0, 115, 236, 0);
        box-shadow: 0 0 0 10px rgba(0, 115, 236, 0.1),
            0 0 0 20px rgba(0, 115, 236, 0.1), 0 0 0 30px rgba(0, 115, 236, 0);
    }
}

.testimonial-content-wrap {
    position: relative;
}

.testimonial-content-wrap .testimonial-tb-shape {
    position: absolute;
}

.testimonial-content-wrap .testimonial-tb-shape.shape-top {
    top: -60px;
    right: 20%;
}

.testimonial-content-wrap .testimonial-tb-shape.shape-bottom {
    bottom: -88px;
    right: 50%;
}

.testimonial-content-wrap .testimonial-shape:before {
    content: "";
    position: absolute;
    top: 60px;
    left: 20px;
    width: 99%;
    height: 69%;
    background: #f59e0b;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
    z-index: -1;
    border-radius: 4px;
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap {
    background: #014cda;
    padding: 30px 40px;
    z-index: 4;
    margin-top: 30px;
    border-radius: 4px;
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .author-img {
    border-radius: 4px;
    border: 4px solid #fff;
    width: 100px;
    position: absolute;
    top: 0;
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .media-body {
    position: relative;
    left: 120px;
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info i {
    font-size: 40px;
}

.single-review-wrap {
    border-radius: 20px;
}

.single-review-wrap .review-body p {
    height: 106px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (min-width: 320px) and (max-width: 768px) {
    .single-review-wrap .review-body p {
        height: 96px;
    }
}

.single-review-wrap .review-top span.ratting-color {
    font-size: 16px;
    font-weight: 700;
    color: #f59e0b;
}

.single-review-wrap .review-author {
    margin-left: 15px;
}

.single-review-wrap .review-author .author-avatar {
    width: 64px;
    height: 64px;
    line-height: 64px;
    margin-right: 10px;
    position: relative;
}

.single-review-wrap .review-author .author-avatar span {
    background-color: #014cda;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    line-height: 55px;
    border-radius: 100%;
    font-size: 48px;
    position: absolute;
    top: 0;
    left: -16px;
}

@media (min-width: 320px) and (max-width: 1199px) {

    .testimonial-content-wrap .testimonial-tb-shape.shape-top,
    .testimonial-content-wrap .testimonial-tb-shape.shape-bottom {
        display: none;
    }
}

@media (min-width: 320px) and (max-width: 991px) {

    .author-info i,
    .testimonial-shape:before {
        display: none;
    }
}

.single-customer {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-align: center;
    justify-items: center;
    height: auto;
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
    margin: 8px auto;
}

.single-customer img {
    max-width: 100%;
    max-height: 100%;
    -webkit-filter: opacity(50%);
    filter: opacity(90%);
    width: 100%;
}

.single-customer:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.single-customer:hover.customer-logo {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.card-bottom-line {
    min-height: 285px;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    -webkit-transition: background 0.3s ease-in-out,
        -webkit-box-shadow 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
        -webkit-box-shadow 0.3s ease-in-out;
    box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.card-bottom-line:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0948b3;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.partner-logo img {
    max-width: 125px;
}

.card-bottom-line:hover:after {
    width: 100%;
}

a.view-details-link {
    font-size: 14px;
    font-weight: 500;
}

a.view-details-link span {
    padding-left: 2px;
    font-size: 12px;
    vertical-align: middle;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

a.view-details-link:hover span {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
    margin-left: 6px;
}

.icon-size-xs {
    font-size: 22px;
}

.icon-size-sm {
    font-size: 26px;
}

.icon-size-default {
    font-size: 30px;
}

.icon-size-md {
    font-size: 38px;
}

.icon-size-lg {
    font-size: 46px;
}

@-webkit-keyframes topToBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }

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

    51% {
        opacity: 1;
    }
}

@keyframes topToBottom {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

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

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes bottomToTop {
    49% {
        -webkit-transform: translateY(100%);
    }

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

    51% {
        opacity: 1;
    }
}

@keyframes bottomToTop {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

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

    51% {
        opacity: 1;
    }
}

.btn-facebook {
    background-color: #3b5999;
    border-color: #3b5999;
    color: #fff;
}

.btn-facebook:hover {
    background-color: #2d4474;
    border-color: #2d4474;
    color: #fff;
}

.btn-facebook.btn-transparent {
    background-color: rgba(59, 89, 153, 0.7);
    border-color: rgba(0, 0, 0, 0);
    color: #fff;
}

.btn-facebook.btn-transparent:hover {
    background-color: rgba(59, 89, 153, 0.9);
}

.btn-twitter {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.btn-twitter:hover {
    background-color: #4db5f5;
    border-color: #4db5f5;
    color: #fff;
}

.btn-twitter.btn-transparent {
    background-color: rgba(29, 161, 242, 0.7);
    border-color: rgba(0, 0, 0, 0);
    color: #fff;
}

.btn-twitter.btn-transparent:hover {
    background-color: rgba(29, 161, 242, 0.9);
}

.btn-google {
    background-color: #dd4b39;
    border-color: #dd4b39;
    color: #fff;
}

.btn-google:hover {
    background-color: #c23321;
    border-color: #c23321;
    color: #fff;
}

.btn-google.btn-transparent {
    background-color: rgba(221, 75, 57, 0.7);
    border-color: rgba(0, 0, 0, 0);
    color: #fff;
}

.btn-google.btn-transparent:hover {
    background-color: rgba(71, 85, 105, 0.9);
}

.btn-instagram {
    background-color: #e4405f;
    border-color: #e4405f;
    color: #fff;
}

.btn-instagram:hover {
    background-color: #d31e40;
    border-color: #d31e40;
    color: #fff;
}

.btn-instagram.btn-transparent {
    background-color: rgba(228, 64, 95, 0.7);
    border-color: rgba(0, 0, 0, 0);
    color: #fff;
}

.btn-instagram.btn-transparent:hover {
    background-color: rgba(228, 64, 95, 0.9);
}

.btn.facebook-bg,
.btn.linkedin-bg,
.btn.twitter-bg,
.btn.instagram-bg,
.btn.googleplus-bg,
.btn.pinterest-bg,
.btn.dribbble-bg,
.btn.behance-bg,
.btn.dark-bg {
    border-color: rgba(0, 0, 0, 0) !important;
}

.btn.facebook-bg,
.btn.linkedin-bg,
.btn.twitter-bg,
.btn.instagram-bg,
.btn.googleplus-bg,
.btn.pinterest-bg,
.btn.dribbble-bg,
.btn.behance-bg,
.btn.dark-bg {
    color: #fff;
}

.btn.facebook-bg i,
.btn.linkedin-bg i,
.btn.twitter-bg i,
.btn.instagram-bg i,
.btn.googleplus-bg i,
.btn.pinterest-bg i,
.btn.dribbble-bg i,
.btn.behance-bg i,
.btn.dark-bg i {
    color: #fff;
}

.btn.facebook-bg:hover,
.btn.linkedin-bg:hover,
.btn.twitter-bg:hover,
.btn.instagram-bg:hover,
.btn.googleplus-bg:hover,
.btn.pinterest-bg:hover,
.btn.dribbble-bg:hover,
.btn.behance-bg:hover,
.btn.dark-bg:hover {
    opacity: 0.9;
}

.facebook-color {
    color: #3b5999;
}

.twitter-color {
    color: #1da1f2;
}

.googleplus-color {
    color: #dd4b39;
}

.instagram-color {
    color: #e4405f;
}

.pinterest-color {
    color: #bd081c;
}

.dribbble-color {
    color: #ea4c89;
}

.behance-color {
    color: #0057ff;
}

.linkedin-color {
    color: #0077b5;
}

.facebook-bg {
    background: #3b5999;
    color: #fff;
}

.twitter-bg {
    background: #1da1f2;
    color: #fff;
}

.googleplus-bg {
    background: #dd4b39;
    color: #fff;
}

.instagram-bg {
    background: #e4405f;
    color: #fff;
}

.pinterest-bg {
    background: #bd081c;
    color: #fff;
}

.dribbble-bg {
    background: #ea4c89;
    color: #fff;
}

.behance-bg {
    background: #0057ff;
    color: #fff;
}

.linkedin-bg {
    background: #0077b5;
    color: #fff;
}

.icon-btn {
    padding-left: 4.57142857em;
}

.icon-btn i {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 13px;
    border-radius: 6px 0 0 6px;
    line-height: 38px;
}

.icon-btn-hover {
    border-radius: 0.3125rem;
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    border: none;
    overflow: hidden;
    text-decoration: none !important;
    line-height: 3.11714286em;
    padding: 0 0 0 3.58571429em;
    width: 14.375rem;
    text-align: center;
    position: relative;
    display: inline-block;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
}

.icon-btn-hover i {
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    width: 3.125rem;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 13px;
    border-radius: 4px 0 0 4px;
    line-height: inherit;
}

.icon-btn-hover:hover {
    padding: 0;
}

.icon-btn-hover:hover i {
    left: -3.125rem;
}

.icon-btn-hover.hover-style-1 {
    border-radius: 0.3125rem;
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    border: none;
    overflow: hidden;
    width: 14.375rem;
    line-height: 3.11714286em;
    padding: 0 3.125rem 0 0;
    text-align: center;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
}

.icon-btn-hover.hover-style-1 i {
    left: auto;
    right: 0 !important;
    top: 0;
}

.icon-btn-hover.hover-style-1:hover {
    padding: 0;
}

.icon-btn-hover.hover-style-1:hover i {
    right: -3.125rem !important;
}

.social-list-default li a {
    display: block;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    height: 32px;
    width: 32px;
    line-height: 32px;
    border-radius: 4px;
    font-size: 1rem;
}

.social-list-default li a {
    color: #64748b;
}

.social-list-default li:not(:hover) {
    opacity: 1;
}

.social-list-default .list-inline-item:not(:last-child) {
    margin-right: 0.3rem;
}

.social-hover-2 li:hover a {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #fff !important;
    border-radius: 100%;
}

.social-hover-2 li:hover button.facebook,
.social-hover-2 li:hover button.messenger {
    background: #1877f2;
    color: #fff !important;
}

.social-hover-2 li:hover button.twitter {
    background: #1da1f2;
    color: #fff !important;
}

.social-hover-2 li:hover button.google {
    background: #dd4b39;
    color: #fff !important;
}

.social-hover-2 li:hover button.whatsapp {
    background: #25d366;
    color: #fff !important;
}

.social-hover-2 li:hover button.copy {
    background: #444;
    color: #fff !important;
}

.social-hover-2 li:hover button.dribbble {
    background: #ea4c89;
    color: #fff !important;
}

.social-hover-2 li:hover button.linkedin {
    background: #0077b5;
    color: #fff !important;
}

.social-hover-2 li:hover button.instagram {
    background: #e4405f;
    color: #fff !important;
}

.social-hover-2 li:hover button.youtube {
    background: #cd201f;
    color: #fff !important;
}

.social-hover-2 li:hover button.behance {
    background: #0057ff;
    color: #fff !important;
}

.background-color.social-hover-2 li button.facebook {
    background: #3b5999;
    color: #fff !important;
}

.background-color.social-hover-2 li button.twitter {
    background: #1da1f2;
    color: #fff !important;
}

.background-color.social-hover-2 li button.google {
    background: #dd4b39;
    color: #fff !important;
}

.background-color.social-hover-2 li button.dribbble {
    background: #ea4c89;
    color: #fff !important;
}

.background-color.social-hover-2 li button.linkedin {
    background: #0077b5;
    color: #fff !important;
}

.background-color.social-hover-2 li button.instagram {
    background: #e4405f;
    color: #fff !important;
}

.background-color.social-hover-2 li button {
    background: #cd201f;
    color: #fff !important;
}

.background-color.social-hover-2 li button.reddit {
    background: #e84422;
    color: #fff !important;
}

.background-color.social-hover-2 li button.behance {
    background: #0057ff;
    color: #fff !important;
}

.background-color.social-hover-2 li button.dropbox {
    background: #1e90ff;
    color: #fff !important;
}

.background-color.social-hover-2 li button.github {
    background: #222;
    color: #fff !important;
}

.background-color.social-hover-2 li button.pinterest {
    background: #bd081c;
    color: #fff !important;
}

.single-service .service-header span.h5 {
    font-size: 14px;
    color: #9c9c9c;
}

.single-game-hosting {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.single-game-hosting .img-overlay {
    background: rgba(2, 52, 92, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.single-game-hosting img {
    position: relative;
    display: block;
    width: 100%;
}

.single-game-hosting .game-hosting-name {
    position: absolute;
    z-index: 1;
    bottom: -60px;
    left: 0;
    right: 0;
    padding: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-game-hosting .game-hosting-name h3,
.single-game-hosting .game-hosting-name .h3 {
    color: #fff;
}

.single-game-hosting .game-hosting-name span {
    color: #fff;
    opacity: 0.65;
    font-size: 14px;
}

.single-game-hosting .game-hosting-name a {
    margin-top: 15px;
}

.single-game-hosting:hover .img-overlay {
    opacity: 0;
}

.single-game-hosting:hover .game-hosting-name {
    background: rgba(2, 52, 92, 0.6);
    bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.single-game-hosting:hover .game-hosting-name span {
    opacity: 1;
}

.application-icon-wrap {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.application-icon-wrap .read-more-link {
    display: inline-block;
}

.application-icon-wrap .read-more-link a {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #0948b3;
}

.application-icon-wrap .read-more-link a i {
    margin-left: 10px;
    margin-right: 0;
    font-size: 14px;
    position: relative;
    text-align: left;
}

.application-icon-wrap:hover {
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}

.application-icon-wrap:hover .read-more-link a {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #0948b3;
    color: #fff;
}

.app-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-items: center;
    position: relative;
    z-index: 10;
}

.app-list li {
    width: 100%;
}

.app-list li img {
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin: auto;
}

.app-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    white-space: nowrap;
    padding: 30px;
    border-radius: 15px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.app-list li a span {
    margin-top: 12px;
}

.app-list li a:hover {
    background: #035698;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.app-list.operating-list li img {
    width: 85px;
    height: auto;
    line-height: inherit;
}

.features-single-wrap span {
    font-size: 24px;
    color: #0948b3;
    background: #8fb6fe;
}

.features-box {
    position: relative;
    display: block;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
}

.features-box-content p:last-child {
    margin-bottom: 0;
}

ul.disc-style {
    list-style-type: disc;
    padding: 0 0 0 18px;
}

ul.disc-style li {
    font-size: 14px;
    margin-bottom: 10px;
}

.single-popular-domain img {
    display: inline-block;
    max-width: 100px;
    min-height: 13px;
    max-height: 34px;
}

.single-popular-domain span.badge {
    right: 10%;
    top: 10%;
}

.domain-price-list .domain-old-price {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.7;
}

.domain-price-list .domain-new-price {
    font-size: 22px;
    line-height: initial;
    font-weight: 700;
}

.domain-list {
    position: relative;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-auto-flow: dense;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.custom-shadow {
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-radius: 1.5rem !important;
}

.custom-shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125) !important;
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125) !important;
}

.domain-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    margin: 20px;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.domain-list li a {
    padding: 15px;
}

@media (min-width: 320px) and (max-width: 1199px) {
    .domain-list li {
        margin-bottom: 0 !important;
    }
}

.single-domain img {
    display: inline-block;
    max-width: 100px;
    min-height: 13px;
    max-height: 34px;
}

.domain-price h6,
.domain-price .h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.domain-price h6 span.badge,
.domain-price .h6 span.badge {
    font-size: 10px;
    padding: 1px 4px;
}

.old-price {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    text-decoration: line-through;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    font-family: themify;
    content: "";
    font-size: 10px;
    padding-top: 5px;
    opacity: 0.7;
    color: inherit;
}

.custom-breadcrumb ol li a,
.custom-breadcrumb ol li.breadcrumb-item.active {
    opacity: 0.7;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.65rem;
    color: #64748b;
    content: "/";
}

.custom-breadcrumb ol li.list-inline-item:not(:last-child) {
    margin-right: 0;
}

.custom-breadcrumb ol li.breadcrumb-item {
    padding-left: 0;
}

.check-list-wrap {
    margin-top: -0.5em;
    margin-bottom: -0.5em;
}

.check-list-wrap li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.875rem;
    line-height: inherit;
}

.check-list-wrap li span {
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.check-list-wrap li:before {
    position: absolute;
    top: 10px;
    left: 0;
    font-family: "Font Awesome 6 Free";
    content: "";
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #0948b3;
}

.check-list-wrap.list-two-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
}

.check-list-wrap.list-two-col li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
    padding-right: 15px;
}

.list-with-icon li .list-icon-box {
    height: 65px;
    width: 65px;
    color: #f59e0b;
    margin-bottom: 0;
}

.dot-circle li {
    position: relative;
    list-style: none;
    padding-left: 25px;
    margin-bottom: 10px;
}

.dot-circle li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 14px;
    background: #0948b3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (min-width: 320px) and (max-width: 767px) {
    .list-tow-col li {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
}

.contact-info-list {
    padding: 0;
}

input::-webkit-input-placeholder {
    position: relative;
    top: -1.6px;
}

input:-ms-input-placeholder {
    position: relative;
    top: -1.6px;
}

input::-ms-input-placeholder {
    position: relative;
    top: -1.6px;
}

input::-moz-placeholder {
    position: relative;
    top: -1.6px;
}

input::placeholder {
    position: relative;
    top: -1.6px;
}

.google-map {
    height: 100%;
    margin-bottom: -8px;
}

.google-map iframe {
    width: 100%;
    border: 0;
    -webkit-filter: grayscale(99%);
    -webkit-backface-visibility: hidden;
}

.contact-us-form-wrap {
    border-radius: 20px;
    padding: 65px 60px;
}

.contact-us-content {
    border-radius: 20px;
    position: relative;
    padding: 40px;
}

.form-control {
    height: calc(2em + 0.7rem + 4px);
    font-size: 14px;
}

.form-control:focus,
.form-control:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

*::-webkit-input-placeholder {
    color: #64748b !important;
    font-size: 14px;
}

*::-moz-placeholder {
    color: #64748b !important;
    font-size: 14px;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #64748b !important;
    font-size: 14px;
}

*::-ms-input-placeholder {
    color: #64748b !important;
    font-size: 14px;
}

*::placeholder {
    color: #64748b !important;
    font-size: 14px;
}

@media (min-width: 320px) and (max-width: 767px) {

    .contact-us-form-wrap,
    .contact-us-content {
        padding: 20px;
    }

    .contact-us-content {
        width: auto;
        left: 0;
        right: 0;
        position: inherit;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .contact-us-content {
        max-width: 350px;
        right: -53%;
        top: 8%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact-us-content {
        max-width: 420px;
        right: -35%;
        top: 10%;
    }
}

.single-blog-article .article-heading span {
    font-size: 12px;
    color: #898f98;
}

.single-blog-article .border-shape {
    width: 100px;
    height: 2px;
    position: relative;
    z-index: 1;
    display: block;
}

.single-blog-article .border-shape:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50%;
    border-bottom: 2px solid #0948b3;
}

.single-blog-article p {
    color: #475569;
}

.single-blog-article .article-footer .article-comments,
.single-blog-article .article-footer .article-user {
    font-size: 12px;
    color: #898f98;
}

.single-blog-article .article-footer .article-user span {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: #014cda;
    color: #fff;
    border-radius: 4px;
}

.row-post-thumbnail .post {
    border: 0;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.post {
    border-bottom: 1px solid #e2e8f0;
    padding: 0 0 35px;
    margin: 0 0 45px;
}

.post-preview {
    padding-bottom: 5px;
    border-radius: 0.1875rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-preview img {
    border-radius: 0.1875rem;
    width: 100%;
    display: block;
}

.post-header {
    margin: 15px 0 20px;
}

.post-header .post-title {
    font-size: 1.5625rem;
    margin-bottom: 0;
    color: #475569;
}

.post-header .post-title a {
    color: #5d5d5d;
}

.post-header .post-title a:hover {
    color: #014cda;
}

.post-meta {
    list-style: none;
    font-size: 0.8125rem;
    padding: 0;
    margin: 0;
}

.post-meta a,
.post-meta li {
    color: #495057;
    opacity: 0.8;
}

.post-meta li i {
    color: #014cda;
}

.post-meta a:hover {
    color: #014cda;
    opacity: 1;
}

.post-meta>li {
    position: relative;
    display: inline-block;
    padding: 0 14px 0 0;
    margin: 0 14px 0 0;
}

.post-meta>li:not(:last-child):after {
    position: absolute;
    content: "/";
    right: -5px;
    top: 0;
}

.post-content p {
    margin-bottom: 5px;
}

.post-more a span {
    vertical-align: middle;
}

.post-footer {
    margin-top: 15px;
}

.post-content blockquote {
    border-left: 2px solid #475569;
    padding: 10px 0 10px 40px;
    margin: 40px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.post-content blockquote:hover {
    border-color: #014cda;
}

.blockquote {
    font-weight: 500;
    color: #1e293b;
}

.post-content ol {
    list-style-type: decimal;
}

.post-content ul,
.post-content ol {
    margin: 15px 0 15px 40px;
    padding: 0;
}

.comment,
.comment-shop {
    border-bottom: 1px solid #f0f0f0;
    padding: 30px 0 0;
}

.comment-author,
.comment-author-shop {
    margin: 5px 0 0;
    height: 64px;
    width: 64px;
    float: left;
}

.comment-body,
.comment-body-shop {
    position: relative;
    padding: 0 0 30px;
    margin: 0 0 0 85px;
}

.comment-meta,
.comment-meta-shop {
    margin: 0 0 15px;
}

.comment-meta-date {
    font-size: 13px;
}

.children>.comment,
.children>.comment-shop {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin-left: 85px;
}

.comment-meta-author a,
.comment-meta-author-shop a {
    font-weight: 500;
    color: #222;
}

.comment-meta-date a,
.comment-meta-date-shop a {
    color: #788487;
    opacity: 0.6;
}

.comment-meta-date a:hover,
.comment-meta-date a:focus,
.comment-meta-date-shop a:hover,
.comment-meta-date-shop a:focus {
    color: #0948b3;
    opacity: 1;
}

.comment-reply,
.comment-reply-shop {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 13px;
}

.comment-reply>a,
.comment-reply-shop>a {
    background: #f4f4f4;
    border-radius: 0.1875rem;
    padding: 5px 15px;
    display: block;
    color: #222;
}

.comment-reply>a:hover,
.comment-reply>a:focus,
.comment-reply-shop>a:hover,
.comment-reply-shop>a:focus {
    background: #014cda;
    color: #fff;
}

.comment-list+.comment-respond,
.comment-list-shop+.comment-respond {
    margin-top: 30px;
}

.widget-search {
    padding: 0;
    border: 0;
}

.widget-search form {
    position: relative;
}

.widget-search .search-button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    position: absolute;
    top: 50%;
    height: 100%;
    right: 0.875rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #ddd;
}

.widget-search .search-button span {
    font-size: 16px;
    line-height: 24px;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

.widget .widget-title {
    margin-bottom: 24px;
}

.widget .widget-title>h6,
.widget .widget-title>.h6 {
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
    color: #475569;
}

.widget ul {
    margin-bottom: 0;
    padding: 0;
}

.widget-categories ul li:first-child,
.widget-recent-entries ul li:first-child,
.widget-recent-entries-custom ul li:first-child {
    padding-top: 0;
}

.widget-categories ul li,
.widget-recent-entries ul li,
.widget-recent-entries-custom ul li {
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    margin: 0;
}

.widget a {
    color: #475569;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.widget a:hover {
    color: #014cda;
}

.widget-recent-entries-custom .wi {
    float: left;
    width: 100px;
}

.widget-recent-entries-custom .wb {
    padding-left: 16px;
    width: 100%;
}

.widget-recent-entries-custom .wi,
.widget-recent-entries-custom .wb {
    vertical-align: middle;
    display: table-cell;
}

.post-date {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin: 0;
}

.tag-cloud>a,
.post-tags>a {
    background: #f8fafc;
    border-radius: 0.1875rem;
    position: relative;
    display: inline-block;
    padding: 6px 15px;
    margin: 5px 8px 5px 0;
    text-transform: uppercase;
    font-size: 10px !important;
    color: #222;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.tag-cloud>a:hover,
.post-tags>a:hover {
    background: #014cda;
    color: #fff;
    opacity: 1;
}

blockquote {
    quotes: "“" "”";
}

blockquote p {
    text-indent: -0.42em;
}

blockquote p:before {
    content: open-quote;
}

blockquote p:after {
    content: no-close-quote;
}

blockquote p:last-of-type {
    margin-bottom: 0;
}

blockquote p:last-of-type:after {
    content: close-quote;
}

.custom-pagination-nav ul li {
    text-align: center;
    margin-right: 10px;
}

.custom-pagination-nav ul li:focus,
.custom-pagination-nav ul li a:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom-pagination-nav ul li a.page-link {
    width: 35px;
    height: 35px;
    line-height: 33px;
    border-radius: 100%;
    padding: inherit;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #0948b3;
}

.custom-pagination-nav ul li a.page-link:hover {
    background: #0948b3;
    color: #fff;
}

.custom-pagination-nav ul li.page-item:first-child .page-link,
.custom-pagination-nav ul li.page-item:last-child .page-link {
    border: none;
    background: rgba(0, 0, 0, 0);
}

.custom-pagination-nav ul li.page-item:first-child .page-link:hover,
.custom-pagination-nav ul li.page-item:last-child .page-link:hover {
    color: #0948b3;
}

.custom-pagination-nav ul li.page-item.active .page-link {
    background: #0948b3;
    border-color: #0948b3;
}

.full-height {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 15px;
}

.login-signup-form .form-group {
    position: relative;
}

.login-signup-form .form-group label {
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.login-signup-form .form-group .input-group .input-icon {
    position: absolute;
    z-index: 4;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
}

.login-signup-form .form-group .input-group .input-icon span {
    padding: 13px;
    position: absolute;
    color: #1111118c;
    border: 1px solid #2a272700;
    background: #ddd;
    border-radius: 4px;
}

.login-signup-form .form-group .input-group .textarea-icon span {
    padding: 11px 16px;
}

.login-signup-form .form-group .input-group input {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

.login-signup-form .form-group .input-group .form-control {
    text-indent: 35px;
}

.login-signup-form .form-group .input-group .form-control:focus {
    outline: none;
    border-color: #e2e8f0;
    z-index: 0;
}

.login-signup-form .form-group .input-group .form-control:not(:first-child) {
    border-radius: 4px;
}

.other-login-signup {
    text-align: center;
    overflow: hidden;
}

.other-login-signup .or-login-signup {
    text-align: center;
    display: inline-block;
    position: relative;
    padding: 0 25px;
    z-index: 1;
}

.other-login-signup .or-login-signup:before {
    display: inline-block;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #f8fafc;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

.other-login-signup .or-login-signup:after {
    display: inline-block;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #f8fafc;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

@media (min-width: 320px) and (max-width: 575px) {
    .login-signup-wrap.p-5 {
        padding: 1.5rem !important;
    }

    .social-login-signup li a.btn {
        margin-bottom: 5px;
    }
}

.error-content-wrap .notfound-404 {
    position: relative;
    height: 280px;
    z-index: 2;
    margin-bottom: 30px;
}

.error-content-wrap .notfound-404 h1,
.error-content-wrap .notfound-404 .h1 {
    font-size: 230px;
    font-weight: 700;
    margin: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
}

.subscribe-form input.button {
    position: absolute;
    right: 8px;
    border-radius: 30px;
    padding: initial;
    top: 8px;
    bottom: 8px;
    width: 30%;
}

.hero-countdown-wrap h2,
.hero-countdown-wrap .h2,
.hero-countdown-wrap h5,
.hero-countdown-wrap .h5 {
    color: #fff !important;
}

.countdown-wrap .row .col {
    margin: 10px;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 1rem;
}

.countdown-wrap .row .col h2,
.countdown-wrap .row .col .h2 {
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-wrap .row .col h2,
.countdown-wrap .row .col .h2,
.countdown-wrap .row .col h5,
.countdown-wrap .row .col .h5 {
    color: #0948b3 !important;
}

.countdown-wrap-2 .row .col {
    text-align: center;
    padding: 8px;
}

.countdown-wrap-2 .row .col h2,
.countdown-wrap-2 .row .col .h2 {
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-wrap-2 .row .col h5,
.countdown-wrap-2 .row .col .h5 {
    font-weight: 400;
}

.countdown-wrap-2 .row .col h2,
.countdown-wrap-2 .row .col .h2,
.countdown-wrap-2 .row .col h5,
.countdown-wrap-2 .row .col .h5 {
    color: #fff !important;
}

.single-pricing-pack {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    display: block;
    overflow: hidden;
    border: none;
    border-radius: 1rem;
}

.single-pricing-pack .pricing-header {
    padding: 30px;
    background: #f8fafc;
}

.single-pricing-pack .pricing-header h6,
.single-pricing-pack .pricing-header .h6 {
    opacity: 0.8;
    font-size: 14px;
}

.single-pricing-pack .pricing-header .price {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.single-pricing-pack .pricing-header .price span {
    font-size: 20px;
    vertical-align: text-top;
    padding-right: 2px;
}

.single-pricing-pack .pricing-header .price small,
.single-pricing-pack .pricing-header .price .small {
    font-size: 20px;
    font-weight: 500;
}

.single-pricing-pack .pricing-header .p-month {
    font-size: 14px;
}

.single-pricing-pack .pricing-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 25px 40px;
}

.single-pricing-pack .pricing-content .pricing-feature-list li {
    font-size: 15px;
    line-height: 30px;
}

.single-pricing-pack .pricing-content .pricing-feature-list li i {
    font-size: 12px;
}

.single-pricing-pack .pricing-content .pricing-feature-list li .icon-check {
    color: #4bad44;
}

.single-pricing-pack .pricing-content .pricing-feature-list li .icon-cancel {
    color: #ff0505;
}

.single-pricing-pack .pricing-content .pricing-feature-list li span {
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #28303b;
}

.single-pricing-pack .pricing-content .pricing-feature-list li .text-under-line {
    border-bottom: 1px solid #6c8bb3;
}

.single-pricing-pack.popular-price .pricing-header {
    background: #0948b3;
}

.single-pricing-pack.popular-price .pricing-header h6,
.single-pricing-pack.popular-price .pricing-header .h6 {
    opacity: 1;
}

.single-pricing-pack-2 {
    padding: 45px 32px;
}

.single-pricing-pack-2 .pricing-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    line-height: 64px;
    margin: 0 auto 32px;
}

.single-pricing-pack-2 .pricing-price {
    position: relative;
}

.single-pricing-pack-2 .pricing-price:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    height: 2px;
    width: 32px;
    margin-left: -16px;
    background: #0948b3;
}

.single-pricing-pack-2 .pricing-price small,
.single-pricing-pack-2 .pricing-price .small {
    color: #8494ac;
}

.single-pricing-pack-2 .pricing-price .price-cycle {
    font-weight: 400;
}

.feature-price {
    position: relative;
    overflow: hidden;
}

.feature-price .package-featured .label-corner {
    top: -15px;
    right: 15px;
    left: auto;
    -webkit-transform: rotate(45deg) translateX(50%);
    transform: rotate(45deg) translateX(50%);
}

.feature-price .label-corner {
    top: 16px;
    right: -25px;
    width: 100px;
    position: absolute;
    max-height: 19px;
    font-size: 11px;
    padding: 4px;
    color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.price-2 .pricing-price:after {
    top: auto;
    bottom: 0;
}

.card.single-pricing-pack {
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    -webkit-box-shadow: 0 0 0 1px #e2e8f0;
    box-shadow: 0 0 0 1px #e2e8f0;
    border-radius: 1rem !important;
}

.card.single-pricing-pack:hover {
    z-index: 2;
}

.single-pricing-pack .card-body {
    color: #8492a6;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.5rem;
}

.single-pricing-pack .card-body.px-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
}

.pricing-header {
    position: relative;
    background: rgba(0, 0, 0, 0);
}

.pricing-header .price {
    font-size: 35px;
}

.pricing-header .price span {
    font-size: 14px;
    margin-left: 4px;
}

.pricing-header::after {
    content: "";
    display: block;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40%;
    height: 1px;
    background: radial-gradient(at center center,
            rgb(222, 228, 239) 0px,
            rgba(255, 255, 255, 0) 75%);
}

.pricing-feature-list li {
    font-size: 0.8203125rem;
    line-height: 32px;
    color: #7587a1;
}

.pricing-feature-list li i {
    font-size: 14px;
}

.single-pricing-pack li.del {
    opacity: 0.7;
}

.pricing-feature-list li span {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #475569;
}

.yearly-price {
    display: none;
}

.switch-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form-switch {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-switch span {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.form-switch .switch-icon {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin: 0 15px;
    background: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-switch .switch-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 17px;
    background-color: #0948b3;
    border-radius: 15px;
    -webkit-transform: translate3d(4px, 3px, 0);
    transform: translate3d(4px, 3px, 0);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-switch input {
    display: none;
}

.form-switch input:checked+.switch-icon::after {
    -webkit-transform: translate3d(29px, 3px, 0);
    transform: translate3d(29px, 3px, 0);
}

.form-switch .beforeinput.text-success,
.form-switch .afterinput.text-success {
    color: #0948b3 !important;
}

.table-bordered.comparision-table thead td,
.comparision-table.table-bordered thead th {
    border-bottom-width: 1px;
}

.comparision-price {
    font-weight: 700;
}

.comparision-price span {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.comparision-table-body tr>td {
    font-size: 13px;
    padding: 6px;
    min-width: 180px;
}

.comparision-table-body tr>td p {
    padding-left: 10px;
    margin-bottom: 0;
}

td.td-blank {
    border: none !important;
}

.provider-logo img {
    display: inline-block;
    max-width: 100px;
    min-height: 13px;
    max-height: 34px;
}

.offer-block {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.offer-block:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: url("../img/offer-bg.png") no-repeat center center/cover;
}

.vps-hosting-pricing-table {
    overflow: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-collapse: unset;
    border-spacing: 0 10px;
}

.domain-search-result-table tr.vps-pricing-row {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}

.domain-search-result-table tr.vps-pricing-row td p {
    margin-bottom: 0;
}

.vps-hosting-pricing-table>thead {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 4px;
}

.vps-hosting-pricing-table.vps-hosting-pricing-table-two {
    border-collapse: collapse;
}

.vps-hosting-pricing-table>thead>tr>th {
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
    font-family: "Inter", sans-serif;
}

.vps-pricing-row {
    text-align: left;
    background-color: #fff;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.vps-pricing-row>td:first-child {
    border-left: 2px solid rgba(0, 0, 0, 0);
    border-radius: 2px 0 0 2px;
}

.vps-pricing-row>td:first-child {
    border-left: 3px solid #e2e8f0;
}

.vps-pricing-row:hover td {
    border-color: #0948b3;
}

.vps-pricing-row>td:last-child {
    border-right: 2px solid rgba(0, 0, 0, 0);
    border-radius: 0 2px 2px 0;
    text-align: right;
}

.vps-hosting-pricing-table-two>thead {
    border: 2px solid #e2e8f0;
    border-top: none;
    background: #f8fafc;
}

.vps-hosting-pricing-table-two .vps-pricing-row {
    border: 2px solid #e2e8f0;
    border-left: 2px solid rgba(0, 0, 0, 0);
}

.vps-hosting-pricing-table-two .vps-pricing-row>td:last-child {
    border-right: initial;
}

.vps-hosting-pricing-table>tbody>tr>td {
    padding: 20px 20px;
    border-right: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.vps-hosting-pricing-table.domain-search-result-table>tbody>tr>td {
    font-size: 18px;
}

.vps-pricing-row>td {
    border: none;
}

.vps-hosting-pricing-table .rate {
    font-size: 20px;
    font-weight: 700;
    color: #f67a3c;
    font-family: "Inter", sans-serif;
}

.vps-hosting-pricing-table .rate span {
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
    opacity: 0.8;
    color: #898f98;
}

.vps-hosting-pricing-table .score-bar-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vps-hosting-pricing-table .geekbench-score {
    font-weight: 400;
    margin-right: 15px;
}

.vps-hosting-pricing-table .score-bar-wrap .score-bar-item {
    min-width: 40px;
    height: 14px;
    font-size: 55%;
    border-radius: 30px;
    font-weight: 400;
    background-color: #e2e8f0;
    position: relative;
}

.vps-hosting-pricing-table .pricing-onsale,
.vps-hosting-pricing-table .cpu-core {
    display: block;
    font-size: 14px;
    color: #898f98;
    margin-top: 4px;
    font-weight: 400;
}

.vps-hosting-pricing-table>tbody>tr>td:first-child::before {
    content: attr(data-value);
    display: none;
    width: initial;
    height: initial;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    left: initial;
    top: initial;
    opacity: 1;
}

.vps-pricing-row>td:before {
    content: attr(data-value);
    display: none;
}

table>tbody>tr>td:first-child:before {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background-color: #014cda;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .vps-hosting-pricing-table>thead {
        display: none;
    }

    .vps-pricing-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 4px;
        width: 45%;
        float: left;
        margin: 0 15px 28px 15px;
    }

    .vps-hosting-pricing-table>tbody>tr {
        padding: 15px;
    }

    .vps-hosting-pricing-table>tbody>tr>td {
        padding: 10px 15px;
        font-size: 14px;
        font-weight: normal;
    }

    .vps-pricing-row:hover.border-accent-primary>td:first-child {
        margin-bottom: 0;
        border-radius: 0;
        border-left: none;
    }

    .vps-pricing-row>td:first-child {
        border-left: none;
        border-radius: 0;
    }

    .vps-hosting-pricing-table>tbody>tr>td:first-child::before {
        display: block;
        width: 45%;
    }

    .vps-pricing-row>td:before {
        display: block;
        width: 45%;
    }

    .vps-hosting-pricing-table>tbody>tr>td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .vps-pricing-row>td:last-child::before {
        display: none;
    }

    .vps-pricing-row>td:last-child {
        text-align: center !important;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .vps-pricing-row {
        width: 100%;
        float: none;
        margin-left: auto;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .vps-pricing-row td a.primary-solid-btn {
        padding: 8px 12px !important;
    }
}

.vps-switch-wrap {
    position: relative;
    width: 100%;
    display: block;
}

.custom-plan-box {
    padding: 12px 25px;
}

.custom-plan-box .slider .tooltip.top {
    display: none;
}

.custom-plan-info-box {
    padding: 34px;
}

.single-vps-item {
    width: 100%;
    display: block;
    padding: 15px;
    min-width: 298px;
}

.custom-vps-list li {
    margin-bottom: 5px;
    display: inline-block;
}

@media (min-width: 320px) and (max-width: 767px) {
    .custom-vps-list li {
        width: 45%;
        display: inline-block;
        margin-bottom: 10px;
    }

    .single-vps-item {
        padding: 12px 5px;
    }
}

@media (min-width: 320px) and (max-width: 576px) {
    .custom-plan-box {
        margin-bottom: 15px;
    }

    .custom-vps-list li {
        width: 100%;
    }

    .custom-vps-list li.list-inline-item:not(:last-child) {
        margin-right: 0;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .single-vps-item {
        min-width: 210px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .single-vps-item {
        min-width: 245px;
    }
}

.custom-plan-box .slider .tooltip.top .tooltip-arrow {
    border: 0;
}

.custom-plan-box .slider.slider-horizontal {
    width: 100%;
}

.custom-plan-box .slider.slider-horizontal .slider-track {
    height: 10px;
}

.custom-plan-box .slider-selection {
    background: none;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #0948b3;
}

.custom-plan-box .slider-track {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #e2e8f0;
    position: relative;
}

.custom-plan-box .slider-handle {
    position: absolute;
    width: 25px;
    height: 25px;
    top: -3px;
    background: none;
    background-color: #fff;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
    border: 8px solid #0948b3;
    outline: none;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-plan-box .slider-handle:hover,
.custom-plan-box .slider-handle:focus {
    background-color: #f8fafc;
    border: 8px solid #0948b3;
}

.pricing-new-wrapper {
    position: relative;
    display: block;
    border-radius: 1rem;
}

.pricing-new-wrapper .pricing-price .p-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 40px;
}

.pricing-new-wrapper:after {
    content: "";
    position: absolute;
    background-color: #0948b3;
    border-radius: 3px;
    width: 50%;
    height: 3px;
    top: 2px;
    left: 0;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.pricing-new-wrapper li {
    padding: 5px 0 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    border-top: 1px solid #e2183740;
}

.pricing-new-wrapper li:first-child {
    /* border-top: none */
}

.pricing-new-wrapper li i {
    font-size: 0.76171875rem;
}

.pricing-new-wrapper li p {
    margin-bottom: 0;
    font-size: 0.8203125rem;
    color: #898f98;
}

.pricing-new-wrapper li p strong {
    color: initial;
}

.price-package-body .single-price-package {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.03),
        0 0.275rem 0.75rem -0.0625rem rgba(0, 0, 0, 0.06);
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.03),
        0 0.275rem 0.75rem -0.0625rem rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.price-package-body .single-price-package .package_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.price-package-body .single-price-package .package_header .package_name {
    width: 145px;
    padding-right: 20px;
    position: relative;
    text-align: left;
}

.price-package-body .single-price-package .package_header .package_name h3,
.price-package-body .single-price-package .package_header .package_name .h3 {
    font-size: 18px;
    line-height: 24px;
}

.price-package-body .single-price-package .package_header .package_icon {
    width: 60px;
    height: 60px;
    margin: 0 28px 0 0;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.price-package-body .single-price-package .package_header .package_icon i {
    font-size: 40px;
}

.price-package-body .single-price-package .package_body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
}

.price-package-body .single-price-package .package_body-horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.price-package-body .single-price-package .package_body-horizontal .package_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0;
    border-right: 1px solid rgba(70, 78, 99, 0.25);
}

.price-package-body .single-price-package .package_body-horizontal .package_list .list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px 0;
    margin-bottom: 0;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
}

.price-package-body .single-price-package .package_body-horizontal .package_list .list-item .list-item-name {
    font-size: 18px;
    line-height: 20px;
    color: #02345c;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
}

.price-package-body .single-price-package .package_body-horizontal .package_list .list-item .list-item-desc {
    font-size: 14px;
    line-height: 24px;
    color: #475569;
}

.price-package-body .single-price-package .package_footer {
    margin-left: 15px;
    min-width: 160px;
}

.price-package-body .single-price-package .package_footer .package-price .price-value {
    color: #02345c;
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.price-package-body .single-price-package .package_footer .package-price .price-value .price-tax {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    opacity: 0.8;
    color: #475569;
}

.price-package-body .single-price-package .package_footer .package-price p {
    color: #475569;
    opacity: 0.9;
    font-size: 13px;
    line-height: 13px;
    margin-bottom: 10px;
}

.price-package-body .price-packages-pack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 24px 24px;
}

.price-package-body .price-packages-pack:hover {
    -webkit-box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.03),
        0 0.275rem 1.25rem -0.0625rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.03),
        0 0.275rem 1.25rem -0.0625rem rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1011px) {
    .price-package-body .price-packages-pack {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .price-package-body .price-packages-pack .package_header {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .price-package-body .price-packages-pack .package_header .package_name {
        width: auto;
        min-width: unset;
        max-width: unset;
    }

    .price-package-body .price-packages-pack .package_header .package_icon {
        margin-right: 0;
    }

    .price-package-body .price-packages-pack .package_body {
        margin-bottom: 20px;
    }

    .price-package-body .price-packages-pack .package_body .package_list {
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid rgba(70, 78, 99, 0.25);
    }

    .price-package-body .price-packages-pack .package_footer {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }

    .price-package-body .price-packages-pack .package_footer .package-actions {
        width: auto;
        max-width: 180px;
        margin: auto;
    }
}

@media (max-width: 751px) {
    .price-package-body .package_body-horizontal .package_list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-right: none;
    }

    .price-package-body .package_body-horizontal .package_list .list-item {
        -ms-flex-preferred-size: 50% !important;
        flex-basis: 50% !important;
        padding: 17px 0;
    }

    .price-package-body .package_body-horizontal .package_list .list-item .list-item-desc {
        font-size: 13px !important;
    }
}

.price-package-body .price-packages-pack:not(:last-of-type) {
    margin-bottom: 20px;
}

.wp-price-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    justify-items: center;
    text-align: center;
    grid-auto-rows: 1fr;
    text-align: -webkit-center;
}

.wp-price-wrap .wp-single-price {
    border-radius: 1rem;
    padding: 20px;
}

.wp-price-wrap .wp-single-price li {
    font-size: 16px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.wp-price-wrap .wp-single-price:first-child {
    background: rgba(255, 5, 5, 0.12);
}

.wp-price-wrap .wp-single-price:last-child {
    background: rgba(75, 173, 68, 0.12);
}

.wp-price-wrap .wp-price-action .price {
    font-weight: 700;
}

.wp-price-wrap .wp-price-action .price small,
.wp-price-wrap .wp-price-action .price .small {
    font-size: 20px;
}

@media (max-width: 991px) {
    .wp-price-wrap {
        display: block;
    }
}

.compare-pricing-table table {
    position: relative;
    text-align: center;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.compare-pricing-table table thead {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.compare-pricing-table .t-hide {
    border: 0;
    background: rgba(0, 0, 0, 0);
}

.compare-pricing-table .select-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.compare-content-body tr td {
    padding: 6px 15px;
    vertical-align: middle;
}

.compare-content-body tr td.compare-header {
    font-size: 15px;
    padding: 12px 15px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.compare-content-body tr td.compare-title {
    max-width: 350px;
    font-size: 14px;
}

.domain-price-table thead {
    background: #0948b3;
    color: #fff;
}

.domain-price-table thead tr .dp-title {
    font-size: 16px;
    border-top-color: #0948b3;
    border-bottom: none;
}

.domain-price-table thead tr .dp-title:first-child {
    border-left-color: #0948b3;
}

.domain-price-table thead tr .dp-title:last-child {
    border-right-color: #0948b3;
}

.domain-price-body tr td {
    border-top: 1px dashed #f8fafc;
    font-size: 14px;
    font-weight: 500;
    color: rgba(71, 85, 105, 0.9);
}

.domain-price-body tr td>span.domain-extension {
    font-size: 16px !important;
    font-weight: 600;
    color: #363636;
}

.theme-setting {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.theme-setting .theme-setting-link {
    position: absolute;
    top: 20%;
    left: -44px;
    width: 45px;
    height: 45px;
    background-color: #f67a3c;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}

.theme-setting .theme-setting-body {
    position: absolute;
    top: 20%;
    left: 0;
    width: 250px;
    height: 435px;
    background-color: #fafafa;
    -webkit-box-shadow: 0 0 15px rgba(28, 39, 60, 0.1);
    box-shadow: 0 0 15px rgba(28, 39, 60, 0.1);
    padding: 20px;
    border-radius: 0 0 0 0.25rem;
    overflow-y: scroll;
}

.theme-setting.show {
    right: 200px;
}

.theme-setting.show .theme-setting-link {
    position: relative;
    background-color: #fff;
    color: #f67a3c;
    -webkit-box-shadow: -5px 0 10px rgba(28, 39, 60, 0.1);
    box-shadow: -5px 0 10px rgba(28, 39, 60, 0.1);
}

.customize-color .theme-color {
    padding: 4px;
}

.customize-color .theme-color span {
    width: 75px;
    height: 30px;
}

.customize-color .theme-color:hover {
    border-color: #fff !important;
}

.customize-color .theme-color.active {
    border-color: #0948b3 !important;
    background-color: #fff;
}

.default-primary {
    background-color: #0948b3;
}

.default-accent {
    background-color: #014cda;
}

.default-tertiary {
    background-color: #f67a3c;
}

.theme-1-primary {
    background-color: #4a338d;
}

.theme-1-accent {
    background-color: #7759ce;
}

.theme-1-tertiary {
    background-color: #fc5185;
}

.theme-2-primary {
    background-color: #14532d;
}

.theme-2-accent {
    background-color: #15803d;
}

.theme-2-tertiary {
    background-color: #ff9f29;
}

.theme-3-primary {
    background-color: #153462;
}

.theme-3-accent {
    background-color: #163b88;
}

.theme-3-tertiary {
    background-color: #1062fe;
}

.my-container_steps {
    min-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .my-container_steps {
        margin-top: 20px;
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .my-container_steps {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .my-container_steps {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {
    .my-container_steps {
        max-width: 1370px;
    }
}

/* @media (max-width:500px){
    .is_sub_heading{
        display:none
    }
} */
.main-div {
    width: 100%;
    background: #f8fafb;
    display: flex;
    justify-content: center;
    border-radius: 25px;
    margin: auto;
}

.mobile_step {
    background-color: #fff;
    display: none;
    width: 50%;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .mobile_step {
        display: block;
    }
}

@media (max-width: 700px) {
    .mobile_step {
        width: 60%;
    }
}

@media (max-width: 590px) {
    .mobile_step {
        width: 70%;
    }
}

@media (max-width: 560px) {
    .mobile_step {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .mobile_step {
        width: 85%;
    }
}

@media (max-width: 430px) {
    .mobile_step {
        width: 98%;
    }
}

.tutorial-video {
    width: 95%;
    border-radius: 10px;
}

@media (max-width: 1400px) {
    .tutorial-video {
        height: auto;
        width: 100%;
    }
}

.progress_bar {
    height: 10px;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-top: 10px;
}

.progress_bar_inner {
    height: 10px;
    border-radius: 10px;
    background-color: #0e76c8 !important;
}

.steps_text {
    padding: 12px 0;
    margin: 0;
}

.steps_mobile {
    border: 1px solid #e9e9e9;
}

.check_icon {
    color: #c5bdbd;
    font-size: 18px;
}

.is_done {
    color: #000 !important;
    font-weight: 500 !important;
}

.step_name {
    display: inline-block;
}

.arrow_down {
    float: right;
    outline: none;
}

.steps_name {
    font-size: 12px;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 0;
}

@media (max-width: 380px) {
    .steps_name {
        font-size: 10px;
    }
}

.steps_desc {
    font-size: 13px;
}

@media (max-width: 380px) {
    .steps_desc {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

.steps-btn {
    margin: auto;
    display: block;
    color: #fff;
    background: #3171f4;
    border: none;
    border-radius: 5px;
    width: 140px;
    height: 35px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
}

@media (max-width: 770px) {
    .steps-btn {
        color: #3171f4;
        background: #fff;
        border: 1px solid #3171f4;
        border-radius: 5px;
        width: 120px;
        height: 32px;
        font-family: Poppins;
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.02em;
    }
}

.tutorial-video {
    border-radius: 25px;
    box-shadow: 10px 10px 20px rgba(255, 184, 201, 0.18);
    width: 100%;
    cursor: pointer;
}

.right-icon {
    color: #ff0a54;
}

.ezy-point {
    font-size: 15px;
}

.explore-button {
    background: #ff0a54;
    border: none;
    border-radius: 25px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 44.5%;
    width: 65px;
    height: 40px;
    transform: translate(-50%, -50%);
    background: red;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}

.play-btn:hover {
    background: #282828;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.steps {
    background: linear-gradient(230.45deg, #f4fbfe 1.91%, #fff);
    width: 240px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.05098);
    border-radius: 0 10px 10px 0;
    position: relative;
    margin-top: auto;
}

@media (max-width: 1833px) {
    .steps {
        width: 200px;
    }
}

.step-img,
.step_img {
    width: 45px;
}

.steps-heading {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    height: 50px;
}

.steps-hr {
    color: #c4c4c4;
    width: 45%;
    margin: 5px;
}

.steps-content {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
}

.steps-btn:hover svg {
    transform: translateX(4px);
}

.arrow-right {
    transition: all 0.2s ease-in-out;
    margin-left: 5px;
    margin-top: 4px;
}

.side-text {
    position: absolute;
    top: 50%;
    left: -8%;
    transform: translateY(-55%);
    font-family: Roboto;
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    text-shadow: 2px 2px 0 #3171f4, 2px -2px 0 #3171f4, -2px 2px 0 #3171f4,
        -2px -2px 0 #3171f4, 2px 0 0 #3171f4, 0 2px 0 #3171f4, -2px 0 0 #3171f4,
        0 -2px 0 #3171f4;
}

.mobile_view {
    display: none;
}

@media (max-width: 1494px) {
    .steps {
        width: 180px;
    }
}

@media (max-width: 1199.98px) {
    .main-heading {
        margin-top: 20px;
    }

    .steps-container {
        order: 3;
        margin-top: 20px;
        display: block;
        width: 90%;
    }

    .steps {
        margin-left: auto;
        margin-right: auto;
        width: 240px;
        height: 250px;
    }

    .desktop_view {
        display: none;
    }

    .mobile_view {
        display: block;
    }

    .step-img {
        width: 31px !important;
    }

    .steps-heading {
        height: 35px;
    }

    .steps-content {
        height: 40px;
    }
}

@media screen and (max-width: 550px) {
    .main-div {
        padding: 0;
    }

    .tutorial-video {
        border-radius: 10px;
    }

    .play-btn {
        width: 50px;
        height: 30px;
    }
}

@media (max-width: 768px) {

    .mobile_view,
    .step-video {
        display: none;
    }
}

@media (min-width: 1200px) {

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
}

@media (min-width: 540px) {

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
}

.compare {
    position: absolute;
    text-align: end;
    top: 0;
    right: 0px;
    padding: 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    z-index: 1;
    border-radius: 0 5px 0 0 !important;
}

.loginfront {
    font-size: 15px;
}

.popup-modal {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 60px;
    z-index: 1000;
    max-width: 400px;
}

.popupImg {
    position: absolute;
    top: -2px;
    z-index: 1200;
    left: -42px;
    border: 2px solid gainsboro;
    background: #0e76c8;
    padding: 5px;
}

.feature {
    box-shadow: 0px 0px 15px 10px #e9eef2;
    border-radius: 16px;
    padding: 30px;
    background: #fff;
}

.feature .numbers {
    line-height: 1.5;
    font-weight: 800;
    font-size: 38px;
}

.number-line {
    margin: 10px auto;
    height: 2px;
    width: 50px;
    background: #9ea4a9;
    border-radius: 2px;
}

.feature p {
    font-size: 18px;
    font-weight: 600;
    color: #3c4852;
}

.mw_250 {
    max-width: 250px;
}

.purple-bg {
    background: #8244fd !important;
}

.light-blue-bg {
    background: #0145c269 !important;
}

.green_btn {
    background: rgba(204, 255, 218, 0.2);
    border: 1px dashed #0bad73;
    border-radius: 4px;
    color: #000;
}

.f_24 {
    font-size: 24px !important;
}

.f_32 {
    font-size: 32px !important;
}

.pruplecolor {
    color: #3056d3 !important;
}

.scrolluni {
    position: sticky;
    top: 71px;
    margin-top: 10px;
    background-color: #fff;
    z-index: 8;
    border-top: 2px solid #7b36fe;
    max-width: 100vw;
    overflow-x: hidden;
}

.unidetails li {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.uniicon {
    background: rgba(232, 223, 255, 0.6);
    border-radius: 6px;
    height: 24px;
    width: 24px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.sticky_top {
    position: sticky;
    top: 130px;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .scrolluni {
        position: sticky;
        top: 46px;
        margin-top: 10px;
        background-color: #fff;
        z-index: 8;
        border-top: 2px solid #7b36fe;
        max-width: 100vw;
        overflow: auto;
        white-space: nowrap;
    }

    .hero_course {
        background-image: url(../../../dk7h1f5gq849l.cloudfront.net/photos/questions/sarthaks-test-1663399735-6f942d33-45b0-4479-abc6-81a0d9b24e99.png) !important;
        background-repeat: no-repeat !important;
        background-position: bottom right !important;
        background-size: 300px !important;
        background-blend-mode: normal !important;
    }

    .course_summary {
        color: #28a745;
        font-weight: 700;
        font-size: 16px;
    }

    .form-check {
        font-size: 16px;
        font-weight: 500;
    }
}

.mh-75 {
    max-height: 75vh;
}

#courseAccordion .accordion-item {
    margin-bottom: 10px;
}

.marque_area {
    width: 100%;
    position: relative;
}

.marque_wrapper {
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
}

.marque_row {
    animation: ltr 15s linear infinite;
}

.right-gradient-ab {
    width: 240px;
    height: 105%;
    background-image: linear-gradient(270deg,
            #fff 1%,
            #fff 25%,
            rgba(255, 255, 255, 0));
    position: absolute;
    top: -3%;
    bottom: 0%;
    left: auto;
    right: -0.5%;
}

.left-gradient-ab {
    width: 240px;
    height: 105%;
    background-image: linear-gradient(90deg,
            #fff,
            #fff 20%,
            rgba(255, 255, 255, 0));
    position: absolute;
    top: -3%;
    bottom: 0%;
    left: -0.5%;
    right: auto;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .right-gradient-ab {
        width: 75px;
        height: 105%;
        background-image: linear-gradient(270deg,
                #fff 1%,
                #fff 25%,
                rgba(255, 255, 255, 0));
        position: absolute;
        top: -3%;
        bottom: 0%;
        left: auto;
        right: -0.5%;
    }

    .left-gradient-ab {
        width: 75px;
        height: 105%;
        background-image: linear-gradient(90deg,
                #fff,
                #fff 20%,
                rgba(255, 255, 255, 0));
        position: absolute;
        top: -3%;
        bottom: 0%;
        left: -0.5%;
        right: auto;
    }
}

.fs-15 {
    font-size: 15px;
}

.compare_modal {
    top: -28px;
    opacity: 1;
    z-index: 20000;
}

#listModal {
    z-index: 20001;
}

.selector-area {
    height: 100%;
}

.selector_box {
    display: flex;
    min-height: 25vh !important;
    height: max-content;
    border: 1px dotted red;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.mobile_filter {
    position: sticky;
    bottom: -8px;
}

.sticky_details {
    position: sticky;
    top: 70px;
    z-index: 3;
}

.score {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    top: 20px;
    left: 21px;
}

.score_badge {
    position: absolute;
    top: -20px;
    left: 180px;
    z-index: 2;
}

.winner_badge {
    position: absolute;
    top: -30px;
    right: -25px;
    z-index: 1;
}

.winner {
    transform: rotateZ(30deg);
    right: -2px;
    font-weight: bold;
    position: absolute;
    z-index: 2;
    top: 0px;
}

.sticky_side {
    position: sticky;
    top: 100px;
}

.versus {
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    width: 30px;
    height: 30px;
    box-shadow: 0 5px 10px 0 #f67a3c;
    border: 0.6px solid #fff;
    background-color: #f67a3c;
    display: inline-block;
    display: flex;
    border-radius: 50px;
    position: absolute;
    left: 45%;
    top: 25px;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .selector_box {
        display: flex;
        height: 20vh !important;
        border: 1px dotted red;
        border-radius: 10px;
        align-items: center;
        justify-content: center;
    }

    .selector_box p {
        font-size: 14px;
    }

    .sticky_details {
        position: sticky;
        top: 45px;
        z-index: 3;
    }

    .winner_badge {
        position: absolute;
        top: -34px;
        right: -7px;
        z-index: 1;
    }

    .winner {
        transform: rotateZ(30deg);
        right: 20px;
        font-weight: bold;
        position: absolute;
        z-index: 2;
        top: 0px;
    }

    .versus {
        font-size: 10px;
        font-weight: 500;
        font-style: italic;
        color: #fff;
        box-shadow: 0 5px 10px 0 #f67a3c;
        border: 0.6px solid #fff;
        background-color: #f67a3c;
        display: inline-block;
        display: flex;
        position: absolute;
        left: 57px;
        top: 5px;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }

    .review-info p {
        font-size: 12px;
    }
}

.flare:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    animation: shine 3s infinite linear;
    /* Animation */
}

@keyframes shine {
    0% {
        left: -40%;
    }

    20% {
        left: 100%;
        width: 0px;
    }

    100% {
        left: 100%;
        width: 0px;
    }
}

.mt60 {
    margin-top: 60px;
}

.bg-green {
    background: #d8f8ea;
}

.typewriter {
    text-align: justify;
}

.suggestion-list {
    width: 100%;
    z-index: 12;
    position: absolute;
    top: 42px;
}

.filter_list {
    overflow: auto;
    white-space: nowrap;
    max-height: 200px;
}

.filter_list li::before {
    content: "\f0c8";
    font-family: "Font Awesome 5 Free";
    margin-right: 0.5rem;
}

.filter_list li:hover,
.filter_list li.active {
    color: #f67a3c;
}

.filter_list li.active::before {
    content: "\f14a";
    font-family: "Font Awesome 5 Free";
    margin-right: 0.5rem;
}

.uni_title {
    line-height: 20px;
    font-weight: 500;
}

.filter_btn {
    padding: 5px 10px;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .uni_feature_list li {
        display: block !important;
        margin-bottom: 5px;
        text-align: center;
    }
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px !important;
}

.avatar {
    font-weight: 800;
    font-size: 24px;
    width: 3rem;
    height: 3rem;
    background: #ffd6b2;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    margin-left: 10px;
}

.score_box {
    position: absolute;
    right: 0;
    margin-right: 10px;
    background: #ff7900;
    width: 7rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.offerPopup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, 0%);
    color: #fff;
    max-width: 450px;
    display: none;
    transition: opacity 0.4s ease-in-out;
}

.fade-in {
    display: block !important;
}

.bg-blue {
    background: #22366a;
}

.svg_icon {
    position: absolute;
    left: 35%;
    top: -60px;
    z-index: 1;
}

.content_box {
    padding-top: 50px;
}

.editIcon {
    width: 42px;
    right: 370px;
    bottom: -1px;
    position: absolute;
    font-weight: 900;
    background: gray;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .score_box {
        position: absolute;
        right: 5px;
        margin-right: 0px;
        background: #ff7900;
        width: 7.1rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        font-weight: 800;
        font-size: 1rem;
        color: #fff;
        top: 5px;
    }

    .offerPopup {
        position: fixed;
        bottom: 20px;
        left: 50%;
        z-index: 9;
        transform: translate(-50%, 0%);
        width: 95%;
        opacity: 1;
        transition: opacity 0.4s ease-in-out;
    }

    .svg_icon {
        position: absolute;
        left: 110px;
        top: -75px;
        z-index: 1;
    }

    .editIcon {
        width: 42px;
        right: 65px;
        bottom: -1px;
        position: absolute;
        font-weight: 900;
        background: gray;
        color: #fff;
        padding: 10px;
        border-radius: 50%;
        font-size: 1.1rem;
        cursor: pointer;
    }
}

.profile_options a {
    color: #222;
}

.tab-pane {
    color: #222;
}

.w_160 {
    width: 160px;
}

.comparePop {
    position: fixed;
    bottom: 100px;
    right: 20px;
    opacity: 1;
    z-index: 2;
}

.popOuter {
    position: relative;
    background: rgba(173, 216, 230, 0.3);
    backdrop-filter: saturate(180%) blur(10px);
    display: block;
    right: 74px;
    top: -10px;
    padding: 5px;
    border-radius: 10px;
    display: none;
}

.popArea {
    display: flex;
    flex-direction: row;
    background: rgba(173, 216, 230, 0.3);
    backdrop-filter: saturate(180%) blur(10px);
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 10px;
}

.closeComparePop {
    position: absolute;
    top: -5px;
    right: 0px;
}

.compareToggle {
    position: fixed;
    color: #fff;
    background: #22366a;
    bottom: 160px;
    right: 20px;
    padding: 10px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 2px 4px #999;
    animation: wiggle 2s linear infinite;
    display: none;
    z-index: 15;
}

.removeCard {
    position: absolute;
    top: -2px;
    right: -4px;
}

.compareNow {
    position: relative;
    margin: auto;
    opacity: 1 !important;
    z-index: 4;
}

.warningArea {
    opacity: 0;
}

.warningText {
    position: absolute;
    background: #fff;
    padding: 20px;
    top: 20%;
    right: 20%;
    z-index: 5;
    margin: auto;
    border-radius: 10px;
    border: 1px solid lightgray;
    font-size: 14px;
}

.warningArea::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #222;
    opacity: 0.6;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 10px;
}

@keyframes skew-y-shakeing {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

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

@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-15deg);
    }

    20% {
        transform: rotateZ(10deg);
    }

    25% {
        transform: rotateZ(-10deg);
    }

    30% {
        transform: rotateZ(6deg);
    }

    35% {
        transform: rotateZ(-4deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}

@keyframes roll-in {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-180deg);
    }

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

@media screen and (min-width: 300px) and (max-width: 767px) {
    .check-list-wrap.list-two-col li {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .comparePop {
        position: fixed;
        bottom: 90px;
        right: 83px;
        opacity: 1;
        z-index: 2;
    }

    .popOuter {
        position: relative;
        background: rgba(173, 216, 230, 0.3);
        backdrop-filter: saturate(180%) blur(10px);
        display: block;
        right: 0;
        top: 0;
        padding: 5px;
        border-radius: 10px;
        display: none;
    }

    .popArea {
        flex-direction: column;
    }

    .compareToggle {
        right: 5px;
        bottom: 250px;
    }

    .warningText {
        top: 30%;
        right: 0%;
        font-size: 15px;
        padding: 15px;
        text-align: center;
    }

    .warningArea::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background: #222;
        opacity: 0.6;
        top: 0;
        left: 0;
        z-index: 1;
        border-radius: 10px;
    }

    .Ov_ConsellingBtn {
        width: 100%;
    }

    .feature p {
        font-size: 12px;
    }

    .feature .numbers {
        font-size: 28px;
    }
}

.blog-car-title {
    width: 100%;
    padding: 1rem;
}

.text-justify {
    text-align: justify !important;
}

.skill {
    width: 100%;
    height: 20px;
    background-color: gainsboro;
}

.skill div {
    width: 0;
    height: 100%;
    color: #333333;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    animation: fill 6s forwards;
}

@keyframes fill {
    100% {
        width: 100%;
    }
}

.skill_0 {
    background-color: #9fee02;
    max-width: 90%;
}

.skill_1 {
    background-color: #02989a;
    max-width: 90%;
}

.skill_2 {
    background-color: #3914b0;
    max-width: 85%;
}

.skill_3 {
    background-color: #d00275;
    max-width: 70%;
}

.skill_4 {
    background-color: #ff7401;
    max-width: 65%;
}

footer hr {
    margin: 0;
    color: #fff;
    border: 0;
    border-top: 4px solid;
    opacity: 0.55;
    border-radius: 2px;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee_group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: Scroll 15s linear infinite;
}

@keyframes Scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        /* transform: translateX(calc(-100% - .2rem)); */
    }
}

.marquee_group_ltr {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: ltr 15s linear infinite;
}

@keyframes ltr {
    0% {
        transform: translateX(-100%);
    }

    100% {
        /* transform: translateX(calc(100% + .2rem)); */
        transform: translateX(0%);
    }
}

.dropdown-menu {
    border: none;
    background: #f8f9fa;
}

.Ov_customDropdown,
.Ov_MobDropdownCourse,
.Ov_MobDropdownSpec {
    height: 90vh;
    width: 100vw;
    overflow: scroll;
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    border-radius: 4px;
    z-index: 1;
}

.Ov_MobDropdownCourse {
    z-index: 2 !important;
}

.Ov_MobDropdownSpec {
    z-index: 3 !important;
}

.Ov_megaMenu {
    border-top-width: 0;
    display: none;
    position: absolute;
    min-height: 80vh;
    width: 99vw;
    top: 80px;
    left: 0;
    z-index: 10;
}

.overflow-contain {
    overscroll-behavior: contain;
}

.Ov_megaMenuInner {
    min-height: inherit;
    overscroll-behavior: contain;
}

.Ov_TabList {
    flex-wrap: wrap;
    min-height: inherit;
    max-height: 80vh;
    min-width: 20vw;
    overflow-y: auto;
    font-weight: 600;
}

.Ov_TabList button.active {
    color: #fff !important;
}

.Ov_tabContent {
    flex-wrap: wrap;
    min-height: inherit;
    max-height: 70vh;
}

.Ov_menuSpecList {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    top: 0;
    z-index: 12;
}

.Ov_MegaNav .nav-pills .nav-link.active {
    background: #0056d2;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
}

.Ov_tabContent i {
    font-size: 18px;
}

.Ov_cardTextSm {
    font-size: 11px;
    line-height: 1.5;
    font-weight: 500;
}

.w-250 {
    width: 250px;
}

.Ov_MhContactCard {
    min-height: 242px;
}

.single-promo-card a {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: blue;
}

.single-promo-card a:hover {
    color: #0948b3;
    font-size: 20px;
}

.blog_content {
    display: none;
}

.Ov_counterSection::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(#e8e8e5 0%, #ffffffb8 80%, transparent);
}

.Ov_CounterWrap {
    z-index: 2;
    position: relative;
}

.Ov_cardHover:hover {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    box-shadow: 1.1rem 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.blueCard i,
.blueCard p.h4 {
    color: rgb(13, 202, 240) !important;
}

.redCard:hover {
    border: 1px solid #af0b26 !important;
}

.blueCard:hover {
    border: 1px solid rgb(13, 202, 240) !important;
}

.greenCard:hover {
    border: 1px solid rgb(72, 195, 120) !important;
}

.yellowCard:hover {
    border: 1px solid rgb(255, 193, 7) !important;
}

.flip-card-container {
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    margin-left: 10px;
    margin-left: 10px;
}

.flip-card {
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 300px;
    backface-visibility: hidden;
    padding: 20px;
    box-sizing: border-box;
    top: 0;
    transition: transform 0.6s;
}

.flip-card-front {
    background-color: #ffb900;
}

.blue_flip {
    background: #ebe8fd !important;
}

.pink_flip {
    background: #ffd7e4 !important;
}

.green_flip {
    background: #d4faeb !important;
}

.yellow_flip {
    background: #f5f0bb !important;
}

.flip-card-back {
    background-color: #f1f1f1;
    transform: rotateY(180deg);
}

.Ov_StepNumber {
    position: relative;
    margin-top: 20px;
    color: #000;
}

.Ov_stepInner {
    position: relative;
}

.Ov_StepNumber::before {
    content: attr(data-step-count);
    position: absolute;
    left: 18%;
    font-size: 110px;
    top: 25px;
    padding-bottom: 54px;
    opacity: 0.6;
    font-weight: 600;
    border-radius: 50%;
    padding: 0 40px;
    width: 158px;
    height: 170px;
}

.blue_flip .Ov_StepNumber::before {
    color: #ebe8fd;
    background-color: #cbc5ed;
}

.pink_flip .Ov_StepNumber::before {
    color: #ffd7e4;
    background-color: #fdb9cf;
}

.green_flip .Ov_StepNumber::before {
    color: #d4faeb;
    background-color: #a4e7cc;
}

.yellow_flip .Ov_StepNumber::before {
    color: #f5f0bb;
    background-color: #e0d98b;
}

.fs-18 {
    font-size: 16px;
}

.fs-14 {
    font-size: 14px;
}

<<<<<<< HEAD
=======

>>>>>>> 40928be9f6525d3c85d043da5e92baa4e939ab5b
.Ov_CkContent li,
.Ov_CkContent ol,
.Ov_CkContent ul {
    list-style: none !important;
    margin: 10px;
    padding: 0;
}

.Ov_CkContent ol li,
.Ov_CkContent ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.5rem;
}

.Ov_CkContent ol li::before,
.Ov_CkContent ul li::before {
    content: url("../img/main/checkmark.png");
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

.Ov_CkContent .image,
.application-content .image {
    text-align: center;
}

.Ov_CkContent .image img,
.application-content .image img {
    max-width: 100%;
    height: auto;
}

.Ov_timeline .list-group .btn.active {
    border-color: rgba(0, 0, 0, 0) !important;
}

.sticky-71 {
    position: sticky;
    top: 71px;
}

.Ov_timelineContent {
    border-left: 2px solid #0948b3;
}

.Ov_timelineBox {
    position: relative;
    scroll-margin: 50px;
}

.uniSection {
    scroll-margin: 110px;
}

.Ov_timelineBox::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -26px;
    display: block;
    border-radius: 50%;
    background: blue;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.Ov_timelineBox::after {
    content: "";
    position: absolute;
    top: 0px;
    left: -30px;
    display: block;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 1;
    background: -moz-radial-gradient(circle,
            rgba(199, 31, 52, 0.4) 0%,
            rgba(199, 31, 52, 0.1) 100%);
    background: -webkit-radial-gradient(circle,
            rgba(199, 31, 52, 0.4) 0%,
            rgba(199, 31, 52, 0.1) 100%);
    background: radial-gradient(circle,
            rgba(199, 31, 52, 0.4) 0%,
            rgba(199, 31, 52, 0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="blue", endColorstr="blue", GradientType=1);
}

.sideNav {
    font-size: 20px;
}

.sideNav.active {
    color: blue;
}

.Ov_timelineBox .number-line {
    margin: 10px auto;
}

.Ov_DateSlot {
    padding: 2px 7px;
    font-weight: 700;
    margin: 16px 3px;
}

.fs-13 {
    font-size: 13px;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .uniSection {
        scroll-margin: 80px;
    }

    .compare_modal {
        top: -10px;
        opacity: 1;
        z-index: 20000;
    }

    .Ov_StepNumber::before {
        left: 65px;
    }

    .Ov_dropdownContent {
        padding: 0 10px;
    }

    .Ov_dropdownContent ul li {
        padding: 10px 0;
    }

    .Ov_dropdownContent li:not(:last-child) {
        border-bottom: 2px solid #e8e8e8;
        border-radius: 0;
    }
}

.pricing-content {
    min-height: 190px;
    max-height: 190px;
    overflow-y: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.Ov_closeSpecMenu {
    display: inline;
}

#missionsection ol {
    list-style: none !important;
    margin: 0;
    padding: 0 15px;
}

#missionsection ol li::before {
    font-size: 16px;
    position: absolute;
    left: 10px;
}

#mission li::before {
    content: "🚀";
}

#vision li::before {
    content: "💡";
}

#values li::before {
    content: "";
}

.Ov_collegeMenu {
    width: 1300px;
}

.Ov_collegeSpecMenuInner {
    min-height: 250px;
    max-height: 420px;
    overflow-y: auto;
    border-radius: inherit;
}

.Ov_collegeMenuOuter {
    width: inherit;
    margin: 0;
    border-radius: inherit;
}

.Ov_colImgGrp {
    display: flex;
    position: relative;
    margin-bottom: 0.75rem;
    align-items: center;
}

.Ov_colImg {
    position: absolute;
    background: #fff;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid black;
}

.Ov_colImg:nth-child(2) {
    left: 20px;
    z-index: 2;
}

.Ov_colImg:nth-child(3) {
    left: 40px;
    z-index: 2;
}

.Ov_colImg:nth-child(4) {
    left: 60px;
    z-index: 2;
}

.Ov_colImg img {
    padding: 1px;
}

.circle-25 img {
    width: 25px;
    height: 25px;
    max-width: 25px;
    max-height: 25px;
}

.circle-40 img {
    width: 40px;
    max-width: 40px;
    height: 40px;
    max-height: 40px;
}

.Ov_colImgText {
    position: absolute;
    left: 70px;
}

.Ov_collegeSpecMenuInner table.dataTable.stripe tbody tr,
table.dataTable.display tbody tr {
    background-color: #fff !important;
}

.table> :not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    background-color: unset !important;
    border-bottom-width: 0px !important;
    -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.dataTables_wrapper .dataTables_filter {
    float: unset !important;
    text-align: unset !important;
    width: 100%;
}

.dataTables_filter label,
.dataTables_filter label input {
    width: inherit !important;
    padding-left: 5px;
    padding-right: 5px;
}

.dataTables_filter label input {
    width: inherit !important;
    line-height: 26px;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #e8e8e8;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0 !important;
}

.Ov_stepfield {
    min-height: 315px;
}

.Ov_customScroll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
.Ov_customScroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 5px;
}

/* Handle */
.Ov_customScroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #f67a3c;
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
}

.Ov_customScroll::-webkit-scrollbar-thumb:window-inactive {
    background: #f67a3c7a;
}

.br-50 {
    border-radius: 50px;
}

.Ov_stepBtnGrp {
    position: fixed;
    bottom: 20px;
    left: 0px;
    width: 100%;
    text-align: center;
}

.Ov_stepCard {
    cursor: pointer;
}

.Ov_roundStepcards {
    padding: 10px 20px;
}

.Ov_stepCardText {
    font-size: 14px;
}

.Ov_stepBtnGrp button {
    width: 20%;
}

.Ov_stepCard:hover {
    border: 1px solid #950013;
    background: blue;
    color: white;
}

.Ov_stepCard.active {
    background: #83ebbd33;
    border: 1px solid #47d093;
}

.Ov_stepCard.active:hover {
    color: rgb(71, 85, 105);
}

.Ov_StepH1 {
    font-size: 32px;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .Ov_stepCardText {
        font-size: 12px;
    }

    .Ov_stepBtnGrp {
        position: fixed;
        bottom: 50px;
        left: 0px;
        width: 100%;
        text-align: center;
        background: #fff;
        margin-top: 10px;
        padding: 10px 0;
    }

    .Ov_stepBtnGrp button {
        width: 40%;
    }

    .Ov_StepH1 {
        font-size: 16px;
    }

    .form-card p.h4 {
        font-size: 14px;
    }
}

.Ov_supportLink {
    color: #fff;
}

.Ov_supportLink:hover {
    color: black !important;
}

.Ov_uniListCompareBadge {
    top: 0;
    right: 6%;
}

.Ov_uniCardText p {
    font-size: 16px;
}

.Ov_uniCardText {
    position: absolute;
    width: 100%;
    bottom: 0px;
    background-color: blue9c;
    color: #fff;
    padding: 5px 0;
    display: none;
}

.Ov_uniCard:hover .Ov_uniCardText {
    display: block;
}

.Ov_uniCard:hover img {
    filter: brightness(70%);
}

.Ov_MobBotMenu {
    display: none;
}

.hs-mega-menu .card {
    min-height: 160px;
}

.Ov_loadingImg {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.loading-animation {
    overflow: hidden;
    background: #d0d0d0;
}

.line {
    margin-top: 15px;
    height: 12px;
    width: 150px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.line1 {
    width: 80px;
    margin-top: 0;
    height: 8px;
}

.line2 {
    width: 40px;
    margin-top: 0;
    height: 10px;
}

.loading-animation::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    animation: loading 1s infinite;
    background: linear-gradient(to right, transparent, #d9d9d9, transparent);
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.w-40 {
    width: 40%;
}

.fs-24 {
    font-size: 24px;
}

.fs-48 {
    font-size: 48px;
}

.Ov_mediaCarouselFrame {
    position: absolute;
    top: -22px;
    right: 124px;
    z-index: 5;
    pointer-events: none;
}

.Ov_courseBtn {
    color: rgb(71, 85, 105);
    border-color: rgb(9, 72, 179);
}

.Ov_courseBtn i {
    color: rgb(9, 72, 179);
}

.Ov_courseBtn:hover {
    background: rgb(9, 72, 179);
    color: #fff;
}

.Ov_courseBtn:hover i {
    color: #fff;
}

.countrySelect {
    flex: 0.2 1 auto !important;
}

.Ov_shareBtn {
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
}

.Ov_shareBtn.dropdown-toggle:after {
    display: none !important;
}

.Ov_Dropdown .dropdown-menu {
    min-width: max-content !important;
    max-width: max-content;
    height: 100%;
}

.Ov_Dropdown:hover .dropdown-menu {
    /* display: flex; */
    /* position: absolute; */
    inset: -10px 0px 0px 0px !important;
    /* margin: 0px; */
    padding: 2px 5px;
    transform: translate3d(30px, 0px, 0px);
}

#menu_cousre tbody tr td {
    padding: 0;
}

#menu_cousre tbody tr td .Ov_menuTopUni.active,
#menu_cousre tbody tr td .Ov_menuTopUni.active p {
    background: rgb(9, 72, 179);
    color: white !important;
}

.Ov_custom-check-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.Ov_custom-check-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.Ov_custom-check-list li::before {
    content: attr(data-marker-icon);
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(72, 195, 120);
}

@media (min-width: 1200px) {

    h2,
    .h2 {
        font-size: 28px;
    }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .form-card {
        max-height: 56vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .Ov_uniCard:hover .Ov_uniCardText {
        display: none;
    }

    .pb-300 {
        padding-bottom: 460px;
    }

    .Ov_students::after {
        right: 11px;
    }

    .Ov_mobileBottomMenu {
        display: block;
        position: fixed;
        bottom: 0;
        background-color: #fff;
        width: 100vw;
        z-index: 5;
    }

    .Ov_MobBotMenu {
        display: block;
        position: fixed;
        bottom: 0;
        background-color: #fff;
        width: 100vw;
        z-index: 5;
    }

    .Ov_MobBotMenu a {
        line-height: 5px;
    }

    .Ov_MobBotMenu i {
        font-size: 16px;
        margin: 0;
    }

    .Ov_MobBotMenu p {
        font-size: 10px;
        margin: 0;
    }

    .Ov_MobBotBadgeOuter {
        position: absolute;
        top: -15px;
        left: 25px;
    }

    .badge_2 {
        left: 10px;
    }

    .Ov_MobBotBadge {
        width: 100%;
        background: blue;
        z-index: 6;
        position: relative;
        color: #fff;
        padding: 2px 5px;
        border-radius: 4px;
        font-weight: 600;
        line-height: 10px;
    }

    .badge_2_bg {
        background: #af0b26;
    }

    .Ov_MobBotBadge:before {
        content: "";
        position: absolute;
        width: inherit;
        height: 100%;
        display: inline-block;
        background-image: linear-gradient(120deg,
                rgba(255, 255, 255, 0) 30%,
                rgba(255, 255, 255, 0.8),
                rgba(255, 255, 255, 0) 70%);
        top: 0;
        left: 0px;
        animation: shine 3.5s infinite linear;
        /* Animation */
    }

    .scroll-top.open {
        top: 85%;
    }

    .Ov_mediaCarouselFrame {
        right: 0px;
    }

    .Ov_Dropdown:hover .dropdown-menu {
        inset: -55px 0px 0px -128px !important;
    }
}

.two-cols {
    columns: 2;
}

.search-result-box {
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}

.Ov_errorMsg {
    background: red;
    color: #fff !important;
    text-align: left;
    font-size: 10px;
    padding: 4px;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px 2px;
    display: inline-block;
}

#ui-datepicker-div {
    z-index: 9999999999 !important;
}

.ck_content a {
    font-weight: 500;
}

.ck_content p,
.ck_content ul,
.ck_content ol {
    color: #222;
    font-weight: 500;
}

.ck_content :is(h2, h3, h4, h5, h6):not(.accordion-header) {
    font-weight: 700;
    color: blue;
}

.ck_content strong {
    font-weight: 700;
}

.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 25vw;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.right .modal-body {
    padding: 15px;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: 0;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.selectorArea {
    min-height: 70vh;
}

.selector_box {
    width: 100%;
    max-height: 230px;
    align-items: center;
    justify-content: center;
    border: 1px dotted red;
    border-radius: 15px;
    background-color: #fff;
    padding: 5px;
}

.selector_box img {
    border-radius: 15px;
}

.video-testi-iframe {
    margin: 10px;
}

.video-testi-iframe iframe {
    box-shadow: 0px 0px 5px 10px #e9eef2;
    border-radius: 16px;
    background: #fff;
}

.counsellor-card {
    border-radius: 1rem;
    overflow: hidden;
}

.counsellor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: blue;
}

.counsellor-designation {
    font-weight: 500;
    color: #363636;
}

.counsellor-img img {
    border-radius: 1rem;
}

.counsellor-img {
    position: relative;
}

.counsellor-exp {
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    width: 90%;
    padding: 5px;
    border-radius: 1rem;
    background-color: #ffca00;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    line-height: 1;
    color: #363636;
}

.counsellor-exp .num {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
}

.split-bg {
    background: blue;
    background: linear-gradient(to right bottom, red 50%, #363636 50%);
    display: block;
}
.h-400 {
    height: 350px;
}
@media screen and (max-width: 768px){
    .split-bg {
        background: blue;
        background: linear-gradient(to bottom, red 50%, #363636 50%);
        display: block;
    }
    .h-400{
        height: 575px;
    }
}



.spec-box {
    background-color: blue;
    position: relative;
border-radius:1rem;
border-top-left-radius:1.5rem;
border-bottom-left-radius:1.5rem
}

.spec-box a {
    color: white;
    font-weight: 600;
}

.spec-box a span {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background-color:blue;
    color:#fff;
    border:5px solid white;
    margin-right:.5rem;
    font-weight:700;
    font-size:1.25rem
}
.offerBtn {
    position: fixed;
    left: -1px;
    top: 40%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0px;
    background: #22366a;
    padding: 10px 10px;
    color: #fff;
    font-weight: 700;
    border-radius: 0 10px 10px 0;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    z-index: 10;
    display: none;
    word-spacing: -5px;
}
.offerBtn i{
    position: absolute;
    top:-15px;
    right: -15px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: blue;
}
.foot-inline-list li:not(:last-child) {
    border-right: 1px solid #ffff;
}
