@charset "utf-8";
@import "color.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');

@-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: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(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: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 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: .75s;
    animation-duration: .75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(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: .8s;
    animation-duration: .8s
}

.animated.faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@media(prefers-reduced-motion: reduce),
(print) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }
}

body {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    /* background-color: var(--color-theme-andprekast-2-hex) !important; */
}

@-ms-viewport {
    width: device-width
}

::-moz-selection {
    background: var(--color-theme-andprekast-4-hex);
    color: var(--color-theme-andprekast-1-hex);
}

::selection {
    background: var(--color-theme-andprekast-4-hex);
    color: var(--color-theme-andprekast-1-hex);
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    height: 100%
}

body {
    overflow-x: hidden
}

a {
    -webkit-text-decoration-skip: objects;
    transition: .4s
}

a:hover {
    text-decoration: none !important;
}

*,
:focus {
    outline: 0
}

*,
ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

::-moz-focus-inner {
    border: 0
}

button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0
}

[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none
}

img {
    max-width: 100%
}

.map-scope {
    width: 100%;
    height: 400px
}

.map-scope .map-info {
    padding: .5rem;
    background: #3c3c3c;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    line-height: 20px
}

.map-scope .map-info h3 {
    font-size: 1rem;
    font-weight: 800
}

.map-scope .map-info a {
    color: #969696
}

.map-scope .map-info a:hover,
.map-scope .map-info a:focus {
    color: #fff
}

.nf404-full {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #242e44;
    min-height: 100vh;
    width: 100%
}

.nf404-full .svg {
    margin-bottom: 2rem;
    min-height: 350px;
    overflow: hidden;
    position: relative
}

.nf404-full .svg svg {
    max-width: 100%
}

.nf404-full h2 {
    font-weight: bold;
    font-size: 25px;
    color: #90cbff;
    margin-bottom: .5rem
}

.nf404-full h3 {
    font-size: 20px;
    color: #90cbff;
    margin-bottom: 2rem
}

.nf404-full a {
    display: inline-block;
    flex: 0 0 auto;
    border: 2px solid #1c91f6;
    padding: 1rem 2rem;
    color: #90cbff;
    border-radius: 3rem;
    box-shadow: inset 0 0 0 #1c91f6;
    transition: .4s
}

.nf404-full a svg {
    margin-right: 1rem;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 200%
}

@media only screen and (max-width : 767px) {
    .nf404-full a svg {
        width: 200%;
        max-width: 200%
    }
}

.nf404-full a:hover {
    box-shadow: inset 0 0 15px rgba(28, 145, 246, .3)
}

.nf404 {
    position: relative;
    text-align: center
}

.nf404 .svg {
    margin-bottom: 2rem;
    min-height: 370px;
    overflow: hidden;
    position: relative
}

.nf404 .svg svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%
}

.nf404 .svg svg g,
.nf404 .svg svg path {
    fill: var(--color-theme-andprekast-4-hex)
}

.nf404 .svg svg line {
    stroke: #2d2d5a
}

@media only screen and (max-width : 767px) {
    .nf404 .svg svg {
        width: 200%;
        max-width: 200%
    }
}

.nf404 h2 {
    font-weight: bold;
    font-size: 25px;
    color: var(--color-theme-andprekast-4-hex);
    margin-bottom: .5rem
}

.nf404 h3 {
    font-size: 20px;
    color: #252549;
    margin-bottom: 2rem
}

.nf404 a {
    display: inline-block;
    border: 2px solid #141427;
    padding: 1rem 2rem;
    color: #141427;
    border-radius: 3rem;
    box-shadow: inset 0 0 0 var(--color-theme-andprekast-4-hex);
    transition: .4s
}

.nf404 a svg {
    margin-right: 1rem;
    display: inline-block
}

.nf404 a svg g,
.nf404 a svg path {
    fill: var(--color-theme-andprekast-4-hex)
}

.nf404 a:hover {
    box-shadow: inset 0 0 15px #212142
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none
}

.title-first h1 {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase
}

ol.breadcrumb li {
    color: #fff
}

ol.breadcrumb li a {
    color: #fff
}

ol.breadcrumb li a:hover {
    color: #ececec
}

ol.breadcrumb li.active {
    color: #fff;
    font-weight: bold
}

ol.breadcrumb li+li:before {
    color: #fff
}

ol.breadcrumb .breadcrumb-item.breadcrumb-item:before {
    color: #fff
}

.alert {
    padding: 0;
    position: relative;
    line-height: 25px;
    border-width: 0;
    margin-bottom: 17px;
    color: #fff
}

.alert .icon {
    width: 55px;
    font-size: 1.846rem;
    vertical-align: middle;
    text-align: center;
    line-height: 22px;
    display: table-cell;
    cursor: default;
    padding-top: 1px
}

.alert .icon span {
    width: 25px
}

.alert .close {
    position: absolute;
    font-size: 1.538rem;
    right: 1.385rem;
    text-shadow: none;
    padding: 1.5388rem 0;
    opacity: .2;
    right: 4px;
    top: -20px
}

.alert .message {
    display: table-cell;
    padding: 1.385rem 2.1542rem 1.385rem .231rem;
    border-left-width: 0
}

.alert .message>p,
.alert .message>ul {
    margin-bottom: 0
}

.alert .message>p+p {
    margin-top: 5px
}

@media only screen and (max-width : 767px) {
    .alert .message {
        font-size: 15px
    }
}

.alert.alert-spec {
    padding: 0;
    position: relative;
    width: 100%
}

.alert.alert-spec>.icon {
    display: table-cell;
    width: 60px;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, .25)
}

.alert.alert-spec>.message {
    display: table-cell;
    padding: 14px 15px;
    border-left-width: 0
}

.alert.alert-icon {
    background-color: #fff;
    border: 0;
    padding: 0;
    position: relative;
    width: 100%;
    display: table;
    table-layout: fixed;
    box-shadow: .5px .9px 0 rgba(0, 0, 0, .07)
}

.alert.alert-icon>.icon {
    position: relative;
    display: table-cell;
    width: 60px;
    text-align: center;
    vertical-align: middle;
    cursor: default
}

.alert.alert-icon>.icon:after {
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -10px;
    width: 0;
    height: 0;
    content: "";
    z-index: 2;
    border-left: 11px solid #fff;
    transform: scale(0.9999);
    border-bottom: 11px solid rgba(0, 0, 0, 0);
    border-top: 11px solid rgba(0, 0, 0, 0)
}

.alert.alert-icon>.message {
    display: table-cell;
    padding: 1.385rem 1.385rem;
    color: #404040;
    border: 1px solid #d4d4d4;
    border-left-width: 0
}

.alert.alert-icon.alert-dismissible .close,
.alert.alert-icon.alert-dismissible .close:focus {
    color: #404040;
    opacity: .35
}

.alert.alert-icon.alert-dismissible .close:hover,
.alert.alert-icon.alert-dismissible .close:focus:hover {
    color: #404040;
    opacity: .5
}

.alert.alert-icon.alert-primary>.icon {
    background-color: #4285f4
}

.alert.alert-icon.alert-primary>.icon:after {
    border-left-color: #4285f4
}

.alert.alert-icon.alert-success>.icon {
    background-color: #34a853
}

.alert.alert-icon.alert-success>.icon:after {
    border-left-color: #34a853
}

.alert.alert-icon.alert-info .icon {
    background-color: #6ba4ff
}

.alert.alert-icon.alert-info .icon:before {
    border-left-color: #6ba4ff
}

.alert.alert-icon.alert-warning>.icon {
    background-color: #fbbc05
}

.alert.alert-icon.alert-warning>.icon:after {
    border-left-color: #fbbc05
}

.alert.alert-icon.alert-danger>.icon {
    background-color: #ea4335
}

.alert.alert-icon.alert-danger>.icon:after {
    border-left-color: #ea4335
}

.alert.alert-icon.alert-light {
    outline-color: #d4d4d4
}

.alert.alert-icon.alert-light>.icon {
    background-color: #fff;
    border-right: 1px solid #d4d4d4
}

.alert.alert-icon.alert-light>.icon:after {
    border-left-color: #fff;
    position: absolute;
    right: -22px;
    top: 50%;
    margin-top: -10px;
    width: 0;
    height: 0;
    content: "";
    z-index: 2;
    border: solid rgba(0, 0, 0, 0);
    border-width: 11px;
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #d4d4d4
}

.alert.alert-icon.alert-light>.message {
    border: 0px
}

.alert.alert-icon.alert-dark>.icon {
    background-color: #a1a1a1
}

.alert.alert-icon.alert-dark>.icon:after {
    border-left-color: #a1a1a1
}

.alert.alert-primary {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.alert.alert-success {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.alert.alert-info {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.alert.alert-warning {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.alert.alert-danger {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.alert.alert-light {
    background-color: rgba(0, 0, 0, 0);
    outline: 1px solid rgba(115, 115, 115, .08);
    color: #404040
}

.alert.alert-light>.icon {
    color: #737373
}

.alert.alert-light.alert-spec>.icon {
    background-color: rgba(115, 115, 115, .08)
}

.alert.alert-dark {
    background-color: #fff
}

.alert.alert-dismissible.alert-primary .close {
    color: #093d94
}

.alert.alert-dismissible.alert-primary .close:hover {
    color: #093d94;
    opacity: .5
}

.alert.alert-dismissible.alert-success .close {
    color: #103319
}

.alert.alert-dismissible.alert-success .close:hover {
    color: #103319;
    opacity: .5
}

.alert.alert-dismissible.alert-info .close {
    color: #0050d1
}

.alert.alert-dismissible.alert-info .close:hover {
    color: #0050d1;
    opacity: .5
}

.alert.alert-dismissible.alert-warning .close {
    color: #654c02
}

.alert.alert-dismissible.alert-warning .close:hover {
    color: #654c02;
    opacity: .5
}

.alert.alert-dismissible.alert-danter .close {
    color: #79150d
}

.alert.alert-dismissible.alert-danter .close:hover {
    color: #79150d;
    opacity: .5
}

.alert.alert-dismissible.alert-light .close {
    color: #404040;
    opacity: .35
}

.alert.alert-dismissible.alert-light .close:hover {
    color: #404040;
    opacity: .5
}

.alert.alert-dismissible.alert-dark .close {
    color: #fff;
    opacity: .35
}

.alert.alert-dismissible.alert-dark .close:hover {
    color: #404040;
    opacity: .5
}

.alert.alert-spec.alert-dismissible.alert-success {
    color: #03982a
}

.alert.alert-spec.alert-dismissible.alert-success div.icon span:before {
    color: #39a355
}

.alert.alert-spec.alert-dismissible.alert-info {
    color: #2858a2
}

.alert.alert-spec.alert-dismissible.alert-info div.icon span:before {
    color: #4273bd
}

.alert.alert-spec.alert-dismissible.alert-warning {
    color: #b57e01
}

.alert.alert-spec.alert-dismissible.alert-warning div.icon span:before {
    color: #dca321
}

.alert.alert-spec.alert-dismissible.alert-danger {
    color: #e30505
}

.alert.alert-spec.alert-dismissible.alert-danger div.icon span:before {
    color: red
}

.alert.alert-spec.alert-dismissible.alert-primary {
    color: #00959e
}

.alert.alert-spec.alert-dismissible.alert-primary div.icon span:before {
    color: #2fc1ca
}

.captcha {
    position: relative
}

.captcha a {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 26px;
    height: 26px;
    background: #b10707;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition-duration: .8s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    color: #fff;
    margin-top: -13px
}

.captcha a:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.captcha img.captcha_img {
    width: 100%;
    height: 35px;
    position: relative;
    max-height: calc(1.5em + .75rem + 2px);
    border: 1px solid #ced4da;
    border-radius: .25rem
}

a.btn-facebook,
button.btn-facebook {
    background: #3b5998;
    color: #fff;
    border-color: #3b5998
}

a.btn-facebook:hover,
button.btn-facebook:hover {
    background: #293f70;
    color: #fff;
    border-color: #293f70
}

a.btn-facebook:focus,
button.btn-facebook:focus {
    box-shadow: 0 0 0 .2rem rgba(59, 89, 152, .5)
}

.form-group .col-form-label {
    display: block
}

.form-group .form-control {
    font-size: .875rem
}

.form-group .input-group .input-group-prepend .input-group-text {
    font-size: .875rem
}

.form-group .input-group .custom-file .custom-file-label::after {
    display: none
}

.form-group .submit {
    display: flex;
    justify-content: flex-end
}

.form-group .submit .btn {
    display: block;
    font-size: .875rem
}

.select2-container {
    display: block
}

.select2-container .select2-selection--single {
    height: calc(1.5em + .75rem - 1px);
    width: 100%;
    border-color: #999
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + .75rem);
    padding-left: 1rem
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #122c48
}

.select2-results__option {
    padding: .5rem 1rem
}

.support .support-message-area .media img {
    object-fit: cover;
    width: 64px;
    height: 64px
}

.modal-custom .modal-header {
    border-bottom: 0
}

.modal-custom .modal-icon {
    display: block;
    text-align: center;
    margin-top: -2rem
}

.modal-custom .modal-icon>* {
    display: inline-block;
    font-size: 3.75rem
}

.modal-custom .modal-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem
}

.modal-custom .modal-summary {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.accordion .btn-link {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    color: #07101b;
    padding: .75rem
}

.accordion .btn-link .mdi {
    transition: .4s;
    transform: rotate(90deg)
}

.accordion .btn-link.collapsed .mdi {
    transform: rotate(0)
}

.accordion .btn-link.collapsed:hover .mdi {
    transform: rotate(45deg)
}

.section-loader {
    position: relative;
    min-height: 18vh
}

.section-loader:after {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .7);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 2
}

.section-loader .section-loader-spinner {
    display: none;
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -20px;
    margin-right: -20px;
    z-index: 3
}

.section-loader .section-loader-spinner svg {
    -webkit-animation: spinner-rotation 1.4s linear infinite;
    animation: spinner-rotation 1.4s linear infinite;
    stroke: #4285f4
}

.section-loader .section-loader-spinner svg .circle {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: spinner-turn 1.4s ease-in-out infinite;
    animation: spinner-turn 1.4s ease-in-out infinite
}

.section-loader-active:after {
    visibility: visible;
    opacity: 1
}

.section-loader-active .section-loader-spinner {
    display: block
}

@-webkit-keyframes spinner-rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
}

@keyframes spinner-rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
}

@-webkit-keyframes spinner-turn {
    0% {
        stroke-dashoffset: 187
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg)
    }
}

@keyframes spinner-turn {
    0% {
        stroke-dashoffset: 187
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg)
    }
}

.flex {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.upload-progress {
    height: 5px;
    margin: 10px 0;
    opacity: 0
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none
}

.album {
    padding: 4rem 0
}

.album .album-title {
    position: relative
}

.album .album-title h4 {
    color: #07101b
}

.album .swiper-container .swiper-slide a {
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%
}

.album .swiper-container .swiper-slide a img {
    display: block;
    object-fit: cover;
    height: 100%;
    transition: .4s;
    transform: scale(1)
}

.album .swiper-container .swiper-slide a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .1);
    opacity: 1;
    transition: .4s
}

.album .swiper-container .swiper-slide a:hover img {
    transform: scale(1.1)
}

.album .swiper-container .swiper-slide a:hover:after {
    opacity: 0
}

.album .swiper-button-next,
.album .swiper-button-prev {
    background: rgba(0, 0, 0, 0) !important
}

.album .swiper-button-next svg path,
.album .swiper-button-prev svg path {
    fill: #414141
}

label.custom-control-label {
    line-height: 24px !important;
    cursor: pointer
}

.user-sidebar .list-group a {
    color: #353535;
    background: #f5f5f5;
    border: none;
    margin-bottom: 0;
    border-radius: 0 !important
}

.user-sidebar .list-group a.active {
    background: #122c48;
    border-color: #122c48;
    color: #fff
}

.user-sidebar .list-group a+a {
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.list-group a i {
    margin-right: 10px
}

.user-sidebar .list-group a:hover {
    background: #122c48;
    color: #fff;
    border-color: #122c48
}

.user-sidebar .list-group a.active:hover {
    background: #111;
    color: #fff;
    border-color: #111
}

.user-sidebar .list-group a:last-child:hover {
    background: #ea3f30;
    border-color: #ea3f30;
    color: #fff
}

h3.user-head {
    font-weight: 500;
    padding-bottom: 18px;
    border-bottom: 1px solid #ededed;
    font-size: 22px;
    margin-bottom: 18px
}

h3.user-head span {
    float: right
}

h3.user-head i {
    font-size: 20px
}

.userHeader {
    margin-bottom: 20px
}

.myOrderTable table td,
.kargoTakip table td {
    font-size: 12px
}

.myOrderTable table th,
.kargoTakip table th {
    font-size: 13px
}

#userSms {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px
}

form#userSms p {
    width: 100%
}

#userSms .form-control {
    width: calc(100% - 130px);
    height: 50px
}

.user-home {
    padding: 30px !important;
    min-height: 455px;
    display: inline-block;
    width: 100%
}

.user-home h4 {
    font-size: 25px
}

p.mb0 {
    -webkit-margin-after: 0;
    margin-block-end: 0
}

h5.alt-title {
    font-weight: 500;
    margin-top: 20px
}

.edit a:hover {
    background: #36312c;
    color: #fff
}

.adres-sol {
    padding-right: 13px;
    max-width: 240px
}

.adres-top .info,
.edit a {
    background: #fff;
    float: left
}

.adres-item.adres-ekle a i {
    display: block;
    text-align: center;
    margin-bottom: 8px
}

.adres-item.adres-ekle a {
    line-height: normal;
    font-weight: 700;
    color: #ededed;
    height: 100%;
    padding: 0;
    display: block;
    text-align: center;
    transition: all .4s;
    min-height: 243px;
    padding-top: 43px
}

.adres-item.adres-ekle a:hover,
.adres-item.adres-ekle a:hover i:before {
    color: #122c48;
    transition: all .4s
}

.adres-item.adres-ekle a i:before {
    color: #eaeaea;
    display: inline-block;
    font-size: 110px;
    transition: all .4s
}

.adres-sol p {
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 0;
    height: 75px;
    display: flex;
    align-items: center
}

.edit {
    padding-left: 0;
    width: 110px
}

.edit a {
    font-size: 9px;
    width: 50px;
    text-align: center;
    height: 54px;
    padding-top: 10px;
    transition: all .4s;
    border-radius: 5px !important;
    border: 1px solid #36312c;
    margin: 0 2px;
    float: left;
    color: #000
}

.edit a i {
    display: block;
    text-align: center;
    margin-bottom: 3px
}

.edit a i:before {
    color: #36312c;
    margin-left: 0;
    font-size: 18px
}

.edit a:hover i:before {
    color: #fff
}

.adres-item {
    padding: 0;
    overflow: hidden;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    margin-bottom: 20px
}

.adres-top {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 0;
    float: left;
    min-height: 90px;
    display: flex;
    align-items: center
}

.adres-top .info {
    width: 100%;
    padding: 0
}

.adres-top .info span {
    padding: 2px 10px !important;
    color: #000;
    font-weight: 400;
    float: left;
    width: 100%;
    text-align: center
}

.adres-top .info span:first-of-type {
    padding-left: 0;
    font-weight: 700
}

.adres-top .edit a {
    padding: 5px 15px;
    color: #6b6b6b;
    font-weight: 400;
    font-size: 12px
}

.adres-top .edit a:first-of-type {
    border-left: 1px solid #c5c5c5
}

.adres-top .edit .adres-del {
    color: #ed131f
}

.adress.adres-bilgi {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%
}

.adres-bottom {
    width: 100%;
    background: #122c48;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px
}

.table td,
.table th {
    border: 1px solid #dee2e6 !important
}

.table td {
    background: #fff;
    vertical-align: middle
}

.siparisForm {
    margin-top: 20px
}

.userCoupon .couponTable {
    margin-top: 20px
}

.elements ul,
.elements ol {
    padding-left: 20px
}

.elements ul li,
.elements ol li {
    list-style: inherit !important;
    line-height: 25px;
    font-size: 16px;
    font-weight: 300
}

.user-sidebar ul li {
    float: left;
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    border-radius: 0
}

.user-sidebar {
    margin: 0px 0px 15px 0px;
    border: 1px solid rgba(0, 0, 0, .05)
}

.user-sidebar ul li a {
    padding: 14px 20px;
    display: block;
    color: #000
}

.user-sidebar ul li+li a {
    border-top: 1px solid #ededed
}

.user-sidebar h4 {
    padding: 20px 20px;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #ededed
}

.user-sidebar ul li a:hover {
    color: #fff;
    background: #122c48
}

.user-sidebar ul li:last-child a i {
    margin-right: 7px
}

.user-sidebar ul li:last-child a:hover {
    background: #dc3545
}

h5.user-title i {
    padding-right: 4px
}

h5.user-title {
    font-weight: 500;
    margin-bottom: 20px
}

.page.muzikler .card h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    max-height: 34px;
    font-weight: 500;
    margin-bottom: 1px
}

.muzikler a {
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 7px
}

.basinItem li {
    width: 23%;
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, .24);
    transition: all .3s ease-in;
    border-radius: 3px;
    padding: 10px;
    margin: 0 1%;
    top: 0;
    position: relative
}

.basinItem li:hover {
    top: -7px
}

.basinImg a {
    height: 160px;
    display: flex;
    align-items: center
}

.basinImg a img {
    display: block;
    width: 100%
}

.basinBilgi {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 50px
}

.basinBaslik {
    width: 20%
}

.basinBaslik h3 {
    font-weight: 500;
    text-transform: uppercase
}

.basinAciklama {
    width: 100%
}

.cc-window {
    background: #252e39;
    z-index: 99 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    flex-direction: row !important;
    max-width: 100% !important
}

.cc-window .cc-message {
    font-size: 14px;
    width: 90% !important;
    margin: 1em 2em 1em !important
}

.cc-window .cc-compliance a {
    background: #1a1e2c;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important
}

.cc-window .cc-compliance a:hover {
    background: #242e50
}

.cc-window .cc-compliance a:focus {
    background: #242e50
}

@media only screen and (max-width : 991px) {
    body {
        padding-top: 65px
    }

    body.mobile-menu-open {
        overflow: hidden
    }
}

header.header {
    position: relative;
    z-index: 53;
    transition: .4s
}

@media only screen and (max-width : 991px) {
    header.header {
        height: 65px;
        position: fixed;
        left: 0;
        right: 0;
        top: 0
    }
}

header.header .header-top {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    display: none
}

@media only screen and (max-width : 991px) {
    header.header .header-top {
        display: none
    }
}

header.header .header-bottom {
    background: rgb(38 172 210 / 90%);
    position: fixed;
    width: 100%;
    transition: .4s;
    margin-top: 25px
}

header.header .header-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
}

header.header .header-bottom:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
}

@media only screen and (max-width : 991px) {
    header.header .header-bottom {
        background: #fff;
        margin-top: 0
    }
}

header.header .login {
    height: 52px;
    position: relative;
    z-index: 53
}

header.header .login>ul {
    height: 52px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

header.header .login>ul>li {
    position: relative;
    height: 100%;
    flex: 1 1 0
}

header.header .login>ul>li>a {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    color: #07101b;
    white-space: nowrap
}

header.header .login>ul>li>a i {
    padding-right: 12px
}

header.header .login>ul>li>a span {
    padding-left: 5px
}

header.header .login>ul>li>a:hover {
    color: #4c6177
}

header.header .login>ul>li>ul {
    transition: .25s;
    position: absolute;
    background: #fff;
    top: 100%;
    opacity: 0;
    left: 0;
    width: auto;
    pointer-events: none
}

header.header .login>ul>li>ul>li {
    position: relative
}

header.header .login>ul>li>ul>li>a {
    display: block;
    padding: .5rem 1.5rem .5rem 1rem;
    font-size: 14px;
    color: #07101b;
    white-space: nowrap
}

header.header .login>ul>li>ul>li>a:hover {
    padding: .5rem 1rem .5rem 1.5rem;
    color: rgba(0, 0, 0, .7)
}

header.header .login>ul>li:hover>ul {
    opacity: 1;
    top: 100%;
    border-top: 1px solid #122c48;
    pointer-events: auto
}

header.header .language {
    height: 52px
}

header.header .language ul {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

header.header .language ul li {
    height: 100%;
    flex: 1 1 0
}

header.header .language ul li a {
    color: #07101b;
    font-weight: 700;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0 0 20px
}

header.header .language ul li a:hover {
    color: #4c6177
}

header.header nav.header-scope {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    transition: .4s
}

header.header nav.header-scope .logo {
    position: relative;
    z-index: 153;
    width: 300px;
    position: relative;
    user-select: none
}

header.header nav.header-scope .logo a.navbar-brand {
    padding: 0;
    margin: 0;
    font-size: initial;
    line-height: normal
}

header.header nav.header-scope .logo a.navbar-brand img:nth-child(2) {
    opacity: 0;
    transition: .4s;
    position: absolute;
    left: 0px;
    width: 300px;
}

@media only screen and (max-width : 991px) {
    header.header nav.header-scope .logo a.navbar-brand img:nth-child(2) {
        opacity: 1
    }
}

@media only screen and (max-width : 767px) {
    header.header nav.header-scope .logo a.navbar-brand img:nth-child(2) {
        width: 300px
    }
}

@media only screen and (max-width : 991px) {
    header.header nav.header-scope .logo {
        max-width: 15rem
    }
}

header.header nav.header-scope .menu {
    width: 100%;
    height: 100%;
    padding: 0 0 0 1rem
}

@media only screen and (max-width : 991px) {
    header.header nav.header-scope .menu {
        display: none
    }
}

header.header nav.header-scope .menu ul.navbar-nav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    height: 100%
}

header.header nav.header-scope .menu ul.navbar-nav>li>a {
    text-transform: uppercase;
    display: block;
    padding: 22px 0;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    color: #e7e7e7
}

header.header nav.header-scope .menu ul.navbar-nav>li>a:hover {
    color: var(--color-theme-andprekast-1-hex);
    text-decoration: none;
}

header.header nav.header-scope .menu ul.navbar-nav>li>a:before {
    content: "";
    position: absolute;
    top: 7px;
    width: 0;
    height: 3px;
    background: #fff;
    transition: .4s
}

header.header nav.header-scope .menu ul.navbar-nav>li ul {
    position: absolute;
    top: 100%;
    opacity: 0;
    background: #fff;
    transition: .4s;
    width: auto; /*230px;*/
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2)
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li {
    width: 100%;
    position: relative
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li a {
    padding: 10px 15px 10px 25px;
    display: block;
    position: relative;
    background: rgba(0, 0, 0, 0);
    color: #888787
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li a:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 1px;
    background: #888787;
    top: 50%;
    left: 10px;
    transition: .4s
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li a:hover {
    padding-lefT: 35px;
    background: none;
    color: var(--color-theme-andprekast-4-hex);
    text-decoration: none;
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li a:hover:before {
    width: 15px;
    background: var(--color-theme-andprekast-4-hex)
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li ul {
    right: 0;
    left: 100%;
    top: 0;
    border-left: 1px solid rgba(0, 0, 0, .3)
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li ul li a {
    padding: 0 15px
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li+li a {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li:nth-child(1) a {
    border-top: 0
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li:nth-child(n+8)>ul {
    top: initial;
    bottom: 0
}

header.header nav.header-scope .menu ul.navbar-nav>li ul li:hover>ul li a {
    padding: 10px 15px
}

header.header nav.header-scope .menu ul.navbar-nav>li ul>li {
    position: relative
}

header.header nav.header-scope .menu ul.navbar-nav>li ul>li>ul {
    position: absolute;
    opacity: 0;
    top: 0
}

header.header nav.header-scope .menu ul.navbar-nav>li.active>a {
    color: var(--color-theme-andprekast-1-hex);
    font-weight: 800;
}

header.header nav.header-scope .menu ul.navbar-nav>li.active>a:before {
    width: initial;
    left: -2px;
    right: -2px;
    top: initial;
    bottom: 0
}

header.header nav.header-scope .menu ul.navbar-nav>li.active ul li a {
    color: #888787 !important
}

header.header nav.header-scope .menu ul.navbar-nav>li.active ul li a:hover {
    color: var(--color-theme-andprekast-4-hex) !important;
    background: rgba(0, 0, 0, .1) !important;
}

header.header nav.header-scope .menu ul.navbar-nav>li.active ul li.active {
    color: var(--color-theme-andprekast-4-hex)
}

header.header nav.header-scope .menu ul.navbar-nav>li:hover>ul {
    opacity: 1;
    pointer-events: auto
}

header.header nav.header-scope .menu ul.navbar-nav>li+li {
    margin-left: 40px
}

header.header nav.header-scope .menu>ul.navbar-nav>li {
    display: flex;
    height: 100%;
    align-items: center
}

header.header nav.header-scope .menu>ul.navbar-nav>li>a {
    white-space: nowrap
}

header.header nav.header-scope .language {
    margin-left: 32px
}

header.header nav.header-scope .language ul li a {
    padding: 0 0 0 10px;
    font-weight: normal;
    font-size: 14px;
    color: #e7e7e7
}

header.header nav.header-scope .language ul li a svg {
    margin-right: 5px;
    fill: #e7e7e7;
    transition: .4s
}

header.header nav.header-scope .language ul li a:hover {
    color: #fff
}

header.header nav.header-scope .language ul li a:hover svg {
    fill: #fff
}

@media only screen and (max-width : 991px) {
    header.header nav.header-scope .language {
        display: none
    }
}

header.header .search {
    position: relative;
    right: 0;
    top: 0;
    width: 350px;
    display: none
}

header.header .search form.nav_search {
    position: relative
}

header.header .search form.nav_search input#search-input {
    width: 100%
}

header.header .search form.nav_search input#search-input:focus {
    box-shadow: none;
    border: 1px solid #3b5673
}

header.header .search form.nav_search button.btn.btn-search {
    position: absolute;
    right: 0;
    background: none;
    pointer-events: none;
    padding: 0;
    margin: 0;
    right: 10px
}

header.header .search form.nav_search .result-wrap {
    position: absolute;
    z-index: 99;
    right: 0;
    min-width: 20rem;
    display: none;
    top: 100%;
    margin-top: -2px;
    box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, .3)
}

header.header .search form.nav_search .result-wrap .result {
    position: relative
}

header.header .search form.nav_search .result-wrap .result .not-found {
    padding: 1rem;
    background: #fff
}

header.header .search form.nav_search .result-wrap .result .list-group a.list-group-item img {
    width: 30px;
    display: inline-block;
    margin-right: .1rem
}

@media only screen and (max-width : 991px) {
    header.header .search {
        position: fixed;
        top: 1rem;
        right: 5rem;
        left: 5rem;
        height: 90px;
        width: auto
    }

    header.header .search form.nav_search {
        height: 100%
    }

    header.header .search form.nav_search input#search-input {
        position: absolute;
        top: 100%;
        margin-top: -3.5rem;
        height: 0;
        padding: 0;
        opacity: 0;
        transition: .4s;
        width: auto;
        min-width: 20rem;
        max-width: 20rem;
        right: 0
    }

    header.header .search form.nav_search button.btn.btn-search {
        top: 0rem;
        right: 0rem;
        width: 3rem;
        height: 3rem;
        background: #122c48;
        color: #fff;
        pointer-events: all;
        outline: none !important
    }

    header.header .search form.nav_search .result-wrap {
        margin-top: .75rem
    }

    header.header .search.open form.nav_search input#search-input {
        margin-top: -1.5rem;
        padding: .375rem .75rem;
        height: calc(1.5em + .75rem + 2px);
        opacity: 1
    }
}

@media only screen and (max-width : 480px) {
    header.header .search form.nav_search input#search-input {
        width: 100%;
        min-width: 18rem;
        max-width: 18rem;
        right: 50%;
        transform: translate(50%, 0)
    }

    header.header .search form.nav_search .result-wrap {
        right: 50%;
        transform: translate(50%, 0);
        min-width: 18rem
    }
}

header.header.fixed-active .header-bottom {
    margin-top: 0;
    background: #fff
}

header.header.fixed-active .header-bottom .header-scope:before {
    display: none
}

header.header.fixed-active .header-bottom .header-scope .menu .navbar-nav>li>a {
    color: #888787
}

header.header.fixed-active .header-bottom .header-scope .menu .navbar-nav>li>a:hover {
    color: var(--color-theme-andprekast-4-hex)
}

header.header.fixed-active .header-bottom .header-scope .menu .navbar-nav>li>a:before {
    opacity: 0
}

header.header.fixed-active .header-bottom .header-scope .menu .navbar-nav>li.active a {
    color: var(--color-theme-andprekast-4-hex)
}

header.header.fixed-active .header-bottom .header-scope .language ul li a {
    color: #888787
}

header.header.fixed-active .header-bottom .header-scope .language ul li a svg {
    fill: #888787
}

header.header.fixed-active .header-bottom .header-scope .language ul li a:hover {
    color: var(--color-theme-andprekast-4-hex)
}

header.header.fixed-active .header-bottom .header-scope .language ul li a:hover svg {
    fill: var(--color-theme-andprekast-4-hex)
}

header.header.fixed-active .header-bottom .header-scope .logo img:nth-child(2) {
    opacity: 1
}

@media only screen and (max-width : 767px) {
    header.header.fixed-active .header-bottom .header-scope {
        height: 90px
    }
}

header.header.fixed-active .header-bottom {
    box-shadow: 0 0 20px 0px rgb(43 71 102);
}

header.header.fixed-active.shadowed .header-bottom {
    box-shadow: 0 0 20px 0px rgb(43 71 102 / 30%);
}

.mobile-menu {
    display: none;
    position: fixed;
    right: -110%;
    top: 65px;
    background: linear-gradient(to bottom, var(--color-theme-andprekast-4-hex) 50%, rgba(23, 23, 51, 0.9882352941) 100%);
    transition: .4s;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    min-height: 100vh;
    padding-bottom: 0
}

@media only screen and (max-width : 991px) {
    .mobile-menu {
        display: block
    }
}

@media only screen and (max-width : 767px) {
    .mobile-menu {
        width: 100%
    }
}

.mobile-menu .mobile-nav-title h3 {
    position: absolute;
    top: 25px;
    left: 45px;
    display: none;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    z-index: 9
}

.mobile-menu .mobile-nav-title h3 span:nth-child(1) {
    opacity: 1;
    visibility: visible;
    transition: .4s
}

.mobile-menu .mobile-nav-title h3 span:nth-child(2) {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .4s
}

@media only screen and (max-width : 991px) {
    .mobile-menu .mobile-nav-title h3 {
        display: block
    }
}

@media only screen and (max-width : 767px) {
    .mobile-menu .mobile-nav-title h3 {
        display: block;
        top: 25px;
        left: 25px
    }
}

.mobile-menu .hamburger-menu {
    position: fixed;
    right: 2.5rem;
    top: 15px;
    width: 2.1rem;
    height: 3rem;
    cursor: pointer;
    z-index: 53;
    transition: .3s
}

.mobile-menu .hamburger-menu .bar {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--color-theme-andprekast-4-hex);
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -1px;
    transition: margin .15s ease-out .25s, opacity .15s ease-out .25s, transform .15s ease-out .1s
}

.mobile-menu .hamburger-menu .bar.first {
    margin-top: -12px
}

.mobile-menu .hamburger-menu .bar.third {
    margin-top: 10px
}

.mobile-menu .hamburger-menu.fixed-active {
    top: .6rem
}

@media only screen and (max-width : 767px) {
    .mobile-menu .hamburger-menu {
        right: 1.5rem;
        top: 15px;
        width: 1.9rem
    }
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .mobile-menu .hamburger-menu {
        right: 1.5rem;
        top: 15px;
        width: 1.9rem
    }
}

@media only screen and (max-height: 500px)and (orientation: landscape) {
    .mobile-menu .hamburger-menu {
        right: 5rem
    }
}

@keyframes animate-arrow-1 {
    0% {
        transform: translateX(40px);
        opacity: 0
    }

    70%,
    100% {
        transform: translateX(0px);
        opacity: 1
    }
}

@keyframes animate-arrow-2 {
    0% {
        transform: translateX(20px);
        opacity: 0
    }

    70%,
    100% {
        transform: translateX(0px);
        opacity: .5
    }
}

@keyframes animate-arrow-3 {
    0% {
        transform: translateX(10px);
        opacity: 0
    }

    70%,
    100% {
        transform: translateX(0px);
        opacity: .3
    }
}

.mobile-menu .mobile-menu-back {
    transform: scale(0);
    position: fixed;
    right: 5rem;
    top: 1rem;
    width: 3rem;
    height: 3rem;
    z-index: 53;
    transition: .4s
}

.mobile-menu .mobile-menu-back a {
    position: relative;
    border: 1px solid #fff;
    bottom: 0;
    color: #fff;
    height: 3rem;
    top: 10px;
    line-height: 3rem;
    position: absolute;
    width: 100%;
    transition: .1s all ease-in
}

.mobile-menu .mobile-menu-back a span.arrow {
    display: block;
    width: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
    height: 2rem;
    position: absolute
}

.mobile-menu .mobile-menu-back a span.arrow span {
    display: block;
    width: 8px;
    height: 2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute
}

.mobile-menu .mobile-menu-back a span.arrow span i {
    position: absolute;
    left: .3rem;
    top: 0;
    font-size: 2rem
}

.mobile-menu .mobile-menu-back a span.arrow span.arrow-1 {
    left: 0px;
    opacity: 1
}

.mobile-menu .mobile-menu-back a span.arrow span.arrow-2 {
    left: 10px;
    opacity: .5;
    display: none
}

.mobile-menu .mobile-menu-back a span.arrow span.arrow-3 {
    left: 20px;
    opacity: .3;
    display: none
}

.mobile-menu .mobile-menu-back.active {
    transform: scale(1)
}

@keyframes menuListAnimate {
    0% {
        margin-top: 40px;
        opacity: 0
    }

    100% {
        margin-top: 0;
        opacity: 1
    }
}

.mobile-menu .mobile-nav {
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    max-height: 100vh;
    padding-bottom: 200px;
    overflow-y: auto
}

.mobile-menu .mobile-nav::-webkit-scrollbar {
    width: 0px
}

.mobile-menu .mobile-nav .language-item {
    padding: 10px 40px 0
}

.mobile-menu .mobile-nav .language-item ul {
    display: flex;
    align-items: center
}

.mobile-menu .mobile-nav .language-item ul li.lang-active a {
    color: #f2f2f2
}

.mobile-menu .mobile-nav .language-item ul li+li {
    margin-left: 10px;
    padding-left: 10px
}

.mobile-menu .mobile-nav .language-item ul li a {
    padding: 5px;
    margin: 0;
    font-size: 13px;
    color: #fff
}

@media only screen and (max-width : 767px) {
    .mobile-menu .mobile-nav .language-item {
        padding: 10px 22px 0
    }
}

.mobile-menu .mobile-nav>ul {
    position: relative;
    padding: 10px 0px;
    width: 100%
}

.mobile-menu .mobile-nav>ul>li:first-child>a {
    padding-top: 0
}

.mobile-menu .mobile-nav>ul>li:first-child>a:before,
.mobile-menu .mobile-nav>ul>li:first-child>a:after {
    top: 30%
}

.mobile-menu .mobile-nav>ul li a {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 10px;
    flex-direction: initial;
    align-items: center;
    text-decoration: none;
}

@media only screen and (max-width : 767px) {
    .mobile-menu .mobile-nav>ul {
        padding: 0
    }

    .mobile-menu .mobile-nav>ul li a {
        padding: 15px
    }
}

.mobile-menu .mobile-nav ul li a.bid-btn {
    margin-top: 20px;
    opacity: .7
}

.mobile-menu .mobile-nav ul li a.sub-item.active {
    color: #f2f2f2;
    border-bottom: none
}

.mobile-menu .mobile-nav ul li a.sub-item.active:before,
.mobile-menu .mobile-nav ul li a.sub-item.active:after {
    background: #f2f2f2
}

.mobile-menu .mobile-nav ul li a.sub-item.active:before {
    height: 0
}

.mobile-menu .mobile-nav ul li a.sub-item.active:after {
    height: 8px
}

.mobile-menu .mobile-nav ul li a.sub-item:before,
.mobile-menu .mobile-nav ul li a.sub-item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 3px;
    height: 12px;
    background: #fff;
    transition: .4s
}

.mobile-menu .mobile-nav ul li a.sub-item:before {
    transform: translateY(-50%)
}

.mobile-menu .mobile-nav ul li a.sub-item:after {
    transform: translateY(-50%) rotate(90deg)
}

.mobile-menu .mobile-nav ul li a i {
    margin-left: 10px
}

.mobile-menu .mobile-nav ul li ul {
    background: #1f354c;
    padding: 0 0 5px;
    display: none;
    padding-left: 30px
}

@media only screen and (max-width : 767px) {
    .mobile-menu .mobile-nav ul li ul {
        padding-left: 0px
    }
}

.mobile-menu .mobile-nav ul li ul li a {
    border-bottom: none;
    font-size: 15px;
    padding: 15px 25px;
    font-weight: 500
}

.mobile-menu .mobile-nav ul li ul li a.sub-item:before,
.mobile-menu .mobile-nav ul li ul li a.sub-item:after {
    right: 30px
}

.mobile-menu .mobile-nav ul li ul li ul {
    background: #0c1e31
}

.mobile-menu .mobile-nav ul li ul li ul li a {
    padding: 15px 35px
}

.mobile-menu .mobile-nav ul li ul li ul li a.sub-item:before,
.mobile-menu .mobile-nav ul li ul li ul li a.sub-item:after {
    right: 40px
}

.mobile-menu .mobile-nav ul li ul li ul li ul {
    background: #071625
}

.mobile-menu .mobile-nav ul li ul li ul li ul a {
    padding: 15px 50px
}

.mobile-menu .mobile-nav ul li.active {
    position: relative;
    z-index: 34
}

.mobile-menu .mobile-nav ul li.active ul {
    display: block
}

.mobile-menu.open {
    right: 0
}

.mobile-menu.open .hamburger-menu {
    right: 2rem;
    top: 15px !important
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .mobile-menu.open .hamburger-menu {
        top: 15px !important;
        right: 2rem
    }
}

.mobile-menu.open .hamburger-menu .bar {
    background: var(--color-theme-andprekast-4-hex)
}

.mobile-menu.open .hamburger-menu .bar.first {
    margin-top: 0px;
    transform: translateX(-20%) rotate(45deg)
}

.mobile-menu.open .hamburger-menu .bar.second {
    opacity: 0
}

.mobile-menu.open .hamburger-menu .bar.third {
    margin-top: 0px;
    transform: translateX(-20%) rotate(-45deg)
}

.mobile-menu.open .mobile-nav>ul>li {
    animation: menuListAnimate .5s ease-in-out 0s both
}

.mobile-menu.open .mobile-nav>ul>li+li {
    animation: menuListAnimate .5s ease-in-out .1s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li {
    animation: menuListAnimate .5s ease-in-out .2s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .3s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .4s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .5s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .6s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .7s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .8s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li+li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out .9s both
}

.mobile-menu.open .mobile-nav>ul>li+li+li+li+li+li+li+li+li+li+li {
    animation: menuListAnimate .5s ease-in-out 1s both
}

section.slider {
    height: calc(100vh - 143px)
}

section.slider .main-slide {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

section.slider .main-slide .swiper-slide {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative
}

section.slider .main-slide .swiper-slide .slider-content {
    width: 100%;
    text-align: center;
}

section.slider .main-slide .swiper-slide .slider-content h2.slide-head {
    font-weight: 600;
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    background: rgb(0 0 0 / 36%);
}

section.slider .main-slide .swiper-slide .slider-content .slide-text {
    font-weight: normal;
    font-size: 30px;
    letter-spacing: .08em;
    color: #fff;
    text-transform: uppercase;
    background: rgb(0 0 0 / 36%);
}

section.slider .main-slide .swiper-slide .slider-content a {
    color: #fff;
    padding: 12px 25px;
    margin-top: 10px;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .1em;
    transition: .4s;
    transition-duration: .4s !important;
    border-radius: 2px;
    font-weight: 600;
}

section.slider .main-slide .swiper-slide .slider-content a:before {
    content: "";
    background: var(--color-theme-andprekast-6-hex);
    z-index: -1;
    transition: .4s;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

section.slider .main-slide .swiper-slide .slider-content a:hover {
    color: var(--color-theme-andprekast-6-hex);
    text-decoration: none;
}

section.slider .main-slide .swiper-slide .slider-content a:hover:before {
    background: #fff
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    section.slider .main-slide .swiper-slide .slider-content h2.slide-head {
        font-size: 34px
    }

    section.slider .main-slide .swiper-slide .slider-content .slide-text {
        font-size: 30px
    }

    section.slider .main-slide .swiper-slide .slider-content a {
        font-size: 14px
    }
}

@media only screen and (max-width : 991px) {
    section.slider .main-slide .swiper-slide .slider-content a {
        margin-top: 0
    }
}

@media only screen and (max-width : 991px) {
    section.slider .main-slide .swiper-slide .slider-content h2.slide-head {
        font-size: 30px
    }

    section.slider .main-slide .swiper-slide .slider-content .slide-text {
        font-size: 22px
    }

    section.slider .main-slide .swiper-slide .slider-content a {
        font-size: 16px;
        padding: 10px 15px
    }
}

@media only screen and (max-width : 767px) {
    section.slider .main-slide .swiper-slide .slider-content h2.slide-head {
        font-size: 24px
    }

    section.slider .main-slide .swiper-slide .slider-content .slide-text {
        font-size: 15px
    }

    section.slider .main-slide .swiper-slide .slider-content a {
        font-size: 12px;
        padding: 8px 12px
    }
}

section.slider .main-slide .swiper-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background:linear-gradient(-25deg, rgba(61, 61, 101, 0.7254901961) 0%, rgba(101, 101, 124, 0.4392156863) 100%) */
    /*background: linear-gradient(-25deg, rgb(0 0 0 / 80%) 0%, rgb(255 255 255 / 0%) 100%);*/
}

section.slider .main-slide .swiper-slide.swiper-slide-active .slider-content {
    display: block
}

section.slider .main-slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0);
    border: 4.5px solid #fff;
    transition: .4s
}

section.slider .main-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff
}

@media only screen and (max-width : 767px) {
    section.slider .main-slide .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        border: 3px solid #fff
    }
}

section.slider .main-slide .slide-nav {
    display: none
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    section.slider {
        height: calc(100vh - 390px)
    }
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    section.slider {
        height: calc(85vh - 430px)
    }
}

@media only screen and (max-width : 767px) {
    section.slider {
        height: calc(100vh - 375px)
    }
}

section .title {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem
}

section .title h4 {
    display: inline-block
}

section .title a {
    display: inline-block
}

section.home-announcements {
    margin-bottom: 0
}

section.home-announcements .home-announcements-swiper {
    height: auto;
    max-height: 140px
}

section.home-announcements .home-announcements-swiper .card {
    height: 140px;
    max-height: 140px
}

section.home-announcements .home-announcements-swiper .card .card-body {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

section.home-announcements .home-announcements-swiper .card .card-body-centered .card-title {
    display: inline-block
}

section.home-announcements .home-announcements-swiper .card .card-body-centered time {
    display: inline-block;
    padding: .5rem 1rem
}

section.home-announcements .home-announcements-swiper .card .card-body-centered .card-text {
    display: block;
    margin-bottom: .5rem;
    line-height: 1rem;
    min-height: 1rem
}

section.home-news {
    padding: 4rem 0 2rem;
    margin-bottom: 0
}

section.home-news .title {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem
}

section.home-news .title h4 {
    margin-bottom: 0
}

section.home-news .home-news-swiper {
    padding-bottom: 2rem
}

section.home-news .home-news-swiper .swiper-slide a.card img {
    height: 100%;
    object-fit: cover
}

section.home-news .home-news-swiper .swiper-slide a.card .card-body h5.card-title {
    color: #07101b
}

section.home-news .home-news-swiper .swiper-slide a.card .card-body summary {
    color: #07101b
}

section.home-news .home-news-swiper .swiper-slide a.card .card-body p.card-text {
    color: #07101b
}

section.home-contents {
    padding: 4rem 0
}

section.home-content-modules {
    padding: 4rem 0
}

section.home-content-modules .swiper-container .swiper-slide .card .img {
    height: 250px
}

section.home-content-modules .swiper-container .swiper-slide .card .img img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover
}

section.home-content-modules .swiper-container .swiper-slide .card .card-body .card-title {
    color: #07101b
}

section.home-content-modules .swiper-container .swiper-slide .card .card-body .card-text {
    color: #07101b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

section.home-services {
    padding: 4rem 0;
    margin-bottom: 0
}

section.home-services .swiper-container .swiper-slide .card .img {
    height: 250px
}

section.home-services .swiper-container .swiper-slide .card .img img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover
}

section.home-services .swiper-container .swiper-slide .card .card-body .card-title {
    color: #07101b
}

section.home-services .swiper-container .swiper-slide .card .card-body .card-text {
    color: #07101b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

section.home-blogs {
    padding: 4rem 0;
    margin-bottom: 0
}

section.home-blogs .swiper-container .swiper-slide .card .img {
    height: 250px
}

section.home-blogs .swiper-container .swiper-slide .card .img img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover
}

section.home-blogs .swiper-container .swiper-slide .card .card-body .card-title {
    color: #07101b
}

section.home-blogs .swiper-container .swiper-slide .card .card-body .card-text {
    color: #07101b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

section.home-references {
    padding: 4rem 0;
    margin-bottom: 0
}

section.home-quickforms {
    padding: 4rem 0
}

section.home-special-file {
    padding: 4rem 0;
    margin-bottom: 0
}

section.home-exchange {
    padding: 4rem 0
}

section.home-premo {
    padding: 4rem 0;
    margin-bottom: 0
}

section.home-faq {
    padding: 4rem 0
}

section.home-products {
    padding: 4rem 0
}

section.home-products .nav.nav-pills {
    margin-bottom: 1rem
}

section.home-products .tab-content .tab-pane .col-12 {
    margin-bottom: 10px
}

section.home-products .tab-content .tab-pane .card {
    height: 100%
}

section.home-products .tab-content .tab-pane .card .card-img-top {
    max-height: 250px;
    object-fit: cover
}

section.home-products .tab-content .tab-pane .card .card-body .btn-group {
    padding: 1rem 0 0 0;
    flex-wrap: wrap
}

section.home-products .tab-content .tab-pane .card .card-body .btn-group a {
    display: inline-block;
    text-align: center;
    flex: 0 0 100%;
    padding: .375rem .75rem
}

section.home-products .tab-content .tab-pane .card .card-body .btn-group a+a {
    margin-top: .5rem
}

section.home-brands {
    margin-bottom: 0
}

section.home-about {
    padding: 60px 0 60px 0
}

section.home-about .about-left h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 25px;
    color: #343434
}

section.home-about .about-left p {
    font-family: "Montserrat", sans-serif !important;
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: #5a5a5a !important
}

section.home-about .about-left a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .01em;
    padding: 15px 25px;
    margin-top: 15px;
    color: #fff;
    background: var(--color-theme-andprekast-4-hex);
    border: 1px solid var(--color-theme-andprekast-4-hex);
    transition: .4s;
    display: inline-block;
    border-radius: 2px;
    font-weight: 600;
}

section.home-about .about-left a svg {
    margin-left: 5px;
    fill: #fff;
    transition: .4s
}

section.home-about .about-left a:hover {
    color: var(--color-theme-andprekast-4-hex);
    background: #fff;
    text-decoration: none;
}

section.home-about .about-left a:hover svg {
    fill: var(--color-theme-andprekast-4-hex)
}

section.home-about img {
    margin-left: 25px
}

@media only screen and (max-width : 991px) {
    section.home-about img {
        display: none !important
    }
}

@media only screen and (max-width : 991px) {
    section.home-about {
        padding: 50px 0 30px 0
    }

    section.home-about .row {
        flex-direction: column-reverse
    }

    section.home-about .row img {
        display: block;
        margin: auto
    }

    section.home-about .row .about-left {
        margin-top: 35px
    }
}

@media only screen and (max-width : 767px) {
    section.home-about .about-left {
        margin-top: 25px !important
    }
}

section.home-projects {
    padding: 4rem 0 0 0
}

section.home-projects .project-cards {
    display: flex
}

section.home-projects .project-cards .card-item {
    width: 33.333333%;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover
}

section.home-projects .project-cards .card-item h3 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: .1em;
    color: #cbcbd5;
    margin-bottom: 0;
    transition: .4s;
    position: relative;
    background: rgb(43 71 102 / 68%); 
    padding: 10px;
}

@media only screen and (max-width : 767px) {
    section.home-projects .project-cards .card-item h3 {
        font-size: 18px
    }
}

section.home-projects .project-cards .card-item a {
    display: inline-block;
    color: #fff;
    background: var(--color-theme-andprekast-6-hex);
    padding: 13px 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    transform: scale(0.3);
    opacity: 0;
    border-radius: 2px
}

section.home-projects .project-cards .card-item a svg {
    margin-left: 10px;
    fill: #fff;
    transition: .4s;
}

section.home-projects .project-cards .card-item a:hover {
    color: var(--color-theme-andprekast-6-hex);
    background: #fff;
    text-decoration: none;
}

section.home-projects .project-cards .card-item a:hover svg {
    fill: var(--color-theme-andprekast-6-hex);
    transform: translateX(5px)
}

section.home-projects .project-cards .card-item.item-1 {
    background-image: url(../../img/tamamlanan.png);
    background-size: cover;
    background-repeat: no-repeat
}

section.home-projects .project-cards .card-item.item-2 {
    background-image: url(../../img/devam.png);
    background-size: cover;
    background-repeat: no-repeat
}

section.home-projects .project-cards .card-item.item-3 {
    background-image: url(../../img/gelecek.png);
    background-size: cover;
    background-repeat: no-repeat
}

section.home-projects .project-cards .card-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-25deg, rgb(0 0 0 / 80%) 0%, rgb(255 255 255 / 0%) 100%);
    transition: .4s;
    opacity: .3
}

section.home-projects .project-cards .card-item:hover h3 {
    color: #fff;
    margin-bottom: 35px
}

section.home-projects .project-cards .card-item:hover a {
    transform: scale(1);
    opacity: 1
}

section.home-projects .project-cards .card-item:hover:before {
    opacity: .6
}

@media only screen and (min-width : 1200px)and (max-width : 1366px) {
    section.home-projects .project-cards .card-item {
        height: 500px
    }
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    section.home-projects .project-cards .card-item {
        height: 450px
    }
}

@media only screen and (max-width : 991px) {
    section.home-projects .project-cards .card-item {
        height: 400px
    }
}

@media only screen and (max-width : 767px) {
    section.home-projects .project-cards .card-item {
        height: 380px
    }
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    section.home-projects .project-cards .card-item h3 {
        font-size: 17px
    }
}

@media only screen and (max-width : 991px) {
    section.home-projects .project-cards .card-item {
        width: 100%
    }

    section.home-projects .project-cards .card-item h3 {
        text-align: center
    }
}

@media only screen and (max-width : 767px) {
    section.home-projects .project-cards {
        flex-direction: column
    }

    section.home-projects .project-cards .card-item {
        width: 100%
    }

    section.home-projects .project-cards .card-item h3 {
        text-align: center
    }
}

.select2-container .select2-dropdown .select2-search {
    display: none
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
    background: #fff;
    color: var(--color-theme-andprekast-4-hex)
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option--highlighted[aria-selected] {
    background: rgba(0, 0, 0, .288);
    color: #fff
}

.select2-container .select2-selection--single .select2-selection__arrow {
    right: 10px
}

.page-title {
    padding: 150px 0 40px;
    position: relative;
    background: #10100f;
    background: initial
}

.page-title .bread-bg {
    position: relative;
    opacity: initial !important
}

.page-title .bread-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, #1A1E2C 0%, #1A1E2C 100%);
    opacity: .85
}

.page-title .container {
    position: relative
}

.page-title .container .title-first {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.page-title .container .title-first h1 {
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    margin-bottom: 0px
}

.page-title .container .title-first nav ol li {
    font-weight: normal;
    font-size: 14px;
    color: #fff
}

.page-title .container .title-first nav ol li+li {
    padding-left: 1.2rem
}

.page-title .container .title-first nav ol li+li:before {
    content: "";
    background-image: url(../img/svg/chevron-right.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    padding-right: 1.2rem
}

@media only screen and (max-width : 767px) {
    .page-title .container .title-first h1 {
        font-size: 20px
    }

    .page-title .container .title-first nav {
        margin-top: 5px
    }

    .page-title .container .title-first nav ol {
        justify-content: center
    }

    .page-title .container .title-first nav ol li {
        font-size: 12px
    }

    .page-title .container .title-first nav ol li+li {
        padding-left: .6rem
    }

    .page-title .container .title-first nav ol li+li:before {
        padding-right: .7rem
    }
}

.page-title .bread-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    background-size: cover !important;
    background-repeat: no-repeat !important
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .page-title {
        padding: 50px 0 40px
    }
}

@media only screen and (max-width : 767px) {
    .page-title {
        padding: 35px 0 30px
    }

    .page-title .container .title-first {
        flex-direction: column;
        justify-content: center
    }
}

.page {
    padding: 60px 0;
    min-height: calc(100vh - 487px)
}

@media only screen and (max-width : 991px) {
    .page {
        padding: 50px 0px 25px
    }
}

.page.single-page h2 {
    text-align: center !important;
    font-size: 25px !important;
    margin-bottom: 45px !important
}

@media only screen and (max-width : 991px) {
    .page.single-page h2 {
        font-size: 21px !important;
        margin: 30px 0px !important
    }
}

.page.single-page p,
.page.single-page td {
    font-weight: normal;
    font-size: 15px;
    line-height: 23px;
    text-align: left;
    color: #81968b
}

@media only screen and (max-width : 767px) {

    .page.single-page p,
    .page.single-page td {
        font-size: 13px;
        padding: 0 10%
    }
}

.page.single-page td {
    padding: .5rem
}

@media only screen and (max-width : 767px) {
    .page.single-page td {
        font-size: 12px
    }
}

.page .page-content .img img {
    display: block;
    width: 100%;
    object-fit: cover
}

.page .page-tags {
    padding: 2rem 0
}

.page .page-tags ul li {
    display: inline-block;
    padding: .25rem
}

.page .page-tags ul li a {
    color: #fff;
    padding: .5rem;
    transition: .4s;
    background: #333232;
    border-radius: .25rem;
    font-size: .75rem
}

.page .page-tags ul li a:hover {
    background: #ececec;
    color: #07101b
}

.page .blog-sidebar .blog-search {
    margin-bottom: 3rem
}

.page .blog-sidebar .blog-search .form-group {
    position: relative
}

.page .blog-sidebar .blog-search .form-group .form-control {
    padding-right: 4rem;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    color: #000;
    height: 3rem
}

.page .blog-sidebar .blog-search .form-group .form-control::placeholder {
    color: #6c6c6c;
    font-weight: bold
}

.page .blog-sidebar .blog-search .form-group .form-control:hover+.btn svg {
    width: 25px;
    height: 25px
}

.page .blog-sidebar .blog-search .form-group .form-control:focus+.btn svg {
    width: 15px;
    height: 15px
}

.page .blog-sidebar .blog-search .form-group .btn {
    border: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    right: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    outline: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-content: center
}

.page .blog-sidebar .blog-search .form-group .btn svg {
    display: block;
    width: 20px;
    height: 20px;
    transition: .4s
}

.page .blog-sidebar .side-part {
    margin-bottom: 3rem
}

.page .blog-sidebar .side-part h4 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000;
    position: relative
}

.page .blog-sidebar .side-part h4:before {
    content: "";
    position: absolute;
    top: 100%;
    margin-top: -1px;
    left: 0;
    height: 3px;
    width: 5.5rem;
    background: #000;
    transition: .4s
}

.page .blog-sidebar .side-part .list-group a.list-group-item {
    display: block;
    color: #000;
    transition: .4s;
    border: none
}

.page .blog-sidebar .side-part .list-group a.list-group-item.active,
.page .blog-sidebar .side-part .list-group a.list-group-item:hover {
    background: #d8d8d8
}

.page .blog-sidebar .side-part .list-group a.list-group-item+a {
    border-top: 1px solid #d8d8d8
}

.page .blog-sidebar .side-part:hover h4:before {
    width: 100%
}

.page.about .about-special {
    padding: 2rem 0
}

.page.about .about-special-content p:nth-last-child(1) {
    margin-bottom: 0
}

.page.search-detail .list-group .list-group-item .search-detail-img-link {
    width: 8rem;
    display: inline-block;
    margin-right: .5rem;
    vertical-align: top
}

.page.search-detail .list-group .list-group-item .search-detail-img-link img {
    display: inline-block;
    width: 100%
}

.page.search-detail .list-group .list-group-item .search-detail-result-text {
    display: inline-block
}

.page.search-detail .list-group .list-group-item .search-detail-result-text a {
    display: block;
    color: #07101b
}

.page.search-detail .list-group .list-group-item .search-detail-result-text a h5 {
    display: inline-block
}

.page.search-detail .list-group .list-group-item .search-detail-result-text .search-detail-head-link {
    flex: 0 0 100%
}

.page.search-detail .list-group .list-group-item .search-detail-result-text .search-detail-summary-link {
    display: block;
    margin-top: .5rem
}

.page.search-detail .list-group .list-group-item .search-detail-result-text .search-detail-date {
    display: inline-block
}

.page.search-detail .list-group .list-group-item .search-detail-result-text .search-detail-date .search-date-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    background: #ececec;
    padding: 0 .25rem;
    position: relative;
    top: -1px
}

.page.search-detail .list-group .list-group-item .search-detail-result-text .search-detail-date .search-date-container span {
    display: inline-block;
    padding: .1125rem;
    font-size: .75rem
}

.page.search-detail .list-group .list-group-item .search-detail-result-text nav {
    flex: 0 0 100%
}

.page.search-detail .list-group .list-group-item .search-detail-result-text nav ol.breadcrumb li {
    color: #07101b
}

.page.search-detail .list-group .list-group-item .search-detail-result-text nav ol.breadcrumb li a {
    color: #07101b;
    display: inline-block
}

.page.search-detail .list-group .list-group-item .search-detail-result-text nav ol.breadcrumb li.breadcrumb-item.active {
    font-weight: normal
}

.page.search-detail .list-group .list-group-item .search-detail-result-text nav ol.breadcrumb li:before {
    color: #07101b
}

.page.career h2 {
    font-weight: 600;
    font-size: 25px;
    color: var(--color-theme-andprekast-4-hex)
}

.page.career .accordion-cards {
    margin-top: 20px
}

.page.career .accordion-cards .card {
    border: 1px solid var(--color-theme-andprekast-4-hex);
    transition: .4s;
    border-radius: 0
}

.page.career .accordion-cards .card .card-header {
    border-bottom: none
}

.page.career .accordion-cards .card .card-header .btn-link span {
    color: var(--color-theme-andprekast-4-hex);
    transition: .4s
}

.page.career .accordion-cards .card .card-header .btn-link span:before {
    color: var(--color-theme-andprekast-4-hex)
}

.page.career .accordion-cards .card.collapsed {
    border: 1px solid rgba(0, 0, 0, .125);
    transition: .4s;
    border-bottom: none
}

.page.career .accordion-cards .card.collapsed .btn-link span {
    color: #343434;
    transition: .4s
}

.page.career .accordion-cards .card.collapsed .btn-link span:before {
    color: #343434;
    transition: .4s
}

.page.career .accordion-cards .card.collapsed:last-child {
    border-bottom: 1px solid #ced4da
}

.page.career .accordion-cards .card .card-body {
    overflow: hidden
}

.page.career .accordion-cards .card .card-body p {
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: #5a5a5a
}

.page.career .accordion-cards .card .card-body a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-theme-andprekast-4-hex);
    padding: 10px 15px;
    border: 1px solid var(--color-theme-andprekast-4-hex);
    position: relative;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
    box-shadow: none;
    float: right;
    border-radius: 0
}

.page.career .accordion-cards .card .card-body a:hover {
    color: #fff;
    background: var(--color-theme-andprekast-4-hex)
}

.page.career .captcha {
    font-size: 13px;
    color: #343434;
    padding-bottom: 2px;
    letter-spacing: .5px
}

.page.career .form-group label {
    font-size: 13px;
    color: #343434;
    padding-bottom: 2px;
    letter-spacing: .5px
}

.page.career .form-group p {
    font-size: 15px;
    color: #343434;
    margin-bottom: calc(.375rem + 1px)
}

.page.career .form-group input {
    height: 40px;
    border-radius: 0
}

.page.career .form-group input:focus {
    box-shadow: none;
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.page.career .form-group input.border {
    box-shadow: none;
    border: 1px solid var(--color-theme-andprekast-4-hex) !important
}

.page.career .form-group textarea {
    border: 1px solid #ced4da;
    resize: none;
    border-radius: 0
}

.page.career .form-group textarea:focus {
    box-shadow: none;
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.page.career .form-group textarea.border {
    box-shadow: none;
    border: 1px solid var(--color-theme-andprekast-4-hex) !important
}

.page.career .form-group .input-group {
    position: relative
}

.page.career .form-group .input-group .input-group-text {
    margin-bottom: 1rem
}

.page.career .form-group .input-group small {
    position: absolute;
    right: 0;
    top: 100%
}

.page.career .form-group .input-group.mb-3 {
    height: 45px
}

.page.career .form-group .input-group.mb-3 .input-group-prepend {
    margin-bottom: 1rem
}

.page.career .form-group .input-group.mb-3 .input-group-prepend span {
    margin-bottom: -1rem;
    color: #343434;
    background: #fff;
    transition: .4s;
    padding: 7px 0px 7px 24px;
    border-radius: 0
}

.page.career .form-group .input-group.mb-3 .input-group-prepend span svg {
    transform: translateX(-30px);
    opacity: 0;
    transition: .4s;
    fill: var(--color-theme-andprekast-4-hex)
}

.page.career .form-group .input-group.mb-3 .custom-file {
    height: 45px
}

.page.career .form-group .input-group.mb-3 .custom-file label {
    box-shadow: none;
    border: 1px solid #ced4da;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 .75rem;
    border-radius: 0
}

.page.career .form-group .input-group.mb-3:hover .input-group-prepend span {
    padding: 7px 15px 7px 9px
}

.page.career .form-group .input-group.mb-3:hover .input-group-prepend span svg {
    transform: translateX(5px);
    opacity: 1
}

.page.career .form-group span.select2 {
    width: 100% !important
}

.page.career .form-group span.select2 .select2-selection--single {
    border-color: #ced4da;
    transition: .4s;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 0
}

.page.career .form-group span.select2 .select2-selection__arrow {
    top: 7px
}

.page.career .form-group span.select2.select2-container--focus .select2-selection--single {
    border-color: var(--color-theme-andprekast-4-hex)
}

.page.career .form-group span.select2.select2-container--open .select2-selection--single {
    border-color: var(--color-theme-andprekast-4-hex)
}

.page.career .form-group .captcha {
    flex: 0 0 33%
}

.page.career .form-group .captcha img {
    max-height: initial;
    height: 40px;
    border-radius: 0
}

.page.career .form-group .captcha a {
    background: var(--color-theme-andprekast-4-hex)
}

.page.career .form-group .submit {
    flex: 0 0 33%
}

.page.career .form-group .submit input {
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-theme-andprekast-4-hex);
    padding: 6px 15px;
    border: 1px solid var(--color-theme-andprekast-4-hex);
    position: relative;
    background: rgba(255, 255, 255, 0);
    box-shadow: none !important;
    background: #fff
}

.page.career .form-group .submit input:hover {
    color: #fff;
    background: var(--color-theme-andprekast-4-hex)
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .page.career .captcha {
        flex: 0 0 33%
    }

    .page.career .submit {
        flex: 0 0 33%
    }
}

@media only screen and (max-width : 767px) {
    .page.career {
        padding: 0 0 60px 0
    }

    .page.career h2 {
        margin-top: 25px
    }

    .page.career .captcha {
        flex: 0 0 50% !important
    }

    .page.career .submit {
        flex: 0 0 100% !important
    }

    .page.career .submit input {
        width: 50% !important;
        margin-top: 20px
    }

    .page.career .col-12+.col-12 h2 {
        margin-top: 40px
    }
}

.page.our-team .team-list {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.page.our-team .team-list li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 1rem
}

.page.our-team .team-list li a {
    display: block;
    border: 1px solid #ececec;
    padding: 1rem;
    color: #07101b;
    height: 100%
}

.page.our-team .team-list li a .person-img {
    margin-bottom: 1rem
}

.page.our-team .team-list li a .person-img img {
    display: block;
    width: 100%;
    object-fit: cover
}

.page.our-team .team-list li a .person-text h4 {
    font-size: 1rem
}

.page.our-team .team-list li a .person-text p {
    font-size: .875rem
}

.page.personnel-detail .side-bar-personnel .sidebar h4 {
    font-size: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 0;
    margin-bottom: 0
}

.page.personnel-detail .side-bar-personnel .sidebar ul {
    border: 1px solid rgba(0, 0, 0, .2)
}

.page.personnel-detail .side-bar-personnel .sidebar ul li a {
    display: block;
    color: #07101b;
    padding: .5rem 1rem
}

.page.personnel-detail .side-bar-personnel .sidebar ul li+li {
    border-top: 1px solid rgba(0, 0, 0, .2)
}

@media only screen and (max-width : 767px) {
    .page.personnel-detail .side-bar-personnel {
        padding-bottom: 1rem
    }
}

.page.personnel-detail .personnel-detail-container {
    display: flex;
    flex-wrap: wrap
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item {
    flex: 0 0 auto;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: .5rem;
    min-width: 25%;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item>* {
    padding: .5rem
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item .personnel-detail-img {
    flex: 0 0 200px
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item .personnel-detail-img img {
    display: block;
    object-fit: cover;
    width: 100%
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item .personnel-detail-text {
    flex: 0 0 calc(100% - 200px);
    max-width: calc(100% - 200px)
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item .personnel-detail-text h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.page.personnel-detail .personnel-detail-container .personnel-detail-item .personnel-detail-text p {
    font-size: .875rem;
    margin-bottom: .5rem
}

@media only screen and (max-width : 767px) {
    .page.personnel-detail .personnel-detail-container {
        padding-top: 1rem
    }

    .page.personnel-detail .personnel-detail-container .personnel-detail-item {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.personnel-relation-news h3 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.page.personnel-relation-news ul {
    border: 1px solid rgba(0, 0, 0, .2)
}

.page.personnel-relation-news ul li a {
    display: block;
    color: #07101b;
    padding: 1rem
}

.page.personnel-relation-news ul li+li {
    border-top: 1px solid rgba(0, 0, 0, .2)
}

.page.references .references-category ul li a {
    display: block;
    font-size: .875rem;
    color: #07101b
}

.page.references .references-category ul li a span {
    padding-left: .5rem
}

.page.references .references-category-left {
    background: #f8f8f8;
    padding: 1rem
}

.page.references .references-category-left h2 {
    font-size: 1.25rem;
    padding-bottom: 1.5rem
}

.page.references .references-category-left ul li a {
    padding: .5rem 0
}

.page.references .references-category-left ul li+li {
    border-top: 1px solid rgba(0, 0, 0, .2)
}

.page.references .references-category-top ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.page.references .references-category-top ul li {
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 1rem
}

.page.references .references-category-top ul li a {
    padding: .875rem 2rem
}

.page.references .references-category-top ul li:nth-of-type(1) {
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem
}

.page.references .references-category-top ul li:nth-last-child(1) {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem
}

.page.references .references-category-top ul li+li {
    margin-left: .5rem
}

.page.references .references-list {
    padding: .5rem 0
}

.page.references .references-list ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: .5rem
}

.page.references .references-list ul li {
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
    padding: .5rem
}

.page.references .references-list ul li .references-container {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    align-items: center
}

.page.references .references-list ul li .references-container .references-img a {
    display: block
}

.page.references .references-list ul li .references-container .references-img a img {
    display: block;
    object-fit: cover;
    width: 100%
}

.page.references .references-list ul li .references-container .references-content h3 {
    font-size: 1.25rem
}

.page.references .references-list ul li .references-container .references-content-head h4 {
    font-size: 1rem
}

.page.references .references-list ul li .references-container .references-content-location {
    font-size: .875rem
}

@media only screen and (max-width : 991px) {
    .page.references .references-list ul li {
        flex: 0 0 33.33%;
        max-width: 33.33%
    }
}

@media only screen and (max-width : 767px) {
    .page.references .references-list ul li {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 480px) {
    .page.references .references-list ul li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.references.references-outer-edges-none .references-list ul li {
    padding: 0
}

.page.references.references-outer-edges-none .references-list ul li .references-container {
    border-bottom: 0;
    border-left: 0
}

.page.references.references-outer-edges-none .references-list ul li:nth-of-type(1) .references-container,
.page.references.references-outer-edges-none .references-list ul li:nth-of-type(2) .references-container,
.page.references.references-outer-edges-none .references-list ul li:nth-of-type(3) .references-container,
.page.references.references-outer-edges-none .references-list ul li:nth-of-type(4) .references-container {
    border-top: 0
}

.page.references.references-outer-edges-none .references-list ul li:nth-child(4n) .references-container {
    border-right: 0
}

.page.references.references-outer-edges-none .references-list ul li:nth-last-child(1) .references-container {
    border-right: 0
}

@media only screen and (max-width : 991px) {
    .page.references.references-outer-edges-none .references-list ul li:nth-of-type(4) .references-container {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }

    .page.references.references-outer-edges-none .references-list ul li:nth-child(4n) .references-container {
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.references.references-outer-edges-none .references-list ul li:nth-child(3n) .references-container {
        border-right: 0
    }

    .page.references.references-outer-edges-none .references-list ul li:nth-last-child(1) .references-container {
        border-right: 0
    }
}

@media only screen and (max-width : 767px) {
    .page.references.references-outer-edges-none .references-list ul li:nth-child(3n) .references-container {
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.references.references-outer-edges-none .references-list ul li:nth-child(2n) .references-container {
        border-right: 0
    }
}

@media only screen and (max-width : 480px) {
    .page.references.references-outer-edges-none .references-list ul li .references-container {
        border-right: 0 !important
    }

    .page.references.references-outer-edges-none .references-list ul li:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }
}

.page.references.references-outer-edges-none .col+.col .references-list ul li:nth-of-type(4) .references-container {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.page.references.references-outer-edges-none .col+.col .references-list ul li:nth-child(4n) .references-container {
    border-right: 1px solid rgba(0, 0, 0, .1)
}

.page.references.references-outer-edges-none .col+.col .references-list ul li:nth-child(3n) .references-container {
    border-right: 0
}

.page.references.references-outer-edges-none .col+.col .references-list ul li:nth-last-child(1) .references-container {
    border-right: 0
}

@media only screen and (max-width : 991px) {
    .page.references.references-outer-edges-none .col+.col .references-list ul li:nth-child(3n) .references-container {
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.references.references-outer-edges-none .col+.col .references-list ul li:nth-child(2n) .references-container {
        border-right: 0
    }
}

@media only screen and (max-width : 480px) {
    .page.references.references-outer-edges-none .col+.col .references-list ul li .references-container {
        border-right: 0 !important
    }

    .page.references.references-outer-edges-none .col+.col .references-list ul li:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }
}

@media only screen and (max-width : 767px) {
    .page.references .col {
        flex: 0 0 100%
    }
}

@media only screen and (max-width : 767px) {
    .page.references .col+.col {
        padding-top: 1rem
    }
}

.page.references .col+.col .references-list ul li {
    flex: 0 0 33%;
    max-width: 33%
}

@media only screen and (max-width : 991px) {
    .page.references .col+.col .references-list ul li {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 480px) {
    .page.references .col+.col .references-list ul li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.references-detail .references-name {
    margin-bottom: 2rem
}

.page.references-detail .references-text {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 2rem
}

.page.references-detail .references-text p {
    padding: 1rem 1rem 1rem 2rem;
    flex: 0 0 50%;
    position: relative;
    margin-bottom: 0
}

.page.references-detail .references-text p b {
    display: inline-block;
    padding-right: .5rem
}

.page.references-detail .references-text p i {
    position: absolute;
    left: 1rem;
    top: 1.875rem;
    transform: translate(-50%, -50%)
}

.page.references-detail .references-text p a {
    display: inline-block;
    color: #000
}

.page.references-detail .references-text p+p+p {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.page.references-detail .references-gallery ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem
}

.page.references-detail .references-gallery ul li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: .5rem
}

.page.references-detail .references-gallery ul li .gallery-item-content {
    border: 1px solid rgba(0, 0, 0, .1)
}

.page.references-detail .references-gallery ul li .gallery-item-content .img {
    padding: .5rem
}

.page.references-detail .references-gallery ul li .gallery-item-content .img img {
    display: block;
    width: 100%;
    object-fit: cover
}

.page.references-detail .references-gallery ul li .gallery-item-content .text {
    text-align: center;
    padding: .5rem;
    color: #07101b
}

.page.references-detail .references-gallery ul li .gallery-item-content .text span {
    display: inline-block
}

@media only screen and (max-width : 991px) {
    .page.references-detail .references-gallery ul li {
        flex: 0 0 33.33%;
        max-width: 33.33%
    }
}

@media only screen and (max-width : 767px) {
    .page.references-detail .references-gallery ul li {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 480px) {
    .page.references-detail .references-gallery ul li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.brands .brands-container ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.page.brands .brands-container ul li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: .75rem
}

.page.brands .brands-container ul li .brand-img {
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .4s;
    min-height: 150px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center
}

.page.brands .brands-container ul li .brand-img a {
    display: block;
    padding: .5rem
}

.page.brands .brands-container ul li .brand-img img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover
}

.page.brands .brands-container ul li:hover .brand-img {
    transform: scale(1.1)
}

@media only screen and (max-width : 991px) {
    .page.brands .brands-container ul li {
        flex: 0 0 33.333%;
        max-width: 33.333%
    }
}

@media only screen and (max-width : 767px) {
    .page.brands .brands-container ul li {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 480px) {
    .page.brands .brands-container ul li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.brands .brands-container .swiper-container {
    padding: 1rem 0
}

.page.brands .brands-container .swiper-container .swiper-slide {
    padding: .75rem
}

.page.brands .brands-container .swiper-container .swiper-slide .brand-img {
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .4s;
    min-height: 150px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center
}

.page.brands .brands-container .swiper-container .swiper-slide .brand-img a {
    display: block;
    padding: .5rem
}

.page.brands .brands-container .swiper-container .swiper-slide .brand-img img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover
}

.page.brands .brands-container .swiper-container .swiper-slide:hover .brand-img {
    transform: scale(1.1)
}

.page.brands .brands-container-swiper {
    width: 100%;
    padding: 0 3rem;
    position: relative
}

.page.brands .brands-pagination {
    text-align: center;
    padding: 2rem 0 0
}

.page.brands .brands-pagination nav {
    display: inline-block
}

.page.brands.brands-outer-edges-none .brands-container ul li {
    padding: 0
}

.page.brands.brands-outer-edges-none .brands-container ul li .brand-img {
    border-bottom: 0;
    border-left: 0
}

.page.brands.brands-outer-edges-none .brands-container ul li .brand-img a {
    transition: .4s
}

.page.brands.brands-outer-edges-none .brands-container ul li:hover .brand-img {
    transform: scale(1)
}

.page.brands.brands-outer-edges-none .brands-container ul li:hover .brand-img a {
    transform: scale(0.9)
}

.page.brands.brands-outer-edges-none .brands-container ul li:nth-of-type(1) .brand-img,
.page.brands.brands-outer-edges-none .brands-container ul li:nth-of-type(2) .brand-img,
.page.brands.brands-outer-edges-none .brands-container ul li:nth-of-type(3) .brand-img,
.page.brands.brands-outer-edges-none .brands-container ul li:nth-of-type(4) .brand-img {
    border-top: 0
}

.page.brands.brands-outer-edges-none .brands-container ul li:nth-child(4n) .brand-img {
    border-right: 0
}

.page.brands.brands-outer-edges-none .brands-container ul li:nth-last-child(1) .brand-img {
    border-right: 0
}

@media only screen and (max-width : 991px) {
    .page.brands.brands-outer-edges-none .brands-container ul li:nth-of-type(4) .brand-img {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }

    .page.brands.brands-outer-edges-none .brands-container ul li:nth-child(4n) .brand-img {
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.brands.brands-outer-edges-none .brands-container ul li:nth-child(3n) .brand-img {
        border-right: 0
    }

    .page.brands.brands-outer-edges-none .brands-container ul li:nth-last-child(1) .brand-img {
        border-right: 0
    }
}

@media only screen and (max-width : 767px) {
    .page.brands.brands-outer-edges-none .brands-container ul li:nth-child(3n) .brand-img {
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.brands.brands-outer-edges-none .brands-container ul li:nth-child(2n) .brand-img {
        border-right: 0
    }
}

@media only screen and (max-width : 480px) {
    .page.brands.brands-outer-edges-none .brands-container ul li .brand-img {
        border-right: 0 !important
    }

    .page.brands.brands-outer-edges-none .brands-container ul li:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }
}

.page.brands.brands-outer-edges-none .brands-container .swiper-container .swiper-slide {
    padding: 0
}

.page.brands.brands-outer-edges-none .brands-container .swiper-container .swiper-slide .brand-img {
    border: none
}

.page.brands-detail .img {
    margin-bottom: 1rem;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.page.brands-detail .img a {
    display: block;
    padding: .5rem;
    flex: 0 0 25%;
    max-width: 25%
}

.page.brands-detail .img a img {
    display: block;
    transition: .4s;
    width: 100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 1px 15px -3px rgba(0, 0, 0, .24)
}

.page.brands-detail .img a:hover img {
    transform: scale(1.1)
}

@media only screen and (max-width : 991px) {
    .page.brands-detail .img a {
        flex: 0 0 33.333%;
        max-width: 33.333%
    }
}

@media only screen and (max-width : 767px) {
    .page.brands-detail .img a {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 480px) {
    .page.brands-detail .img a {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.brands-detail .text {
    border: 1px solid rgba(0, 0, 0, .1)
}

.page.brands-detail .text p {
    padding: .5rem 1rem;
    margin-bottom: 0
}

.page.brands-detail .text p+p {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.page.solution-partners .solution-partners-container ul.solution-partners-list {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.page.solution-partners .solution-partners-container ul.solution-partners-list li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: .75rem
}

.page.solution-partners .solution-partners-container ul.solution-partners-list li .solution-partners-list-item {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: .5rem;
    transition: .4s
}

.page.solution-partners .solution-partners-container ul.solution-partners-list li .solution-partners-list-item .solution-partners-list-img {
    overflow: hidden;
    border-radius: 3px
}

.page.solution-partners .solution-partners-container ul.solution-partners-list li .solution-partners-list-item .solution-partners-list-img img {
    display: block;
    width: 100%;
    object-fit: cover
}

.page.solution-partners .solution-partners-container ul.solution-partners-list li:hover .solution-partners-list-item {
    transform: scale(1.1)
}

@media only screen and (max-width : 991px) {
    .page.solution-partners .solution-partners-container ul.solution-partners-list li {
        flex: 0 0 33.333%;
        max-width: 33.333%
    }
}

@media only screen and (max-width : 767px) {
    .page.solution-partners .solution-partners-container ul.solution-partners-list li {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 480px) {
    .page.solution-partners .solution-partners-container ul.solution-partners-list li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.solution-partners .solution-partners-container .swiper-container {
    padding: 1rem 0
}

.page.solution-partners .solution-partners-container .swiper-container .swiper-slide {
    padding: .75rem
}

.page.solution-partners .solution-partners-container .swiper-container .swiper-slide .solution-partners-list-item {
    border: 1px solid rgba(0, 0, 0, .1);
    min-height: 150px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center
}

.page.solution-partners .solution-partners-container .swiper-container .swiper-slide .solution-partners-list-item .solution-partners-list-img {
    display: block;
    padding: .5rem;
    transition: .4s
}

.page.solution-partners .solution-partners-container .swiper-container .swiper-slide .solution-partners-list-item img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover
}

.page.solution-partners .solution-partners-container .swiper-container .swiper-slide:hover .solution-partners-list-img {
    transform: scale(1.1)
}

.page.solution-partners .solution-partners-container-swiper {
    width: 100%;
    padding: 0 3rem;
    position: relative
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li {
    padding: 0
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li .solution-partners-list-item {
    border-bottom: 0;
    border-left: 0
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li .solution-partners-list-item img {
    transition: .4s
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:hover .solution-partners-list-item {
    transform: scale(1)
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:hover .solution-partners-list-item img {
    transform: scale(0.9)
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-of-type(1) .solution-partners-list-item,
.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-of-type(2) .solution-partners-list-item,
.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-of-type(3) .solution-partners-list-item,
.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-of-type(4) .solution-partners-list-item {
    border-top: 0
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-child(4n) .solution-partners-list-item {
    border-right: 0
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-last-child(1) .solution-partners-list-item {
    border-right: 0
}

@media only screen and (max-width : 991px) {
    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-of-type(4) .solution-partners-list-item {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }

    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-child(4n) .solution-partners-list-item {
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-child(3n) .solution-partners-list-item {
        border-right: 0
    }

    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-last-child(1) .solution-partners-list-item {
        border-right: 0
    }
}

@media only screen and (max-width : 767px) {
    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-child(3n) .solution-partners-list-item {
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-right: 1px solid rgba(0, 0, 0, .1)
    }

    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-child(2n) .solution-partners-list-item {
        border-right: 0
    }
}

@media only screen and (max-width : 480px) {
    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li .solution-partners-list-item {
        border-right: 0 !important
    }

    .page.solution-partners .solution-partners-container.solution-partners-outer-edges-none ul.solution-partners-list li:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, .1)
    }
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none .swiper-container .swiper-slide {
    padding: 0
}

.page.solution-partners .solution-partners-container.solution-partners-outer-edges-none .swiper-container .swiper-slide .solution-partners-list-item {
    border: none
}

.page.branch .branch-container {
    width: 100%;
    margin-bottom: 1rem
}

.page.branch .branch-container .location-selection {
    padding: 1rem 0
}

.page.branch .branch-container .location-selection ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.page.branch .branch-container .location-selection ul li {
    width: 12rem;
    padding: .5rem
}

.page.branch .branch-container .location-selection ul li .form-group .select2 .select2-selection--single {
    border-radius: 0;
    transition: .4s
}

.page.branch .branch-container .location-selection ul li .form-group .select2.select2-container--open .select2-selection--single {
    border-radius: 0 !important
}

.page.branch .branch-container .location-selection ul li:nth-child(1) .form-group .select2 .select2-selection--single {
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem
}

.page.branch .branch-container .location-selection ul li:nth-last-child(1) .form-group .select2 .select2-selection--single {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem
}

.page.branch .branch-container .location-list ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.page.branch .branch-container .location-list ul li {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: .375rem
}

.page.branch .branch-container .location-list ul li .location-list-content {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .5rem;
    padding: 1.5rem 2.5rem;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.page.branch .branch-container .location-list ul li .location-list-content .img {
    margin-bottom: 1rem
}

.page.branch .branch-container .location-list ul li .location-list-content .img img {
    display: block;
    width: 100%;
    object-fit: cover
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-head h5 {
    font-size: 1rem;
    margin-bottom: 1rem
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-body {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    align-items: center;
    margin-bottom: 1rem
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-body .icon {
    flex: 0 0 2.25rem;
    max-width: 2.25rem
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-body .icon span,
.page.branch .branch-container .location-list ul li .location-list-content .location-list-body .icon i {
    color: #07101b;
    font-size: 1rem
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-body .text {
    flex: 0 0 calc(100% - 2.25rem);
    max-width: calc(100% - 2.25rem)
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-body .text p {
    margin-bottom: 0;
    font-size: .875rem;
    color: #07101b
}

.page.branch .branch-container .location-list ul li .location-list-content .location-list-body .text p a {
    color: #07101b
}

.page.branch .branch-container .location-list ul li .location-list-content .map iframe {
    width: 100%
}

@media only screen and (max-width : 991px) {
    .page.branch .branch-container .location-list ul li {
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media only screen and (max-width : 767px) {
    .page.branch .branch-container .location-list ul li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.branch-detail .branch-container h3 {
    margin-bottom: 1rem
}

.page.branch-detail .branch-container .item {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.page.announcements ul.announcements-list li {
    padding: 1rem 0
}

.page.announcements ul.announcements-list li .card h5.card-title {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

.page.announcements ul.announcements-list li .card h5.card-title i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #d20e0e;
    border-radius: 30px;
    margin-right: 10px;
    font-size: 14px;
    color: #fff
}

.page.announcements ul.announcements-list li .card p {
    font-size: 1rem
}

.page.announcements ul.announcements-list li .card .card-body {
    padding: 0 0 1rem 0
}

.page.announcements ul.announcements-list li .card .time-line a {
    color: #07101b;
    font-size: .875rem
}

.page.announcements ul.announcements-list li .card .time-line a:hover {
    color: red
}

.page.bank-accounts .bank-item {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center
}

.page.bank-accounts .bank-item .bank-img {
    flex: 0 0 180px;
    max-width: 180px;
    text-align: center;
    height: 160px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.page.bank-accounts .bank-item .bank-img img {
    display: inline-block;
    max-width: 100%;
    margin: 0 auto
}

.page.bank-accounts .bank-item .bank-text {
    flex: 0 0 calc(100% - 180px);
    max-width: calc(100% - 180px)
}

.page.bank-accounts .bank-item .bank-text h5 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0 .5rem
}

.page.bank-accounts .bank-item .bank-text .bank-info ul li p {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: .25rem .5rem;
    font-size: .875rem
}

.page.bank-accounts .bank-item .bank-text .bank-info ul li p span {
    font-weight: bold
}

.page.bank-accounts .bank-item .bank-text .bank-info ul li p span+span {
    font-weight: normal
}

@media only screen and (max-width : 767px) {
    .page.bank-accounts .bank-item {
        flex-wrap: wrap
    }

    .page.bank-accounts .bank-item .bank-img {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem
    }

    .page.bank-accounts .bank-item .bank-text {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.bank-accounts .form-group .select2-container {
    width: 100% !important
}

.page.bank-accounts.border-none .bank-item {
    border: none
}

.page.bank-accounts.border-radius .bank-item {
    border-radius: 1rem
}

.page.bank-accounts.border-radius .bank-item .bank-img {
    border-radius: 1rem;
    overflow: hidden
}

.page.payment-notification .payment-form .form-group .select2-container {
    width: 100% !important
}

.page.payment-notification .bank-list .bank-item {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center
}

.page.payment-notification .bank-list .bank-item .bank-img {
    flex: 0 0 180px;
    max-width: 180px;
    text-align: center
}

.page.payment-notification .bank-list .bank-item .bank-img img {
    display: inline-block;
    max-width: 100%
}

.page.payment-notification .bank-list .bank-item .bank-text {
    flex: 0 0 calc(100% - 180px);
    max-width: calc(100% - 180px)
}

.page.payment-notification .bank-list .bank-item .bank-text h5 {
    margin-bottom: 1rem;
    text-transform: uppercase
}

.page.payment-notification .bank-list .bank-item .bank-text .bank-info ul li p {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: .5rem
}

.page.payment-notification .bank-list .bank-item .bank-text .bank-info ul li p span {
    font-weight: bold
}

.page.payment-notification .bank-list .bank-item .bank-text .bank-info ul li+li {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

@media only screen and (max-width : 767px) {
    .page.payment-notification .bank-list .bank-item {
        flex-wrap: wrap
    }

    .page.payment-notification .bank-list .bank-item .bank-img {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem
    }

    .page.payment-notification .bank-list .bank-item .bank-text {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.page.ip-learn .ip-learn-container {
    background: rgba(0, 0, 0, .1);
    padding: 5rem 0
}

.page.ip-learn .ip-learn-container h1 {
    text-align: center;
    font-size: 4rem
}

.page.ip-learn .ip-learn-container h1 code {
    font-size: 80%
}

.page.technical-service .technical-service-container {
    width: 40rem;
    max-width: 100%;
    margin: 0 auto
}

.page.ebulletin .ebulletin-container {
    width: 40rem;
    max-width: 100%;
    margin: 0 auto
}

.page.news .news-container .col-12 {
    padding-bottom: 2rem
}

.page.news .news-container .news-item {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .4s;
    padding: 10px;
    align-content: baseline
}

.page.news .news-container .news-item .news-img {
    height: 200px
}

.page.news .news-container .news-item .news-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover
}

.page.news .news-container .news-item .news-text a {
    display: block;
    width: 100%;
    padding: 8px 0;
    color: #000;
    font-weight: bold
}

.page.news .news-container .news-item .news-text span {
    font-weight: 500
}

.page.news .news-container .news-item:hover {
    transform: translateY(-10px)
}

.page.complaints-and-suggestions .complaints-and-suggestions-container {
    width: 40rem;
    max-width: 100%;
    margin: 0 auto
}

.page.hdd .hdd-calculator {
    width: 40rem;
    max-width: 100%;
    margin: 0 auto
}

.page.hdd .hdd-calculator .form-group {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start
}

.page.hdd .hdd-calculator .form-group input {
    flex: 0 0 calc(100% - 200px)
}

.page.hdd .hdd-calculator .form-group p,
.page.hdd .hdd-calculator .form-group span {
    flex: 0 0 100px
}

.page.hdd .hdd-calculator .form-group span {
    text-align: left;
    padding-left: 20px
}

.page.hdd .hdd-calculator .form-group.form-group-radio input {
    flex: 0 0 calc(100% - 280px)
}

.page.hdd .hdd-calculator .form-group.form-group-radio .hdd-radio-group {
    flex: 0 0 180px;
    padding-left: 1rem
}

@media only screen and (max-width : 420px) {
    .page.hdd .hdd-calculator .form-group input {
        flex: calc(100% - 100px)
    }

    .page.hdd .hdd-calculator .form-group p {
        flex: 0 0 100%
    }

    .page.hdd .hdd-calculator .form-group.form-group-radio input {
        flex: 0 0 calc(100% - 180px)
    }
}

.page.useful-links .list-group h2 {
    font-size: 1.25rem;
    padding: .75rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 0;
    margin-bottom: 0
}

.page.useful-links .link-items ul li a.link-item {
    color: #07101b;
    display: block;
    padding: .75rem 0
}

.page.useful-links .link-items ul li+li {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.page.support ul.nav.nav-pills li.nav-item a.nav-link {
    background: #fff;
    border: 1px solid #07101b;
    color: #07101b;
    border-radius: 0;
    transition: .4s;
    text-transform: uppercase;
    font-weight: normal
}

.page.support ul.nav.nav-pills li.nav-item a.nav-link .mdi {
    display: none
}

.page.support ul.nav.nav-pills li.nav-item a.nav-link.active {
    background: #07101b;
    color: #fff;
    font-weight: bold
}

.page.support ul.nav.nav-pills li.nav-item a.nav-link.disabled {
    opacity: .5;
    cursor: no-drop
}

.page.support ul.nav.nav-pills li.nav-item+li.nav-item a.nav-link {
    border-left: 0
}

@media only screen and (max-width : 560px) {
    .page.support ul.nav.nav-pills li.nav-item {
        flex: 0 0 100%;
        margin-bottom: 1rem
    }

    .page.support ul.nav.nav-pills li.nav-item+li.nav-item a.nav-link {
        border-left: 1px solid #07101b
    }
}

.page.support h3.tabs-head {
    padding-left: 4.5rem;
    position: relative
}

.page.support h3.tabs-head .icon {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 100%
}

.page.support h3.tabs-head .icon svg {
    width: 100%;
    height: 100%
}

.page.support h3.tabs-head .icon:before {
    content: "";
    width: 4px;
    height: calc(100% - .25rem);
    top: .25rem;
    background: #5d4ac7;
    position: absolute;
    right: -1.25rem
}

@media only screen and (max-width : 560px) {
    .page.support h3.tabs-head {
        font-size: 1.25rem;
        line-height: 1.5rem
    }

    .page.support h3.tabs-head .icon:before {
        right: -0.875rem;
        height: calc(100% - .25rem)
    }
}

@media only screen and (max-width : 480px) {
    .page.support h3.tabs-head .icon:before {
        right: -0.875rem
    }
}

.page.support .tabs-explanation {
    font-size: 1rem
}

@media only screen and (max-width : 560px) {

    .page.support .table-responsive .table th,
    .page.support .table-responsive .table td {
        font-size: .875rem
    }
}

.page.support .form-group {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: flex-end
}

.page.support .form-group .form-control {
    border-color: #5d4ac7;
    border-radius: 0
}

.page.support .form-group .select2-container {
    width: 100% !important
}

.page.support .form-group .select2-container .select2-selection--single {
    border-color: #5d4ac7;
    border-radius: 0
}

.page.support .form-group .input-group .input-group-prepend .input-group-text {
    border-color: #5d4ac7;
    background: #e1def5;
    border-radius: 0
}

.page.support .form-group .input-group .custom-file .custom-file-label {
    border-color: #5d4ac7;
    border-radius: 0
}

.page.support .form-group .captcha img.captcha_img {
    border-color: #5d4ac7;
    border-radius: 0
}

.page.support .form-group .submit {
    width: 100%
}

.page.support .form-group .submit a {
    color: #748290;
    transition: .4s
}

.page.support .form-group .submit a:hover {
    color: #5d4ac7
}

.page.support .form-group .submit .custom-control .custom-control-input:checked~.custom-control-label:before {
    background: #5d4ac7;
    border-color: #5d4ac7
}

.page.support .form-group .submit .custom-control .custom-control-input:focus:not(:checked)~.custom-control-label:before {
    border-color: #5d4ac7
}

.page.support .form-group .submit .custom-control .custom-control-input:focus~.custom-control-label:before {
    box-shadow: 0 0 0 .2rem rgba(93, 74, 199, .25)
}

.page.support .form-group .submit .btn.btn-primary {
    background: #5d4ac7;
    border-color: #5d4ac7;
    border-radius: 0;
    margin-bottom: 1rem
}

.page.support .form-group .submit .btn.btn-primary:hover {
    background: #362883;
    border-color: #362883
}

.page.support .support-query-form {
    margin-bottom: 1rem
}

.page.support .support-query-form .form-group .submit .btn.btn-primary {
    margin-bottom: 0
}

.page.support .support-request-list-head {
    padding-top: 4rem
}

.page.support .support-request-list-head ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.page.support .support-request-list-head ul li.support-request-status-no p {
    color: #adb5bd;
    font-size: .75rem
}

.page.support .support-message-area {
    background: rgba(93, 74, 199, .05);
    padding: 1rem 6.5rem 1rem 4.5rem
}

.page.support .support-message-area .support-request-list {
    margin-bottom: 2.25rem
}

.page.support .support-message-area .support-request-list li p {
    margin-bottom: 0;
    font-size: .875rem;
    color: #8e8e8e
}

.page.support .support-message-area .support-request-list li.support-request-subject p {
    font-size: 1.5rem;
    color: #414141;
    font-weight: bold
}

.page.support .support-message-area .support-message-area-item {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.page.support .support-message-area .support-message-area-item .support-message-img {
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    margin-right: 2rem;
    border-radius: 3rem;
    overflow: hidden
}

.page.support .support-message-area .support-message-area-item .support-message-img img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover
}

.page.support .support-message-area .support-message-area-item .support-message-body {
    flex: 0 0 calc(100% - 5rem);
    padding: 1rem 1rem 1rem 1rem;
    position: relative;
    margin-bottom: 2rem;
    background: #fff;
    box-shadow: 0 2px 3px #e4e7ed
}

.page.support .support-message-area .support-message-area-item .support-message-body:before {
    content: "";
    position: absolute;
    left: -11px;
    display: block;
    width: 0;
    height: 0;
    border-right: 11px solid #fff;
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0)
}

.page.support .support-message-area .support-message-area-item .support-message-body h5 {
    font-size: 1rem;
    color: #5d4ac7;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.page.support .support-message-area .support-message-area-item .support-message-body p {
    font-size: .875rem;
    color: #747474
}

.page.support .support-message-area .support-message-area-item .support-message-body time {
    font-size: .875rem;
    color: #747474;
    position: absolute;
    right: .75rem;
    top: 0;
    margin-top: .75rem
}

.page.support .support-message-area .support-message-area-item .attachment {
    flex: 0 0 calc(100% - 5rem);
    margin-left: 5rem;
    margin-bottom: 2rem;
    margin-top: -1rem
}

.page.support .support-message-area .support-message-area-item .attachment p {
    display: inline-block;
    background: #fff;
    padding: .5rem 1rem .5rem 2rem;
    margin-bottom: 0;
    border-radius: 2rem;
    margin-right: 1rem
}

.page.support .support-message-area .support-message-area-item .attachment p a {
    display: inline-block;
    color: #000;
    padding: .5rem 1rem;
    margin-left: 1rem;
    border-radius: 2rem;
    background: rgba(0, 0, 0, .1);
    transition: .4s
}

.page.support .support-message-area .support-message-area-item .attachment p a:hover {
    background: rgba(0, 0, 0, .9);
    color: #fff
}

.page.support .support-message-area .support-message-area-item.manager-answer {
    transform: translateX(35px)
}

.page.support-border-radius ul.nav.nav-pills li.nav-item:nth-child(1) a {
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem
}

.page.support-border-radius ul.nav.nav-pills li.nav-item:nth-last-child(1) a {
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem
}

@media only screen and (max-width : 560px) {
    .page.support-border-radius ul.nav.nav-pills li.nav-item a {
        border-radius: 1.5rem !important
    }
}

.page.support-border-radius .form-group .form-control {
    border-radius: 1.125rem
}

.page.support-border-radius .form-group .select2-container .select2-selection--single {
    border-radius: 1.125rem
}

.page.support-border-radius .form-group .select2-container.select2-container--open .select2-selection--single {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px
}

.page.support-border-radius .form-group .input-group .input-group-prepend .input-group-text {
    border-top-left-radius: 1.125rem;
    border-bottom-left-radius: 1.125rem
}

.page.support-border-radius .form-group .input-group .custom-file .custom-file-label {
    border-top-right-radius: 1.125rem;
    border-bottom-right-radius: 1.125rem
}

.page.support-border-radius .form-group .captcha img.captcha_img {
    border-radius: 1.125rem
}

.page.support-border-radius .form-group .submit .btn.btn-primary {
    border-radius: 1.125rem
}

.page.support-border-radius .support-message-area {
    border-radius: calc(1.125rem * 2)
}

.page.support-border-radius .support-message-area .support-message-area-item .support-message-body {
    border-radius: 1.125rem
}

.page.services-categories .service-categories-container a {
    display: block;
    transition: .4s;
    margin-bottom: 1.875rem
}

.page.services-categories .service-categories-container a .card {
    overflow: hidden
}

.page.services-categories .service-categories-container a .card img.card-img-top {
    display: block;
    object-fit: cover;
    transition: .4s;
    max-width: 100%;
    height: 100%
}

.page.services-categories .service-categories-container a .card .card-body h5.card-title {
    color: #438381
}

.page.services-categories .service-categories-container a .card .card-body p {
    color: #747474
}

.page.services-categories .service-categories-container a:hover {
    transform: translateY(-0.75rem)
}

.page.services-categories .service-categories-container a:hover .card img.card-img-top {
    transform: scale(1.1)
}

.page.services-categories .service-categories-container .form-row a {
    margin-bottom: .625rem
}

.page.services-detail .services-detail-container .services-detail-img {
    margin-bottom: 1rem;
    height: 410px;
    position: relative
}

.page.services-detail .services-detail-container .services-detail-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    max-height: 100%
}

.page.services-detail .services-detail-container .services-detail-img .btn {
    white-space: nowrap;
    position: absolute;
    top: 0;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    max-width: 90%;
    padding: .5rem 5.5rem;
    color: #000;
    transition: .4s
}

.page.services-detail .services-detail-container .services-detail-img .btn:hover {
    color: #fff;
    background: #000
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .page.services-detail .services-detail-container .services-detail-img .btn {
        padding: .5rem 3rem
    }
}

@media only screen and (max-width : 767px) {
    .page.services-detail .services-detail-container .services-detail-img .btn {
        width: 100%;
        white-space: normal;
        padding: .5rem 1rem
    }
}

.page.services-detail .services-detail-container .services-head {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 0 3rem
}

.page.services-detail .services-detail-container .services-head-category {
    margin-bottom: 1rem
}

.page.services-detail .services-detail-container .services-head-title h4 {
    font-size: 1.875rem
}

.page.services-detail .services-detail-container .services-head-explanation p {
    line-height: 1.125rem;
    color: #747474
}

@media only screen and (max-width : 767px) {
    .page.services-detail .services-detail-container .services-head {
        padding: 0
    }

    .page.services-detail .services-detail-container .services-head-category h3 {
        font-size: 1.5rem
    }

    .page.services-detail .services-detail-container .services-head-title h4 {
        font-size: 1.5rem
    }

    .page.services-detail .services-detail-container .services-head-explanation p {
        font-size: .875rem;
        line-height: 1rem
    }
}

.page.services-detail .services-detail-container .modal .modal-dialog {
    width: 720px;
    max-width: calc(100% - 1rem)
}

.page.services-detail .services-detail-container .modal .modal-content {
    padding: 2.5rem 6rem 2.5rem 4rem
}

@media only screen and (max-width : 560px) {
    .page.services-detail .services-detail-container .modal .modal-content {
        padding: 1.5rem 3rem 1.5rem 1rem
    }
}

@media only screen and (max-width : 420px) {
    .page.services-detail .services-detail-container .modal .modal-content {
        padding: 1rem 2rem 1rem 0
    }
}

.page.services-detail .services-detail-container .modal .modal-header {
    display: none
}

.page.services-detail .services-detail-container .modal .modal-body .service-modal-title {
    text-align: center
}

.page.services-detail .services-detail-container .modal .modal-body .service-modal-title p span {
    color: #4ebbff;
    font-weight: bold
}

.page.services-detail .services-detail-container .modal .modal-body .form-group {
    position: relative;
    padding-left: 2rem
}

.page.services-detail .services-detail-container .modal .modal-body .form-group .mdi {
    position: absolute;
    left: .25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd
}

.page.services-detail .services-detail-container .modal .modal-body .form-group .form-control {
    border: none;
    border-bottom: 1px solid #adb5bd;
    border-radius: 0;
    color: #adb5bd
}

.page.services-detail .services-detail-container .modal .modal-body .form-group .form-control:focus {
    box-shadow: none !important
}

.page.services-detail .services-detail-container .modal .modal-body .form-group .select2-container .select2-selection--single {
    border: none;
    border-bottom: 1px solid #adb5bd;
    border-radius: 0
}

.page.services-detail .services-detail-container .modal .modal-body .form-group .select2-container .select2-selection--single span {
    color: #adb5bd
}

.page.services-detail .services-detail-container .modal .modal-body .form-group .captcha .captcha_img {
    border: none
}

.page.services-detail .services-detail-container .modal .modal-body .captcha-line {
    flex: 0 0 330px;
    max-width: 330px;
    margin: 0 auto
}

@media only screen and (max-width : 420px) {
    .page.services-detail .services-detail-container .modal .modal-body .captcha-line .col {
        flex: 0 0 100%
    }

    .page.services-detail .services-detail-container .modal .modal-body .captcha-line .col:nth-child(1) {
        margin-bottom: 1rem
    }
}

.page.services-detail .services-detail-container .modal .modal-footer {
    border-top: 0;
    justify-content: center;
    padding-left: 3rem
}

.page.services-detail .services-detail-container .modal .modal-footer .btn.btn.btn-primary {
    background: #4ebbff;
    color: #fff;
    border: 0;
    border-radius: 0
}

.page.services-detail .services-detail-container .modal .modal-footer .btn.btn.btn-primary:hover {
    background: #008ee7
}

.page.services-detail .services-detail-container .modal .modal-footer .close {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    background: #adb5bd;
    width: 40px;
    height: 40px;
    opacity: 1
}

.page.services-detail .services-detail-container .modal .modal-footer .close .mdi {
    font-size: 2.5rem;
    color: #747474
}

.page.file-archive .form-group .select2-container {
    width: 100% !important
}

.page.file-archive .file-archive-process-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem
}

.page.file-archive .file-archive-process-container .file-archive-search {
    flex: 0 0 27.5rem;
    height: 3rem;
    max-width: 100%;
    margin-bottom: 1rem
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    position: relative
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group input {
    border: 1px solid #5d4ac7;
    padding-left: 2.25rem;
    color: #5d4ac7;
    height: 3rem;
    flex: 0 0 calc(100% - 4.5rem);
    border-radius: 0
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group input::placeholder {
    color: #5d4ac7
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group svg {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translate(-50%, -50%)
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group svg path {
    color: #5d4ac7
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group button {
    transition: .4s;
    background: #5d4ac7;
    color: #fff;
    height: 3rem;
    flex: 0 0 4.5rem;
    border-radius: 0
}

.page.file-archive .file-archive-process-container .file-archive-search .form-group button:hover {
    background: #4634aa
}

@media only screen and (max-width : 991px) {
    .page.file-archive .file-archive-process-container .file-archive-search {
        margin-bottom: 3rem
    }
}

.page.file-archive .file-archive-process-container .file-archive-group-select {
    width: 20rem;
    margin-bottom: 1rem
}

.page.file-archive .file-archive-process-container .file-archive-group-select label {
    position: absolute;
    margin-top: -0.5rem;
    transform: translateY(-100%);
    color: #5d4ac7
}

.page.file-archive .file-archive-process-container .file-archive-group-select .select2 {
    width: 100% !important
}

.page.file-archive .file-archive-process-container .file-archive-group-select .select2 .select2-selection--single {
    height: 48px;
    border-color: #5d4ac7;
    border-radius: 0;
    transition: .4s
}

.page.file-archive .file-archive-process-container .file-archive-group-select .select2 .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    color: #5d4ac7
}

.page.file-archive .file-archive-process-container .file-archive-group-select .select2 .select2-selection--single .select2-selection__arrow {
    top: 10px
}

.page.file-archive .file-archive-process-container .file-archive-group-select .select2 .select2-selection--single .select2-selection__arrow b {
    border-color: #5d4ac7 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.page.file-archive .file-archive-process-container .file-archive-search-result {
    padding: .8rem 2rem;
    border: 1px solid #5d4ac7;
    margin-bottom: 1rem
}

.page.file-archive .file-archive-process-container .file-archive-search-result p {
    color: #5d4ac7;
    margin: 0;
    line-height: 1rem
}

.page.file-archive .file-archive-process-container .file-archive-search-result p i {
    margin-right: .5rem
}

@media only screen and (max-width : 991px) {
    .page.file-archive .file-archive-process-container .file-archive-search {
        flex: 0 0 55%
    }

    .page.file-archive .file-archive-process-container .file-archive-search-result {
        flex: 0 0 40%
    }
}

@media only screen and (max-width : 767px) {
    .page.file-archive .file-archive-process-container .file-archive-search {
        flex: 0 0 100%
    }

    .page.file-archive .file-archive-process-container .file-archive-search-result {
        flex: 0 0 100%
    }
}

.page.file-archive .file-list .table-responsive .table thead tr th {
    background: rgba(93, 74, 199, .05);
    color: #747474;
    font-weight: normal
}

.page.file-archive .file-list .table-responsive .table tr th,
.page.file-archive .file-list .table-responsive .table tr td {
    padding: .5rem 1rem
}

.page.file-archive .file-list .table-responsive .table tr th a,
.page.file-archive .file-list .table-responsive .table tr td a {
    display: inline-block;
    color: #5d4ac7;
    transition: .4s
}

.page.file-archive .file-list .table-responsive .table tr th a:hover,
.page.file-archive .file-list .table-responsive .table tr td a:hover {
    color: #362883
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-search .form-group input {
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-search .form-group button {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-group-select {
    width: 20rem
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-group-select label {
    position: absolute;
    margin-top: -0.5rem;
    transform: translateY(-100%);
    color: #5d4ac7
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-group-select .select2 {
    width: 100% !important
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-group-select .select2 .select2-selection--single {
    border-radius: 1.5rem
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-group-select .select2.select2-container--open .select2-selection--single {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.page.file-archive-border-radius .file-archive-process-container .file-archive-search-result {
    border-radius: 3rem
}

.page.file-archive-border-radius .file-list .table-responsive {
    border: 1px solid #dee2e6;
    border-radius: 1.5rem
}

.page.file-archive-border-radius .file-list .table-responsive .table {
    margin-bottom: 0;
    width: calc(100% + 1px);
    margin-left: -1px;
    margin-top: -1px
}

.page.file-archive-border-radius .file-list .table-responsive .table tr th:nth-last-child(1),
.page.file-archive-border-radius .file-list .table-responsive .table tr td:nth-last-child(1) {
    border-right: 0 !important
}

.page.file-archive-border-radius .file-list .table-responsive .table tr:nth-last-child(1) th,
.page.file-archive-border-radius .file-list .table-responsive .table tr:nth-last-child(1) td {
    border-bottom: 0 !important
}

.page.blogs .blog-list ul li.blog-item {
    padding-bottom: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #adb5bd
}

.page.blogs .blog-list ul li.blog-item .blog-list-img {
    margin-bottom: 1rem;
    height: 19rem
}

.page.blogs .blog-list ul li.blog-item .blog-list-img a {
    display: block;
    height: 19rem
}

.page.blogs .blog-list ul li.blog-item .blog-list-img a img {
    display: block;
    object-fit: cover;
    width: 100%;
    max-height: 100%
}

.page.blogs .blog-list ul li.blog-item .blog-list-content-head {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 1rem
}

.page.blogs .blog-list ul li.blog-item .blog-list-content-head .blog-date {
    border: 1px solid #000;
    flex: 0 0 3.5rem;
    padding: .25rem .125rem;
    max-width: 3.5rem;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.page.blogs .blog-list ul li.blog-item .blog-list-content-head .blog-date span {
    display: block;
    text-align: center;
    font-size: .875rem;
    line-height: .875rem;
    color: #000;
    flex: 0 0 100%
}

.page.blogs .blog-list ul li.blog-item .blog-list-content-head .blog-content-title {
    flex: 0 0 calc(100% - 5.5rem);
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.page.blogs .blog-list ul li.blog-item .blog-list-content-head .blog-content-title .blog-title {
    font-weight: bold;
    color: #000
}

.page.blogs .blog-list ul li.blog-item .blog-list-content .blog-list-explanation {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative
}

.page.blogs .blog-list ul li.blog-item .blog-list-content .blog-list-explanation p {
    font-size: .875rem;
    color: #000;
    line-height: 1.5rem;
    flex: 0 0 100%
}

.page.blogs .blog-list ul li.blog-item .blog-list-content .blog-list-explanation .btn {
    background: #000;
    border-radius: 0;
    border: 0;
    flex: 0 0 auto;
    transition: .4s
}

.page.blogs .blog-list ul li.blog-item .blog-list-content .blog-list-explanation .btn:hover {
    background: rgba(0, 0, 0, .1);
    color: #000
}

.page.blogs .blog-list ul li.blog-item .blog-list-content .blog-list-explanation .author {
    color: #adb5bd;
    font-size: .875rem;
    position: absolute;
    right: .125rem;
    bottom: -0.25rem;
    transform: translateY(100%)
}

.page.blog-detail .blog-item .blog-item-img img {
    display: block;
    height: 100%;
    object-fit: cover;
    margin: 0 auto 1rem
}

.page.blog-detail .blog-list-time-content {
    margin-bottom: 1rem;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.page.blog-detail .blog-list-time-content .blog-date {
    flex: 0 0 auto
}

.page.blog-detail .blog-list-time-content .blog-date span {
    display: inline-block;
    padding: .125rem;
    font-size: .875rem
}

.page.blog-detail .blog-list-time-content .blog-date .blog-date-month {
    padding-left: 0
}

.page.blog-detail .blog-list-time-content .counter {
    flex: 0 0 auto;
    font-size: .875rem
}

.page.blog-detail .blog-item-head h4 {
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem
}

.page.blog-detail .blog-text p {
    color: #000
}

.page.certificates .certificate-container ul {
    border: 1px solid rgba(151, 151, 151, .1490196078);
    transition: .4s;
    overflow: hidden;
    margin-bottom: 1rem
}

.page.certificates .certificate-container ul li a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1rem;
    min-height: 62px;
    color: var(--color-theme-andprekast-4-hex);
    position: relative;
    padding: 20px 52px 20px 34px;
    display: block
}

.page.certificates .certificate-container ul li a span {
    position: absolute;
    right: 40px;
    line-height: normal;
    top: calc(50% - 11px)
}

.page.certificates .certificate-container ul li a span svg {
    fill: var(--color-theme-andprekast-4-hex);
    transition: .4s
}

.page.certificates .certificate-container ul li a:hover {
    color: rgba(28, 28, 56, .5882352941)
}

.page.certificates .certificate-container ul li a:hover svg {
    fill: rgba(28, 28, 56, .5882352941)
}

.page.certificates .certificate-container ul li+li {
    border-top: 1px solid rgba(151, 151, 151, .15);
    background: #fff
}

@media only screen and (max-width : 767px) {
    .page.certificates .certificate-container ul {
        margin-bottom: 1.5rem
    }

    .page.certificates .certificate-container ul li a {
        font-size: 12px;
        padding: 20px 110px 20px 34px;
        min-height: 54px
    }

    .page.certificates .certificate-container ul li a svg {
        width: 22px;
        height: 20px
    }
}

@media only screen and (max-width : 320px) {
    .page.certificates .certificate-container ul li a {
        font-size: 10px;
        padding: 20px 90px 20px 34px
    }
}

.page.certificates .identification {
    display: block;
    height: 315px;
    position: relative;
    top: 0;
    transition: .4s;
    overflow: hidden;
    user-select: none
}

.page.certificates .identification:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(30, 29, 29, .78);
    z-index: 9;
    transition: .4s
}

.page.certificates .identification:hover {
    box-shadow: 0 18px 25px 0 rgba(0, 0, 0, .11);
    top: -10px
}

.page.certificates .identification:hover:before {
    background: rgba(30, 29, 29, .32)
}

.page.certificates .identification .corporate-identification {
    height: 100%;
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center
}

.page.certificates .identification .corporate-identification h3 {
    font-size: 17px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.65;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 12px;
    position: relative;
    z-index: 9
}

.page.certificates .identification .corporate-identification h3 span {
    display: block;
    font-weight: bold
}

.page.certificates .identification .corporate-identification-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center
}

.page.certificates .identification .corporate-identification-item img {
    width: 154px;
    position: relative;
    z-index: 9
}

@media only screen and (max-width : 991px) {
    .page.certificates .identification {
        display: none
    }
}

.page.certificates .certificate-list a {
    display: block;
    margin-bottom: 2rem;
    overflow: hidden
}

.page.certificates .certificate-list a .certificate-item {
    height: 19rem;
    transition: .4s
}

.page.certificates .certificate-list a .certificate-item img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto
}

@media only screen and (max-width : 560px) {
    .page.certificates .certificate-list a .certificate-item img {
        max-width: initial;
        height: initial;
        max-height: 100%;
        width: 100%
    }
}

.page.certificates .certificate-list a:hover .certificate-item {
    transform: scale(1.1)
}

.page.certificates-border-radius .identification {
    border-radius: 1.5rem
}

.page.certificates-border-radius .certificate-list a {
    border-radius: 1.5rem
}

.page.gallery .gallery-filter .select2-container {
    width: 100% !important
}

.page.gallery .gallery-filter .btn.btn-primary.btn-block {
    height: 35px;
    line-height: 22px
}

.page.gallery .gallery-list .card .card-img-top {
    height: 10rem;
    object-fit: cover;
    transition: .4s
}

.page.gallery .gallery-list .card .card-body .card-title {
    color: #07101b
}

.page.gallery .gallery-list .card .card-body .card-text {
    color: #07101b
}

.page.gallery .gallery-list .card:hover .card-img-top {
    transform: scale(1.05) translateY(-0.5rem)
}

.page.client-comment .media img {
    width: 80px;
    height: 80px;
    object-fit: cover
}

.page.projects {
    overflow: hidden
}

.page.projects .row {
    position: relative
}

.page.projects .nav {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    padding: 11px 0px;
    transition: .4s;
    flex-wrap: nowrap
}

.page.projects .nav .nav-item {
    flex: 0 0 33.333333333%;
    max-width: 25.11%;
    text-align: center;
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px
}

.page.projects .nav .nav-item a {
    font-family: "Montserrat", sans-serif !important;
    border-radius: 2px;
    border: 2px solid var(--color-theme-andprekast-4-hex);
    color: var(--color-theme-andprekast-4-hex);
    padding: 20px 15px;
    position: relative;
    font-weight: 600
}

.page.projects .nav .nav-item a.active {
    border: 2px solid var(--color-theme-andprekast-4-hex);
    background: var(--color-theme-andprekast-4-hex);
    color: #fff;
    padding: 20px 0
}

.page.projects .nav .nav-item a.active:before {
    width: 100%
}

.page.projects .nav .nav-item a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--color-theme-andprekast-4-hex);
    z-index: -1;
    transition: .2s
}

.page.projects .nav .nav-item a:hover {
    color: #fff
}

.page.projects .nav .nav-item a:hover:before {
    width: 100%
}

@media only screen and (max-width : 991px) {
    .page.projects .nav .nav-item a {
        font-size: 12px
    }
}

@media only screen and (max-width : 767px) {
    .page.projects .nav .nav-item {
        flex: none;
        max-width: initial
    }
}

.page.projects .nav.fixed-nav {
    position: fixed;
    top: 0px
}

.page.projects .nav.fixed-nav:before {
    opacity: 1
}

.page.projects .nav:before {
    content: "";
    opacity: 0;
    position: absolute;
    background: #fff;
    box-shadow: 0px 5px 64px -31px rgba(0, 0, 0, .75);
    left: -100%;
    top: 0;
    bottom: 0;
    right: -100%;
    transition: .2s;
    z-index: -1
}

@media only screen and (max-width : 767px) {
    .page.projects .nav {
        position: relative
    }
}

.page.projects .tab-content {
    width: 100%
}

.page.projects .tab-content .tab-pane {
    margin-top: 125px
}

.page.projects .tab-content .tab-pane .in-tab {
    display: flex;
    flex-wrap: wrap
}

.page.projects .tab-content .tab-pane .in-tab .card {
    height: 222px;
    justify-content: center;
    border-radius: initial;
    border: initial
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img {
    width: 100%;
    height: 100%;
    border-radius: initial;
    object-fit: cover
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay {
    background: rgba(0, 0, 0, .1);
    padding: initial;
    opacity: 1;
    transition: .4s
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .card-info {
    position: absolute;
    left: 20px;
    bottom: 20px
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .card-info .card-title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .01em;
    color: #fff;
    margin-left: 10px;
    margin-bottom: 5px
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .card-info .card-location {
    font-family: "Montserrat", sans-serif !important;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: .01em;
    color: #fff;
    display: flex;
    align-items: center
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .card-info .card-location svg {
    margin-right: 3px;
    width: 15px;
    height: 15px
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .durum {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--color-theme-andprekast-6-hex);
    padding: 5px 15px;
    font-weight: 600;
    font-size: 12px;
    color: #fff
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .durum2 {
    position: absolute;
    top: 20px;
    right: 0;
    background: #25d366;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 12px;
    color: #fff
}

.page.projects .tab-content .tab-pane .in-tab .card .card-img-overlay .durum3 {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--color-theme-andprekast-5-hex);
    padding: 5px 15px;
    font-weight: 600;
    font-size: 12px;
    color: #fff
}

.page.projects .tab-content .tab-pane .in-tab .card .right-arrow {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    left: 50%;
    background: var(--color-theme-andprekast-4-hex);
    padding: 6px 12px;
    border-radius: 25px;
    transition: .4s cubic-bezier(0.38, 0.01, 0, 1.02);
    opacity: 0;
    fill: #fff
}

.page.projects .tab-content .tab-pane .in-tab .card .right-arrow.video{
    background: var(--color-theme-andprekast-6-hex)
}

.page.projects .tab-content .tab-pane .in-tab .card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 18%);
    opacity: .7;
    transition: .4s
}

.page.projects .tab-content .tab-pane .in-tab .card:hover:before {
    opacity: .5
}

.page.projects .tab-content .tab-pane .in-tab .card:hover .right-arrow {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
}

.page.projects .tab-content .tab-pane .in-tab .card:hover .card-img-overlay {
    opacity: 0
}

.page.projects .fade-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: red;
    margin-top: 125px;
    z-index: 2;
    transition: .1s;
    opacity: 0
}

.page.projects .fade-effect.active {
    opacity: 1 !important
}

.page.projects .projects-res-slider {
    width: 100%;
    position: absolute;
    padding: 0 60px
}

.page.projects .projects-res-slider:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 60%);
    top: 0;
    width: 75px;
    z-index: 3
}

.page.projects .projects-res-slider:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 60%);
    top: 0;
    width: 75px;
    z-index: 3
}

.page.projects .projects-res-slider .nav {
    padding: 10px 0;
    margin-bottom: 0 !important
}

.page.projects .projects-res-slider .nav-item a {
    font-family: "Montserrat", sans-serif !important;
    font-size: 13px;
    padding: 20px 5px
}

.page.projects .projects-res-slider .nav-item.button-active a {
    border: 2px solid var(--color-theme-andprekast-4-hex) !important;
    background: var(--color-theme-andprekast-4-hex) !important;
    color: #fff !important;
    padding: 20px 0
}

.page.projects .projects-res-slider .nav-item.button-active a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--color-theme-andprekast-4-hex);
    z-index: -1;
    transition: .2s;
    width: 100%
}

.page.projects .projects-res-slider .active {
    background: rgba(255, 255, 255, 0) !important;
    color: var(--color-theme-andprekast-6-hex) !important
}

.page.projects .projects-res-slider .active:before {
    background: rgba(255, 255, 255, 0) !important;
    color: var(--color-theme-andprekast-6-hex) !important
}

.page.projects .projects-res-slider.fixed-slider {
    position: fixed;
    top: 90px;
    background: #fff;
    box-shadow: 0px 5px 64px -31px rgba(0, 0, 0, .81)
}

.page.projects .pagination {
    display: none
}

.page.projects-detail {
    padding: 0 0 50px 0;
    overflow-x: hidden
}

.page.projects-detail .proje-durum {
    text-align: center
}

.page.projects-detail .proje-durum p {
    font-family: "Montserrat", sans-serif !important;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    color: #fff;
    padding: 5px 25px;
    background: var(--color-theme-andprekast-6-hex);
    display: inline-block
}

.page.projects-detail .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 90px
}

.page.projects-detail .top .top-left h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: bold;
    font-size: 25px;
    color: var(--color-theme-andprekast-4-hex)
}

.page.projects-detail .top .top-left .project-location {
    display: flex;
    align-items: center
}

.page.projects-detail .top .top-left .project-location svg {
    fill: var(--color-theme-andprekast-4-hex)
}

.page.projects-detail .top .top-left .project-location p {
    font-family: "Montserrat", sans-serif !important;
    margin-bottom: 0;
    margin-left: 5px;
    color: var(--color-theme-andprekast-4-hex)
}

.page.projects-detail .detail-pdf {
    position: relative
}

.page.projects-detail .detail-pdf a {
    display: flex;
    align-items: center;
    width: 188px;
    height: 45px;
    transition: .4s;
    overflow: hidden
}

.page.projects-detail .detail-pdf a p {
    margin-bottom: 0;
    border: 1.5px solid #9292ac;
    padding: 14px 9px 7px 9px;
    font-weight: 500;
    font-size: 14px;
    color: #9292ac;
    transition: .4s
}

.page.projects-detail .detail-pdf a p:after {
    position: absolute;
    content: "";
    right: 65px;
    top: 6px;
    bottom: 6px;
    background: #fff;
    width: 1px;
    opacity: 0;
    transition: .4s
}

.page.projects-detail .detail-pdf a svg {
    width: 65px;
    margin-left: -17px;
    fill: #9292ac
}

.page.projects-detail .detail-pdf a svg g path {
    transition: .4s
}

.page.projects-detail .detail-pdf a svg g polygon {
    transition: .4s
}

.page.projects-detail .detail-pdf a:before {
    content: "";
    position: absolute;
    right: 29.9px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 0;
    border-color: rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.page.projects-detail .detail-pdf a:hover {
    background: #9292ac
}

.page.projects-detail .detail-pdf a:hover p {
    color: #fff !important
}

.page.projects-detail .detail-pdf a:hover p:after {
    opacity: 1
}

.page.projects-detail .detail-pdf a:hover svg g path+path {
    fill: #fff !important
}

.page.projects-detail .detail-pdf a:hover svg g polygon {
    fill: #fff !important
}

.page.projects-detail .detail-pdf:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 31px
}

.page.projects-detail .project-explain {
    margin-top: 25px
}

.page.projects-detail .project-explain p {
    font-weight: normal;
    font-size: 14px;
    line-height: 28px;
    color: #5a5a5a
}

.page.projects-detail .gallery-slider {
    margin: 0 0 70px 0;
    position: relative
}

.page.projects-detail .gallery-slider .detail-slider-left {
    display: flex;
    align-items: center;
    height: 100%;
    user-select: none;
    margin-bottom: 25px
}

.page.projects-detail .gallery-slider .detail-slider-left h4 {
    font-weight: bold;
    font-size: 25px;
    line-height: 41px;
    color: var(--color-theme-andprekast-6-hex);
    margin-bottom: initial;
    text-transform: uppercase
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 15px
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-next,
.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-prev {
    background: none;
    position: initial;
    padding: 5px;
    border: 2px solid var(--color-theme-andprekast-4-hex);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 33px;
    margin-top: initial;
    transition: .4s
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-next:hover,
.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-prev:hover {
    background: var(--color-theme-andprekast-4-hex)
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-next:hover svg,
.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-prev:hover svg {
    fill: #fff
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-next svg,
.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-prev svg {
    fill: var(--color-theme-andprekast-4-hex);
    transition: .4s
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-next {
    border-bottom: 1px solid var(--color-theme-andprekast-4-hex)
}

.page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-prev {
    border-top: 1px solid var(--color-theme-andprekast-4-hex)
}

.page.projects-detail .gallery-slider .swiper-slide {
    position: relative
}

.page.projects-detail .gallery-slider .swiper-slide img {
    width: 100%;
    height: 216px;
    object-fit: cover
}

.page.projects-detail .gallery-slider .swiper-slide a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-theme-andprekast-4-hex);
    opacity: .75;
    transition: .4s
}

.page.projects-detail .gallery-slider .swiper-slide a:hover:before {
    opacity: .5
}

.page.projects-detail .gallery-slider:before {
    content: "";
    position: absolute;
    top: -40px;
    bottom: -50px;
    right: -100vw;
    left: -100vw;
    background: #f7f7fc
}

.page.projects-detail .detail-map {
    padding: 40px 0 10px 0
}

.page.projects-detail .detail-map h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 41px;
    color: var(--color-theme-andprekast-6-hex);
    margin-bottom: 20px
}

@media only screen and (max-width : 991px) {
    .page.projects-detail .detail-pdf {
        margin-top: 15px
    }

    .page.projects-detail .detail-pdf a:before {
        top: -1px
    }

    .page.projects-detail .detail-pdf:before {
        top: -1px;
        bottom: -1px;
        width: 32px;
        right: -1px
    }

    .page.projects-detail .gallery-slider .detail-slider-left {
        margin-bottom: 10px
    }

    .page.projects-detail .gallery-slider .detail-slider-left .paginations {
        flex-direction: row-reverse
    }

    .page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-next {
        border-bottom: 2px solid var(--color-theme-andprekast-4-hex);
        border-left: 1px solid var(--color-theme-andprekast-4-hex)
    }

    .page.projects-detail .gallery-slider .detail-slider-left .paginations .detail-prev {
        border-top: 2px solid var(--color-theme-andprekast-4-hex);
        border-right: 1px solid var(--color-theme-andprekast-4-hex)
    }
}

@media only screen and (max-width : 767px) {
    .page.projects-detail {
        padding: 0 0 50px 0
    }

    .page.projects-detail .top {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px
    }

    .page.projects-detail .top .detail-pdf {
        margin-top: 15px
    }

    .page.projects-detail .top .detail-pdf a:before {
        top: -1px
    }

    .page.projects-detail .top .detail-pdf:before {
        top: -1px
    }

    .page.projects-detail .top .top-left h2 {
        font-family: "Montserrat", sans-serif !important;
        margin-bottom: 0;
        font-size: 20px
    }

    .page.projects-detail .top .project-location p {
        font-size: 15px
    }

    .page.projects-detail .top .proje-durum {
        margin: 0 auto 15px auto
    }

    .page.projects-detail .project-explain p {
        font-size: 13px
    }

    .page.projects-detail .project-explain .detail-pdf {
        margin: -50px 0 80px 0
    }

    .page.projects-detail .gallery-slider .detail-slider-left {
        margin-bottom: 40px
    }
}

.page.container .lead {
    font-family: "Montserrat", sans-serif !important;
    padding-left: 20px
}

.page.sitemap .list-group>li a {
    margin-bottom: .5rem
}

.page.sitemap .list-group>li ul {
    margin-bottom: 1rem
}

.page.sitemap .list-group>li ul li {
    padding-left: 1rem
}

.page.sitemap .list-group>li ul li a {
    margin-bottom: .25rem;
    background: rgba(0, 0, 0, .05)
}

.page.sitemap .list-group>li ul li ul li a {
    background: rgba(0, 0, 0, .1)
}

.picture-point .img-pointer {
    position: relative
}

.picture-point .img-pointer .img-pointer-dot {
    position: absolute
}

.user-screen img.user-screen-avatar {
    width: 39px;
    height: 39px
}

.proje-list ul li {
    width: 31%;
    margin: 0 1%;
    -webkit-box-shadow: 0 8px 15px -3px rgba(0, 0, 0, .24);
    box-shadow: 0 1px 15px -3px rgba(0, 0, 0, .24);
    position: relative;
    float: left;
    position: relative;
    margin-bottom: 20px;
    min-height: 245px
}

.proje-list ul li a {
    height: 100%;
    display: block
}

.proje-list ul li img {
    width: auto !important
}

.pImage a {
    position: relative;
    display: block
}

.proje-list ul li span {
    display: flex;
    height: 200px;
    width: 100%;
    position: relative;
    background: #000;
    align-items: center;
    justify-content: center
}

h3.proje-title {
    margin: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 19px;
    color: #000;
    text-transform: uppercase
}

b.hover {
    font-size: 18px;
    color: #fff;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out
}

.projeBack {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .5;
    transition: all .3s ease-out
}

.proje-list ul li:hover b {
    opacity: 1;
    visibility: visible
}

.proje-list ul li:hover .projeBack {
    opacity: 1
}

.p-title h2 {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    margin-bottom: 0
}

.p-title img {
    width: 200px
}

.p-title {
    padding-bottom: 0;
    border-bottom: 1px solid #122c48;
    margin-bottom: 40px
}

.projeBg {
    height: auto;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative
}

.projeManset {
    margin-bottom: 10px
}

.projeOzellik p {
    margin-bottom: 0;
    font-weight: 500
}

.projeOzellik {
    margin-top: 10px
}

.proje-slide img {
    width: 100%;
    display: block
}

.turItems {
    float: left;
    width: 100%
}

.turItems+.turItems {
    margin-top: 20px
}

.turBaslik h3 {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px
}

.projeAciklama p {
    font-size: 15px;
    line-height: 31px
}

.projeMap {
    width: 100%;
    height: 350px
}

section.page.projectDetail {
    padding-bottom: 0
}

.turItems:last-child {
    margin-bottom: 60px
}

.urunGruplari h5.card-title {
    margin-bottom: 5px;
    font-weight: 500
}

.urunGruplari .card {
    min-height: 390px
}

.urunGruplari a .card-img-top {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center
}

.urunGruplari p.card-text {
    line-height: normal;
    margin-bottom: 0px;
    min-height: 34px
}

.productList .sidebar {
    padding: 25px 0 0;
    border: 2px solid #f4e7da;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.productList .sidebar ul li a {
    padding: 15px;
    display: block;
    position: relative;
    border-bottom: 1px solid #f5ede4;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #36312c
}

.productList .sidebar>ul>li:last-child>a {
    border-bottom: none
}

.productList .sidebar>ul {
    position: relative;
    padding-bottom: 0
}

.productList .sidebar>ul>li>ul {
    background: #fbf7f2;
    width: 100%;
    padding: 0
}

.productList .side-drop2>ul {
    display: none
}

li.side-drop>ul {
    display: none
}

.sidebar>ul>li>i {
    position: absolute;
    right: 10px;
    top: 20px
}

.sidebar>ul>li {
    position: relative
}

.sideTitle {
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #000;
    padding: 13px 0;
    background: #f5ede4;
    margin: 0 10px 30px;
    font-size: 19px;
    font-weight: 500;
    text-align: center
}

.productList .sidebar li h3 {
    font-weight: 400;
    line-height: normal;
    color: #000;
    margin: 0;
    padding: 0;
    border-bottom: solid 2px #f5ede4;
    border-top: 0;
    text-align: center;
    line-height: normal;
    font-size: 20px;
    padding: 13px 0;
    margin: 0px 0px 0
}

ul.costum-scroll {
    padding: 20px !important;
    display: inline-block
}

.productList .sidebar>ul>li.active>a {
    background: #000;
    color: #fff;
    font-weight: bold
}

.productList .sidebar .select {
    padding: 0;
    margin-bottom: 20px
}

.sidebar ul li.side-drop.active>ul {
    display: block
}

.productList .sidebar>ul>li>ul>li>ul {
    padding: 0
}

li.side-drop2.active .opened a {
    font-weight: bold;
    background: #122c48;
    color: #fff
}

li.side-drop2.active>a {
    background: #000;
    color: #fff !important;
    font-weight: bold !important
}

li.side-drop.active>a {
    background: #000;
    color: #fff !important;
    font-weight: bold !important
}

li.side-drop.active>ul>li.active>a {
    background: #071320;
    color: #fff;
    padding-left: 15px;
    font-weight: bold
}

li.side-drop.active>ul>li>a {
    padding: 15px 25px !important
}

.productList .sidebar>ul>li>ul>li>ul>li>a {
    padding: 15px 50px !important
}

li.side-drop2.active ul {
    display: block
}

.allProductList li {
    width: 31.3%;
    display: inline-block;
    margin: 0 1%
}

.urunArama h4 {
    font-weight: 400;
    text-transform: uppercase
}

.bulunan_urun {
    font-weight: 500
}

.allProductList {
    margin-top: 30px
}

.searchProduct {
    margin: 0 1%
}

section.page.productList form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}

.map-responsive {
    height: 400px
}

.map-responsive iframe {
    height: 400px;
    width: 100%
}

.contact-bottom {
    padding: 60px 0
}

@media only screen and (max-width : 991px) {
    .contact-bottom {
        padding: 30px 0px
    }
}

@media only screen and (max-width : 767px) {
    .contact-bottom {
        padding: 20px 0
    }
}

section.page.sepetScreen .alert {
    margin: 0 15px;
    margin-bottom: 30px;
    width: calc(100% - 30px)
}

.sepetScreen i.fa-lira-sign {
    font-size: 80%
}

.basket-nav .step {
    float: left;
    width: 25%;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative
}

.basket-nav {
    display: block;
    padding: 20px 0 25px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 35px;
    z-index: 1;
    width: 100%;
    overflow: hidden
}

.basket-nav:before {
    content: "";
    position: absolute;
    left: 0;
    top: 62px;
    height: 1px;
    width: 100%;
    border-bottom: 1px dashed #f5ede4
}

.basket-nav .step.active:before {
    left: 0;
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    top: 41px;
    background: #000;
    transition: width 1.5s ease;
    z-index: 9
}

.basket-nav .active.bar:before {
    width: 100%
}

.basket-nav .step.active .stepIcon {
    border-color: #603813
}

.basket-nav .step .stepIcon {
    border: 1px solid #e8dfd4;
    justify-content: center;
    position: relative;
    z-index: 9;
    background: #fff;
    border-radius: 200px;
    width: auto;
    height: auto;
    display: inline-block !important
}

.basket-nav .step .stepIcon:before {
    left: -6px
}

.basket-nav .step .stepIcon:after,
.basket-nav .step .stepIcon:before {
    content: "";
    position: absolute;
    height: 10px;
    background: #fff;
    top: 50%;
    width: 5px;
    margin-top: -5px
}

.basket-nav .step .stepIcon a {
    width: 87px;
    height: 87px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden
}

.basket-nav .step .stepIcon a i {
    text-align: center;
    display: block;
    width: 100%;
    border: none;
    right: 0;
    left: 0;
    top: 0;
    position: relative
}

.basket-nav .step .stepIcon i:before {
    font-size: 36px;
    color: #e0d8cd
}

.basket-nav .step.active i:before {
    color: #000 !important
}

.basket-nav .step .stepIcon:after {
    right: -6px
}

.basket-nav .step .stepIcon:after,
.basket-nav .step .stepIcon:before {
    content: "";
    position: absolute;
    height: 10px;
    background: #fff;
    top: 50%;
    width: 5px;
    margin-top: -5px
}

.basket-nav .step .stepTitle {
    width: 100%;
    padding: 10px;
    text-align: center;
    text-transform: uppercase
}

.basket-nav .step .stepTitle a {
    font-weight: 300;
    color: #000;
    font-size: 17px
}

.basket-nav .step.active .stepTitle a {
    color: #000;
    font-weight: 500
}

.basket-title {
    margin: 0;
    padding: 20px;
    position: relative;
    font-size: 19px;
    color: #fff;
    background: #122c48;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase
}

.sepetUrunBilgi {
    margin-top: 30px
}

.sepetUrunItem {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    padding: 15px 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 3px
}

.sepetUrunImg {
    float: left;
    width: 120px;
    margin-left: 0
}

.sepetUrunImg img {
    width: 100%;
    height: auto
}

.sepetUrunName {
    float: left;
    width: calc(100% - 480px);
    padding: 0 15px
}

.sepetUrunName a.productLink {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    display: block
}

.qty {
    float: left;
    width: 120px;
    position: relative
}

.single,
.sub-total {
    width: 100px;
    text-align: center;
    float: left
}

.single p,
.sub-total p {
    margin: 0;
    color: #000;
    font-weight: 500
}

.delete {
    float: left;
    width: 50px;
    text-align: center
}

.delete a {
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700
}

.sepetUrunBilgi .qty {
    width: 139px
}

.qty .qty-plus {
    left: 90px;
    border-left: 0
}

.qty .qty-plus {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important
}

.qty .qty-plus {
    right: 0
}

.qty span {
    position: absolute;
    top: 0;
    height: 100%;
    width: 34px;
    background: #122c48;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #122c48;
    font-size: 21px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    transition: all .3s;
    cursor: pointer
}

.qty input {
    height: 40px;
    padding: 0 0 0 15px;
    text-align: center;
    margin-left: 33px;
    width: 57px;
    border-left: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    border: 1px solid #122c48;
    line-height: 45px
}

.sepetUrunBilgi .qty input {
    padding-right: 0;
    line-height: 30px
}

.sepetUrunBilgi .qty input {
    height: 50px !important;
    font-size: 20px
}

.qty span:hover {
    background: #000;
    color: #fff
}

.single h6,
.sub-total h6 {
    font-weight: 500
}

.single i,
.sub-total i {
    font-size: 12px;
    margin-left: 3px;
    position: relative;
    top: -1px
}

.sepetUrunName a.productLink:hover {
    color: #dc3545
}

p.products_desc {
    font-weight: 500;
    font-size: 15px
}

.btn-wrapper a i {
    font-size: 14px;
    margin-right: 4px
}

.siparisOzet {
    padding: 25px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin-bottom: 20px
}

.indirimCode {
    margin-top: 20px
}

.ozetTitle {
    display: block
}

.ozetTitle h4 {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0
}

.ozetDetay .item p:first-child {
    font-weight: 500;
    width: 50%;
    position: relative
}

.ozetDetay .item p:first-child:after {
    content: ":";
    position: absolute;
    right: 0;
    top: -1px
}

.ozetDetay .item p {
    margin-bottom: 13px
}

.urunSecim {
    width: 200px
}

.kuponForm {
    margin-top: 17px
}

.indirimForm {
    margin-top: 20px
}

.indirimForm p {
    text-align: center;
    font-weight: bold;
    color: red;
    text-transform: uppercase
}

.coupon-code pre {
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
    text-align: center
}

.add-coupon {
    display: none
}

.ozetDetay {
    padding-bottom: 5px;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0
}

.btn-cont i {
    font-size: 13px;
    margin-left: 2px
}

.same-adres {
    padding: 13px;
    font-size: 12px
}

.same-adres:hover {
    background: #28a745 !important;
    color: #fff
}

.siparis-aciklamasi {
    margin: 20px 0
}

.siparis-aciklamasi h4 {
    font-size: 18px;
    font-weight: 500
}

.d-flex.align-items-center.justify-content-between.basketTitle h4 {
    background: #fff;
    color: #000;
    padding: 0
}

.d-flex.align-items-center.justify-content-between.basketTitle a.badge {
    padding: 17px 37px;
    font-size: 15px;
    font-weight: 400
}

.d-flex.align-items-center.justify-content-between.basketTitle {
    padding-bottom: 20px
}

.myAdresses ul li {
    float: left;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border: 1px solid #e0e0e0;
    justify-content: space-between;
    border-radius: 3px
}

.myAdresses ul li+li {
    margin-top: 40px
}

.adresDetay {
    padding-right: 40px;
    border-right: 1px solid #e0e0e0;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 72%
}

.d-flex.flex-row.adresSecim {
    width: 28%
}

.adresBilgi {
    width: 71%
}

.adresSecim {
    width: 28%
}

.adresSecim .custom-control+.custom-control {
    margin-top: 14px
}

.adresBilgi h6 {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 19px
}

.adresBilgi p {
    margin-bottom: 0;
    line-height: 26px
}

.adresSecim .custom-control {
    margin-right: 0 !important;
    font-weight: 500
}

.bordColor textarea {
    border-color: #e0e0e0
}

.payment-options ul {
    display: flex;
    justify-content: space-around
}

.payment-options ul li a {
    color: #000;
    display: block;
    padding: 20px 15px;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 2px solid rgba(255, 255, 255, 0)
}

.payment-options ul li.active a {
    font-weight: bold;
    border-bottom: 2px solid #000
}

.payment-options {
    margin-bottom: 10px
}

.odemeSecenek {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #e0e0e0;
    color: #000;
    display: none
}

.odemeYazi {
    padding: 50px 0;
    text-align: center
}

.odemeYazi h4 {
    font-weight: 500
}

h5.odemeAcklama {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px
}

.odemeBilgi p {
    margin-bottom: 0
}

.odemeImg {
    max-width: 120px
}

.odemeBilgi {
    margin-left: 30px
}

.odemeBanks+.odemeBanks {
    margin-top: 30px
}

.infoGroups {
    margin-top: 30px;
    display: inline-block;
    width: 100%
}

.adresInfo {
    padding: 30px;
    border: 1px solid #e0e0e0;
    height: 250px;
    display: flex;
    align-items: center
}

.info h6 {
    font-weight: bold
}

.info p {
    margin-bottom: 0;
    line-height: 26px
}

.forms.d-flex.flex-row.wdOk {
    display: inline-block !important;
    float: left !important;
    margin-top: 15px
}

.forms.d-flex.flex-row.wdOk .custom-control {
    margin-bottom: 8px
}

.card-wrap {
    width: 320px;
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
    display: table;
    margin: auto
}

.card-type {
    width: 30px;
    margin-left: 10px
}

.card-type i {
    font-size: 28px
}

.card-wrap input,
.card-wrap .select2-container .select2-selection--single {
    background: #eee !important
}

.cvv-type img {
    position: absolute;
    right: -100px;
    top: -15px;
    width: 103px;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease
}

.cvv-type {
    position: relative
}

.cvv-type:hover img {
    right: -55px;
    opacity: 1;
    visibility: visible
}

.cvv-type h6 {
    margin-bottom: 0;
    margin-left: 8px;
    cursor: pointer
}

.wdOk a {
    color: #000;
    font-weight: bold
}

.wdOk label.custom-control-label {
    font-size: 13px
}

.tableWidth tr td:nth-child(1) {
    width: 40%;
    vertical-align: middle
}

a.table-link {
    display: block;
    color: #000;
    font-weight: bold
}

.tableWidth tr td {
    background: none
}

.siparisOrderDetail .custom-control.custom-radio img {
    position: relative;
    top: -6px
}

.orderCongrat .alert {
    margin: 0 15px 30px 0 !important;
    width: 100% !important
}

.orderCongrat {
    margin-top: 30px
}

section.page.sepetScreen .alert a {
    color: #000;
    font-weight: 500
}

.order-info {
    margin-top: 30px
}

.belgeTablo tr td,
.belgeTablo tr th {
    border: 1px solid #00cad7;
    padding: 15px !important;
    font-weight: 400;
    line-height: 27px;
    font-style: normal
}

.belgeTablo tr td,
.belgeTablo tr th,
.scrollArea.sozlesmeDetay ol li {
    font-family: Montserrat;
    font-size: 14px;
    letter-spacing: normal;
    color: #095257
}

.wd100.belge .head h4 {
    font-weight: 700;
    margin-bottom: 30px
}

.wd100.belge {
    padding-top: 20px;
    border-top: 1px solid #00cad7;
    margin-top: 30px
}

.belgeTablo tr th {
    font-weight: 700
}

.belgeTablo tr td:first-child a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.belgeTablo tr td img {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center
}

.belgeTablo tr th small {
    font-size: 100%;
    font-weight: 700
}

.belgeTablo tr td i {
    font-style: normal
}

.belgeTablo tr td a {
    color: #000
}

div#onbilgilendirme_detay .sozlesmeDetay {
    padding: 50px;
    background: #fff;
    border: 1px solid #00cad7;
    box-sizing: border-box;
    margin: 30px 0px;
    width: calc(100% - 30px);
    background: #eafdfe !important;
    max-height: 400px;
    overflow-y: scroll
}

table.ozelTablo6.productsL tr td {
    border: 1px solid #00cad7;
    padding: 10px;
    text-align: center
}

table.ozelTablo6.productsL {
    width: 100%
}

.scrollArea.sozlesmeDetay p {
    font-weight: 400;
    font-family: Montserrat;
    font-size: 14px;
    line-height: normal;
    letter-spacing: normal;
    color: #095257;
    line-height: 27px
}

.scrollArea.sozlesmeDetay ul li {
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    letter-spacing: normal;
    color: #095257;
    list-style-type: initial;
    margin-left: 20px
}

.info p:first-child {
    text-align: center;
    font-size: 18px
}

h4.scrollHead.inlineS {
    display: table;
    text-align: center;
    font-size: 26px;
    color: #1c8d90;
    text-transform: uppercase;
    margin: 30px auto
}

.scrollArea.sozlesmeDetay ol li {
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    letter-spacing: normal;
    color: #095257;
    list-style-type: inherit;
    margin-left: 15px
}

.scrollArea.sozlesmeDetay {
    padding: 50px;
    background: #fff;
    border: 1px solid #00cad7;
    box-sizing: border-box;
    margin: 30px 0px;
    width: calc(100% - 30px);
    background: #eafdfe !important;
    max-height: 400px;
    overflow-y: scroll
}

.footer .footer-top {
    padding: 70px 0 50px;
    background: var(--color-theme-andprekast-4-hex)
}

.footer .footer-bottom {
    padding: 10px 0
}

@media only screen and (max-width : 767px) {
    .footer .footer-bottom {
        padding: 45px 0
    }
}

.footer .footer-logo {
    width: 200px;
    margin-bottom: 20px
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    .footer .footer-logo {
        display: none
    }
}

.footer .footer-contact-information ul li {
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.footer .footer-contact-information ul li .icon {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer .footer-contact-information ul li .text {
    flex: 0 0 calc(100% - 0px);
    line-height: 20px
}

.footer .footer-contact-information ul li .text p {
    margin-bottom: 0;
    padding-left: 15px;
    font-size: 14px
}

.footer .footer-contact-information ul li .text p span {
    font-weight: bold
}

.footer .footer-contact-information ul li .text p a {
    color: #07101b
}

.footer .footer-contact-information ul li:last-child .text {
    margin-left: 0
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .footer .footer-contact-information ul li+li {
        margin-left: 60px
    }
}

.footer .footer-menu ol.footer-menu-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.footer .footer-menu ol.footer-menu-container>li {
    flex: 1 1 0
}

.footer .footer-menu ol.footer-menu-container>li h3.footer-menu-head {
    color: #07101b;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 15px;
    transition: all .3s ease-in-out
}

.footer .footer-menu ol.footer-menu-container>li h3.footer-menu-head:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #4d80b7;
    transition: all .3s;
    transition: all .3s ease-in-out
}

.footer .footer-menu ol.footer-menu-container>li .footer-menu-list li a {
    color: #07101b;
    font-size: 15px;
    display: block;
    margin-bottom: 8px
}

.footer .footer-menu ol.footer-menu-container>li .footer-menu-list li a:hover {
    color: #3a689a
}

.footer .footer-menu ol.footer-menu-container>li .footer-menu-list.active h3 {
    color: #486f98
}

.footer .footer-menu ol.footer-menu-container>li .footer-menu-list.active h3:before {
    width: 100%
}

.footer .footer-menu ol.footer-menu-container .footer-social a {
    display: inline-block;
    vertical-align: top;
    color: #07101b;
    transition: .4s
}

.footer .footer-menu ol.footer-menu-container .footer-social a:hover {
    color: #fff !important
}

.footer-newsletter .footer-newsletter-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.footer-newsletter .footer-newsletter-container .footer-menu-head {
    flex: 1 1 0
}

.footer-newsletter .footer-newsletter-container span.footer-cancelled {
    flex: 1 1 0;
    line-height: 22px;
    position: relative;
    margin-left: 7px;
    display: flex;
    align-items: center
}

.footer-newsletter .footer-newsletter-container span.footer-cancelled a {
    color: #416a96;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    position: relative
}

.footer-newsletter .footer-newsletter-container span.footer-cancelled a:after {
    content: "";
    position: absolute;
    bottom: calc(50% - 3px);
    left: 0;
    right: 0;
    background: #416a96;
    height: 1px;
    transition: all .3s
}

.footer-newsletter .footer-newsletter-container span.footer-cancelled a:hover {
    color: #07101b
}

.footer-newsletter .footer-newsletter-container span.footer-cancelled a:hover:after {
    bottom: 0;
    background: #07101b
}

.footer-newsletter .footer-newsletter-container p {
    display: block;
    flex: 0 0 100%
}

.footer-newsletter form {
    position: relative;
    float: left;
    width: 100%
}

.footer-newsletter form input[type=email] {
    border: 1px solid #2a435b;
    border-radius: 0;
    height: 45px;
    background: none;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    color: #fff;
    margin-top: 0;
    -webkit-appearance: none;
    width: calc(100% - 50px)
}

.footer-newsletter form input[type=email]:focus {
    border-color: #fff
}

.footer-newsletter form input[type=submit] {
    height: 45px;
    width: 50px;
    border: none;
    position: absolute;
    display: block;
    top: 0;
    right: 0px;
    background-size: 100%;
    transition: all .4s ease;
    cursor: pointer;
    background: #2a435b;
    padding: 0
}

.footer-newsletter form input[type=submit]:hover {
    background: #0f233a
}

.footer-newsletter form input[type=submit]:hover i {
    color: #fff !important
}

.footer-newsletter form i {
    color: #fff;
    position: relative;
    font-size: 27px;
    top: 4px;
    right: -9px;
    pointer-events: none
}

.footer-newsletter p {
    font-size: 16px
}

.copyright p {
    margin: 0;
    color: #07101b
}

.about {
    padding: 80px 0 50px 0
}

.about .page-content .img {
    width: 100%
}

.about .page-content .img img {
    width: 100%
}

.about .page-content h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: bold;
    font-size: 25px;
    color: #343434 !important
}

.about .page-content p {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: #5a5a5a !important
}

@media only screen and (max-width : 991px) {
    .about .page-content {
        padding: 0
    }

    .about .page-content img {
        height: 200px;
        margin-bottom: 20px;
        object-fit: cover
    }
}

@media only screen and (max-width : 767px) {
    .about .page-content {
        padding: 0
    }

    .about .page-content h2 {
        margin-top: 25px;
        margin-bottom: 10px;
        text-align: left;
        padding-left: 15px
    }

    .about .page-content p {
        padding: 0 15px
    }
}

@media only screen and (max-width : 767px) {
    .about {
        padding-top: 55px 0px 55px 0px
    }
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .about .page-content p {
        line-height: 24px
    }
}

.about {
    padding: 80px 0 50px 0
}

.about .page-content .img {
    width: 100%
}

.about .page-content .img img {
    width: 100%
}

.about .page-content h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: bold;
    font-size: 25px;
    color: #343434 !important
}

.about .page-content p {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: #5a5a5a !important
}

@media only screen and (max-width : 991px) {
    .about .page-content {
        padding: 0
    }

    .about .page-content img {
        height: 200px;
        margin-bottom: 20px;
        object-fit: cover
    }
}

@media only screen and (max-width : 767px) {
    .about .page-content {
        padding: 0
    }

    .about .page-content h2 {
        margin-top: 25px;
        margin-bottom: 10px;
        text-align: left;
        padding-left: 15px
    }

    .about .page-content p {
        padding: 0 15px
    }
}

@media only screen and (max-width : 767px) {
    .about {
        padding-top: 55px 0px 55px 0px
    }
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .about .page-content p {
        line-height: 24px
    }
}

.about {
    padding: 80px 0 50px 0
}

.about .page-content .img {
    width: 100%
}

.about .page-content .img img {
    width: 100%
}

.about .page-content h2 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: bold;
    font-size: 25px;
    color: #343434 !important
}

.about .page-content p {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: #5a5a5a !important
}

@media only screen and (max-width : 991px) {
    .about .page-content {
        padding: 0
    }

    .about .page-content img {
        height: 200px;
        margin-bottom: 20px;
        object-fit: cover
    }
}

@media only screen and (max-width : 767px) {
    .about .page-content {
        padding: 0
    }

    .about .page-content h2 {
        margin-top: 25px;
        margin-bottom: 10px;
        text-align: left;
        padding-left: 15px
    }

    .about .page-content p {
        padding: 0 15px
    }
}

.about .about-special-type-3 .tabs-nav {
    display: none;
    width: 100%;
    justify-content: center
}

.about .about-special-type-3 .tabs-nav .nav-item {
    width: 49%
}

.about .about-special-type-3 .tabs-nav .nav-item a {
    border: 2px solid var(--color-theme-andprekast-4-hex);
    color: var(--color-theme-andprekast-4-hex);
    background: rgba(255, 255, 255, 0);
    font-size: 16px;
    font-weight: 600;
    text-align: center
}

.about .about-special-type-3 .tabs-nav .nav-item a.active {
    background: var(--color-theme-andprekast-4-hex);
    color: #fff
}

.about .about-special-type-3 .tabs-nav .nav-item+.nav-item {
    margin-left: 2%
}

@media only screen and (max-width : 991px) {
    .about .about-special-type-3 .tabs-nav {
        display: inline-flex
    }
}

.about .about-special-type-3 .tab-content {
    padding: 15px;
    margin-top: 25px;
    border: 2px solid var(--color-theme-andprekast-4-hex)
}

.about .about-special-type-3 .tab-content .tab-pane p {
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: #5a5a5a
}

.about .about-special-type-3 .about-special-content {
    padding: 3.75rem 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center
}

.about .about-special-type-3 .about-special-content>* {
    position: relative
}

.about .about-special-type-3 .about-special-content h3 {
    flex: 0 0 auto;
    display: flex;
    align-items: center
}

.about .about-special-type-3 .about-special-content h3 sup {
    font-size: 200%;
    display: inline-block;
    top: 0
}

.about .about-special-type-3 .about-special-content p {
    flex: 1 1 0
}

.about .about-special-type-3 .about-special-content-top {
    position: relative;
    color: #343434
}

.about .about-special-type-3 .about-special-content-top:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: 0;
    bottom: 0;
    background: rgba(222, 222, 236, .2392156863)
}

.about .about-special-type-3 .about-special-content-top h3 {
    font-family: "Montserrat", sans-serif !important;
    color: #343434
}

.about .about-special-type-3 .about-special-content-top p {
    font-family: "Montserrat", sans-serif !important;
    padding-left: 1.5rem;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px
}

.about .about-special-type-3 .about-special-content-bottom {
    flex-direction: row-reverse
}

.about .about-special-type-3 .about-special-content-bottom h3 {
    color: #343434
}

.about .about-special-type-3 .about-special-content-bottom p {
    padding-right: 1.5rem;
    text-align: right;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    color: #5a5a5a
}

.about .about-special-type-3 .about-special-content-bottom p strong {
    color: #343434
}

@media only screen and (max-width : 991px) {
    .about .about-special-type-3 .about-special-content {
        display: none
    }
}

@media only screen and (max-width : 767px) {
    .about .about-special-type-3 .about-special-content h3 {
        flex: 0 0 100%;
        margin-bottom: 1.5rem
    }

    .about .about-special-type-3 .about-special-content-top p {
        padding-right: 1.5rem
    }

    .about .about-special-type-3 .about-special-content-bottom p {
        padding-left: 1.5rem;
        text-align: left
    }
}

@media only screen and (max-width : 991px) {
    .about .about-special-type-3 {
        padding: 30px 25px !important
    }

    .about .about-special-type-3 .tab-content .tab-pane p {
        line-height: 24px
    }
}

@media only screen and (max-width : 767px) {
    .about {
        padding-top: 55px 0px 55px 0px
    }
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .about .page-content p {
        line-height: 24px
    }
}

.album-type-1 {
    background: #f6f6f6
}

.album-type-1>.container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.album-type-1 .album-title {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    display: flex;
    align-items: center
}

.album-type-1 .swiper-container {
    flex: 0 0 66.666%;
    max-width: 66.666%
}

.album-type-1 .swiper-container .swiper-slide {
    height: 220px
}

.album-type-1 .swiper-button-next,
.album-type-1 .swiper-button-prev {
    border: 1px solid #07101b;
    width: 34px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(-32px / 2)
}

.album-type-1 .swiper-button-prev {
    left: initial;
    right: 10px;
    margin-top: calc((32px / 2) - 1px)
}

.album-type-2 {
    background: #f9f9f9
}

.album-type-2>.container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.album-type-2 .album-title {
    flex: 0 0 22%;
    max-width: 22%;
    display: flex;
    align-items: center
}

.album-type-2 .swiper-container {
    flex: 0 0 78%;
    max-width: 78%
}

.album-type-2 .swiper-container .swiper-slide {
    height: 250px
}

.album-type-2 .swiper-button-next,
.album-type-2 .swiper-button-prev {
    border: 1px solid rgba(0, 0, 0, 0);
    width: 34px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    top: calc(100% - 32px - 26px)
}

.album-type-2 .swiper-button-prev {
    left: initial;
    right: calc(10px + 34px)
}

.album-type-2 .swiper-pagination {
    font-size: 1.25rem;
    left: calc(100% - (34px * 2) - 20px - 28px - 10px);
    width: auto;
    line-height: 32px;
    height: 32px;
    bottom: 26px
}

.album-type-3 {
    background: #f4f4f4
}

.album-type-3>.container {
    position: relative;
    padding: 0 4.5rem
}

.album-type-3 .album-title {
    text-align: center
}

.album-type-3 .swiper-container .swiper-slide {
    height: 220px
}

.album-type-3 .swiper-button-next,
.album-type-3 .swiper-button-prev {
    top: calc(50% + 28px);
    margin-top: calc(-32px / 2);
    width: 34px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center
}

.album-type-3 .swiper-button-next svg,
.album-type-3 .swiper-button-prev svg {
    width: 1.75rem;
    height: 1.75rem
}

.announcements-type1 ul.announcements-list li {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.announcements-type1 ul.announcements-list li .date {
    flex: 0 0 100px;
    padding-right: 1rem
}

.announcements-type1 ul.announcements-list li .date span,
.announcements-type1 ul.announcements-list li .date time {
    display: block;
    color: #000;
    opacity: .5;
    font-size: 2rem;
    text-align: right;
    transition: .4s
}

.announcements-type1 ul.announcements-list li .item-content {
    flex: 0 0 calc(100% - 100px);
    padding: 1rem 0 1rem 1rem;
    border-left: 1px solid #ececec;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.announcements-type1 ul.announcements-list li .item-content>* {
    flex: 0 0 100%
}

.announcements-type1 ul.announcements-list li .item-content:before,
.announcements-type1 ul.announcements-list li .item-content:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    height: 1px;
    width: 5vw;
    min-width: 5rem;
    background: #ececec
}

.announcements-type1 ul.announcements-list li .item-content:before {
    top: 0
}

.announcements-type1 ul.announcements-list li .item-content:after {
    bottom: 0
}

.announcements-type1 ul.announcements-list li .item-content h3 {
    font-size: 1.25rem
}

.announcements-type1 ul.announcements-list li .item-content .card-body {
    padding: 0 0 1rem 0
}

.announcements-type1 ul.announcements-list li .item-content p {
    font-size: 1rem
}

.announcements-type1 ul.announcements-list li .item-content p button {
    border: none;
    background: none;
    outline: none !important;
    outline-color: rgba(0, 0, 0, 0) !important
}

.announcements-type1 ul.announcements-list li .item-content p button svg {
    margin-left: 1rem;
    transition: .4s
}

.announcements-type1 ul.announcements-list li .item-content p button svg path {
    color: #ec2127
}

.announcements-type1 ul.announcements-list li .item-content p button:hover svg {
    transform: rotate(-90deg)
}

.announcements-type1 ul.announcements-list li .item-content p button.collapsed svg {
    transform: rotate(0deg)
}

.announcements-type1 ul.announcements-list li .item-content p button.collapsed:hover svg {
    transform: rotate(90deg)
}

.announcements-type1 ul.announcements-list li .item-content p:nth-last-child(1) {
    margin-bottom: 0
}

.announcements-type1 ul.announcements-list li:hover .date span,
.announcements-type1 ul.announcements-list li:hover .date time {
    opacity: 1
}

.announcements-type2 ul.announcements-list li {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.announcements-type2 ul.announcements-list li .date {
    background: #f1f1f1;
    border-radius: 1.5rem;
    flex: 0 0 20rem;
    height: 15rem;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.announcements-type2 ul.announcements-list li .date span,
.announcements-type2 ul.announcements-list li .date time {
    display: block;
    flex: 0 0 100%;
    text-align: center
}

.announcements-type2 ul.announcements-list li .date .date-day {
    font-size: 6.25rem;
    font-weight: bold;
    margin-bottom: -5rem
}

.announcements-type2 ul.announcements-list li .date .date-month {
    font-size: 2rem;
    margin-top: -2rem
}

.announcements-type2 ul.announcements-list li .item-content {
    padding-left: 2rem;
    flex: 0 0 calc(100% - 20rem);
    max-width: calc(100% - 20rem)
}

.announcements-type2 ul.announcements-list li .item-content h3 {
    font-size: 1.25rem
}

.announcements-type2 ul.announcements-list li .item-content p {
    font-size: 1rem
}

.announcements-type2 ul.announcements-list li .item-content p button {
    border: none;
    background: none;
    outline: none !important;
    outline-color: rgba(0, 0, 0, 0) !important
}

.announcements-type2 ul.announcements-list li .item-content p button svg {
    margin-left: 1rem;
    transition: .4s
}

.announcements-type2 ul.announcements-list li .item-content p button svg path {
    color: #ec2127
}

.announcements-type2 ul.announcements-list li .item-content p button:hover svg {
    transform: rotate(-90deg)
}

.announcements-type2 ul.announcements-list li .item-content p button.collapsed svg {
    transform: rotate(0deg)
}

.announcements-type2 ul.announcements-list li .item-content p button.collapsed:hover svg {
    transform: rotate(90deg)
}

.announcements-type2 ul.announcements-list li .item-content p:nth-last-child(1) {
    margin-bottom: 0
}

.announcements-type2 ul.announcements-list li .item-content .card-body {
    padding: 0 0 1rem 0
}

.page.our-team .team-list-type1 li:nth-child(1) {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center
}

.page.our-team .team-list-type2 li:nth-child(1),
.page.our-team .team-list-type2 li:nth-child(2) {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center
}

.page.our-team .team-list-type3 li:nth-child(1),
.page.our-team .team-list-type3 li:nth-child(2),
.page.our-team .team-list-type3 li:nth-child(3) {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    display: flex;
    justify-content: center
}

.page.history-type1 .history-list {
    position: relative;
    padding: 5rem 0
}

.page.history-type1 .history-list .time-line {
    background: #e2e6ee;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px
}

.page.history-type1 .history-list .time-line:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1.25rem;
    height: 1.25rem;
    background: #e2e6ee
}

.page.history-type1 .history-list .time-line:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1.25rem;
    height: 1.25rem;
    background: #e2e6ee
}

.page.history-type1 .history-list ul li {
    position: relative;
    display: flex;
    flex-wrap: wrap
}

.page.history-type1 .history-list ul li .text {
    padding: 3rem 4rem;
    border: 2px dashed #d6dbe5;
    position: relative;
    flex: 0 0 calc(50% - 7rem);
    box-shadow: 0 8px 15px rgba(228, 231, 237, .29)
}

.page.history-type1 .history-list ul li .text .arrow {
    width: 1rem;
    height: 1.375rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    background: #fff
}

.page.history-type1 .history-list ul li .text .arrow span {
    display: block;
    position: absolute;
    top: 1px;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px dashed #d6dbe5;
    transform: rotate(45deg) skew(-10deg, -10deg)
}

.page.history-type1 .history-list ul li .text p {
    color: #000;
    margin-bottom: 0
}

.page.history-type1 .history-list ul li .text:hover~.time .box {
    background: #c40d3c
}

.page.history-type1 .history-list ul li .time {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s
}

.page.history-type1 .history-list ul li .time .box {
    border: 4px solid #c40d3c;
    width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    transition: .9s
}

.page.history-type1 .history-list ul li .time .date {
    font-size: 1.5rem;
    color: #c40d3c;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%)
}

.page.history-type1 .history-list ul li:nth-child(odd) {
    justify-content: flex-end
}

.page.history-type1 .history-list ul li:nth-child(odd) .text .arrow {
    left: -8px
}

.page.history-type1 .history-list ul li:nth-child(odd) .text .arrow span {
    left: 6px
}

.page.history-type1 .history-list ul li:nth-child(odd) .time .date {
    left: calc(100% + .875rem)
}

.page.history-type1 .history-list ul li:nth-child(even) {
    justify-content: flex-start
}

.page.history-type1 .history-list ul li:nth-child(even) .text .arrow {
    left: calc(100% + 8px)
}

.page.history-type1 .history-list ul li:nth-child(even) .text .arrow span {
    right: 6px
}

.page.history-type1 .history-list ul li:nth-child(even) .time .date {
    right: calc(100% + .875rem)
}

.page.history-type2 .history-list .swiper-history-time-line span.line {
    background: #c40d3c;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%)
}

.page.history-type2 .history-list .swiper-history-time-line:before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background: #c40d3c;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    border-radius: 2rem;
    z-index: 44
}

.page.history-type2 .history-list .swiper-history-time-line:after {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background: #c40d3c;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    border-radius: 2rem;
    z-index: 44
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide {
    position: relative;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 3rem 0
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide .dot {
    transition: .4s;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 2rem;
    background: #f67495;
    position: relative;
    transform: rotate(-45deg)
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide .dot:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: .5rem;
    height: .5rem;
    border-radius: 1rem;
    background: #c40d3c
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide .date {
    transition: .4s;
    color: #231f20;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    top: .5rem;
    transform: translate(-50%, 0);
    z-index: 53
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide:before {
    content: "";
    background: #f67495;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%)
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide:after {
    content: "";
    background: #c40d3c;
    height: 3px;
    position: absolute;
    top: 50%;
    width: 0;
    right: 0;
    transform: translate(0, -50%)
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide.swiper-slide-thumb-active .dot {
    background: #f67495;
    border-bottom-left-radius: 4px;
    transform: rotate(-45deg)
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide.swiper-slide-thumb-active .dot:after {
    background: #f67495 !important
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide.swiper-slide-thumb-active .date {
    color: #c40d3c
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide.swiper-slide-thumb-active~.swiper-slide .dot {
    background: #c40d3c
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide.swiper-slide-thumb-active~.swiper-slide:after {
    width: 100%
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide:nth-child(1) span {
    display: block;
    width: 11px;
    height: 11px;
    background: #f67495;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    border-radius: 2rem
}

.page.history-type2 .history-list .swiper-history-time-line .swiper-slide:nth-last-child(1) span {
    display: block;
    width: 11px;
    height: 11px;
    background: #c40d3c;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    border-radius: 2rem
}

.page.history-type2 .history-list .swiper-history-text .swiper-slide h2 {
    color: #231f20;
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.page.history-type2 .history-list .swiper-history-text .swiper-slide p {
    color: #231f20;
    font-size: 1rem;
    margin-bottom: 0
}

.page.history-type2 .history-list .swiper-history-text .swiper-slide p+p {
    margin-top: 1rem
}

.page.history-type3 .history-list {
    border-bottom: 1px dashed #1ea5dd
}

.page.history-type3 .history-list ul {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    border-left: 1px dashed #1ea5dd;
    padding-bottom: .1rem
}

.page.history-type3 .history-list ul li {
    margin-bottom: 5rem;
    position: relative
}

.page.history-type3 .history-list ul li .text {
    border: 1px solid #a0c9da;
    border-radius: 2rem;
    padding: 1rem;
    margin-left: 160px;
    position: relative;
    z-index: 10;
    background: #fff
}

.page.history-type3 .history-list ul li .text p {
    font-size: .875rem;
    color: #000;
    margin-bottom: 0
}

.page.history-type3 .history-list ul li .text p span {
    display: inline-block;
    padding: 0 .5rem
}

.page.history-type3 .history-list ul li .line {
    height: 1px;
    width: 100%;
    background: #a0c9da;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 5
}

.page.history-type3 .history-list ul li .line:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translate(0, -50%);
    background: #a0c9da;
    border-radius: 1rem
}

.page.history-type3 .history-list ul li .circle {
    padding: 7px;
    border: 1px solid #a0c9da;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 10rem;
    z-index: 7;
    background: #fff
}

.page.history-type3 .history-list ul li .circle:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    border-radius: 1rem;
    background: #a0c9da
}

.page.history-type3 .history-list ul li .circle:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: -2px;
    left: -1px;
    right: -1px;
    background: #fff;
    z-index: -1
}

.page.history-type3 .history-list ul li .circle .date {
    height: 71px;
    width: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eef7fa;
    border: 1px solid #1ea5dd;
    border-radius: 10rem;
    color: #1ea5dd
}

.page.history-type3 .history-list ul li:nth-child(1):before {
    content: "";
    position: absolute;
    width: 2px;
    background: #fff;
    height: 50%;
    top: 0;
    left: -1px
}

.page.history-type3 .history-list-centered {
    display: flex;
    justify-content: center;
    position: relative
}

.page.history-type3 .history-list-centered .text {
    margin-left: 15px;
    margin-top: 190px;
    width: 320px;
    max-width: 100%;
    border: 1px solid #a0c9da;
    border-radius: 2rem;
    padding: 1rem;
    position: relative;
    z-index: 10;
    background: #fff
}

.page.history-type3 .history-list-centered .text p {
    font-size: .875rem;
    color: #000
}

.page.history-type3 .history-list-centered .text p span {
    display: inline-block;
    padding: 0 3rem
}

.page.history-type3 .history-list-centered .line {
    margin-left: 15px;
    width: 1px;
    height: 80%;
    background: #a0c9da;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    z-index: 5
}

.page.history-type3 .history-list-centered .line:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translate(-50%, 0);
    background: #2a435b;
    border-radius: 1rem
}

.page.history-type3 .history-list-centered .circle {
    margin-left: 15px;
    padding: 7px;
    border: 1px solid #a0c9da;
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translate(-50%, 0);
    border-radius: 10rem;
    z-index: 7;
    background: #fff
}

.page.history-type3 .history-list-centered .circle:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translate(-50%, 50%);
    border-radius: 1rem;
    background: #a0c9da
}

.page.history-type3 .history-list-centered .circle:after {
    content: "";
    position: absolute;
    width: 44px;
    bottom: -1px;
    left: -2px;
    top: -1px;
    background: #fff;
    z-index: -1
}

.page.history-type3 .history-list-centered .circle .in-circle {
    font-size: 2.5rem;
    letter-spacing: -5px;
    padding-bottom: .5rem;
    padding-right: .2rem;
    font-weight: bold;
    height: 71px;
    width: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2a435b;
    border: 1px solid #1ea5dd;
    border-radius: 10rem;
    color: #fff
}

.page.history-type4 {
    position: relative
}

.page.history-type4:before {
    content: "";
    position: absolute;
    bottom: 105px;
    left: 0;
    width: 100%;
    background: #ddd;
    height: 6px
}

.page.history-type4 .history-list {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden
}

.page.history-type4 .history-list::-webkit-scrollbar {
    width: 0;
    height: 0
}

.page.history-type4 .history-list::-webkit-scrollbar-track {
    background: #ececec
}

.page.history-type4 .history-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .1)
}

.page.history-type4 .history-list .timeline-wrapper {
    display: flex;
    width: 1500px;
    padding: 2rem 0 6.5rem
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item {
    flex: 0 0 100px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: .9s
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item .explanation {
    text-align: center;
    opacity: 0;
    transform: scale(0.2);
    pointer-events: none;
    transition: .9s;
    min-height: 120px
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item .explanation p {
    font-size: 1rem;
    color: #000
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item .explanation h2 {
    font-size: 1.25rem;
    color: #000
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item .dot {
    cursor: pointer;
    width: 1.875rem;
    height: 1.875rem;
    margin-top: -33px;
    background: #fff;
    transition: .9s;
    border: 4px solid #ec2127;
    border-radius: 50%;
    position: absolute;
    top: 100%;
    transform: translate(0%, -100%)
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item .dot .date {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    transition: .4s
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active {
    flex: 0 0 500px
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active .explanation {
    opacity: 1;
    transform: scale(1)
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active .dot {
    border-color: #ec2127;
    width: 6rem;
    height: 6rem;
    margin-top: 0
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active .dot .date {
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 1
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active~.timeline-item {
    flex: 0 0 200px
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active~.timeline-item .dot {
    border-color: #a2a2a2
}

.page.history-type4 .history-list .timeline-wrapper .timeline-item.active~.timeline-item .dot .date {
    opacity: 1
}

.page.history-type4 .history-list .timeline-wrapper .split-line {
    display: block;
    position: absolute;
    left: 0;
    height: 6px;
    width: 1000vw;
    bottom: 45px
}

.page.history-type4 .history-list .timeline-wrapper .split-line span {
    width: 248px;
    background: #ec2127;
    height: 6px;
    position: absolute;
    left: 0;
    transition: .9s
}

.contact.contact1 .contact-bottom h2 {
    margin-top: 10px
}

@media only screen and (max-width : 767px) {
    .contact.contact1 .contact-bottom h2 {
        margin-top: 45px
    }
}

.contact.contact1 .form-row.contact-submit-row {
    justify-content: flex-end
}

.contact.contact1 .contact-form-information {
    font-size: 13px;
    padding: 15px 0px;
    text-align: center;
    color: var(--color-theme-andprekast-4-hex)
}

.contact.contact1 .contact-form-information p a {
    color: var(--color-theme-andprekast-4-hex);
    font-weight: 600
}

.contact.contact1 h2 {
    font-weight: bold;
    font-size: 25px;
    color: var(--color-theme-andprekast-4-hex);
    margin-top: 0px
}

@media only screen and (max-width : 991px) {
    .contact.contact1 h2 {
        font-size: 23px
    }
}

@media only screen and (max-width : 767px) {
    .contact.contact1 h2 {
        font-size: 18px
    }
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .contact.contact1 .col-12+.col-12 h2 {
        margin-top: 20px
    }
}

.contact.contact1 .address-information {
    margin-top: 35px
}

@media only screen and (max-width : 991px) {
    .contact.contact1 .address-information {
        margin-top: 25px
    }
}

.contact.contact1 .address-information ul li {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 15px
}

@media only screen and (max-width : 991px) {
    .contact.contact1 .address-information ul li {
        font-size: 14px
    }
}

@media only screen and (max-width : 767px) {
    .contact.contact1 .address-information ul li {
        font-size: 12px
    }
}

.contact.contact1 .address-information ul li .icon {
    flex: 0 0 32px;
    border: 1px solid var(--color-theme-andprekast-4-hex);
    border-radius: 0
}

.contact.contact1 .address-information ul li .icon svg {
    fill: var(--color-theme-andprekast-4-hex)
}

.contact.contact1 .address-information ul li .text {
    flex: 0 0 calc(100% - 32px);
    padding-left: 1rem
}

.contact.contact1 .address-information ul li .text p {
    color: #343434;
    margin-bottom: 0;
    font-weight: 500
}

.contact.contact1 .address-information ul li .text p .address-provincial-districts {
    display: block
}

.contact.contact1 .address-information ul li .text p strong {
    font-size: 1.25rem;
    color: var(--color-theme-andprekast-4-hex);
    font-weight: 600
}

.contact.contact1 .address-information ul li .text a {
    display: block;
    color: #343434;
    font-weight: 500
}

.contact.contact1 .address-information ul li .text a:hover {
    text-decoration: none;
    color: var(--color-theme-andprekast-4-hex);
    opacity: .7
}

.contact.contact1 .address-information>a {
    font-weight: bold;
    font-size: 15px;
    color: var(--color-theme-andprekast-4-hex);
    padding: 10px 15px;
    border: 2px solid var(--color-theme-andprekast-4-hex);
    position: relative;
    background: #fff;
    border-radius: 0
}

.contact.contact1 .address-information>a:hover {
    color: #fff;
    background: var(--color-theme-andprekast-4-hex)
}

.contact.contact1 .address-information>a:focus {
    box-shadow: none !important;
    border: 2px solid var(--color-theme-andprekast-4-hex)
}

.contact.contact1 .address-information>a:active {
    color: #fff;
    background: rgba(255, 255, 255, 0);
    border: 2px solid var(--color-theme-andprekast-4-hex)
}

.contact.contact1 form {
    margin-top: 35px
}

.contact.contact1 form .form-group .contact-form-left-item {
    flex: 0 0 15%
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    .contact.contact1 form .form-group .contact-form-left-item {
        flex: 0 0 18%
    }
}

@media only screen and (max-width : 991px) {
    .contact.contact1 form .form-group .contact-form-left-item {
        flex: 0 0 10%
    }
}

@media only screen and (max-width : 767px) {
    .contact.contact1 form .form-group .contact-form-left-item {
        flex: 0 0 13%
    }
}

.contact.contact1 form .form-group label {
    font-size: 14px;
    letter-spacing: .5px;
    color: #343434;
    text-align: right
}

@media only screen and (max-width : 576px) {
    .contact.contact1 form .form-group label {
        display: none
    }
}

.contact.contact1 form .form-group label span {
    color: var(--color-theme-andprekast-4-hex)
}

@media only screen and (max-width : 991px) {
    .contact.contact1 form .form-group label {
        font-size: 12px;
        letter-spacing: initial
    }
}

.contact.contact1 form .form-group input {
    height: 40px;
    border-radius: 0
}

@media only screen and (max-width : 991px) {
    .contact.contact1 form .form-group input {
        height: 35px
    }
}

.contact.contact1 form .form-group input:focus {
    box-shadow: none;
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.contact.contact1 form .form-group input.border {
    border: 1px solid var(--color-theme-andprekast-4-hex) !important
}

.contact.contact1 form .form-group input:not([name=ct_captcha])::placeholder {
    opacity: 0
}

@media only screen and (max-width : 576px) {
    .contact.contact1 form .form-group input:not([name=ct_captcha])::placeholder {
        opacity: 1
    }
}

.contact.contact1 form .form-group textarea {
    border: 1px solid #ced4da;
    resize: none;
    border-radius: 0
}

.contact.contact1 form .form-group textarea:focus {
    box-shadow: none;
    border: 1px solid var(--color-theme-andprekast-4-hex)
}

.contact.contact1 form .form-group textarea.border {
    border: 1px solid var(--color-theme-andprekast-4-hex) !important
}

.contact.contact1 form .form-group textarea::placeholder {
    opacity: 0
}

@media only screen and (max-width : 576px) {
    .contact.contact1 form .form-group textarea::placeholder {
        opacity: 1
    }
}

.contact.contact1 form .form-group .input-group {
    position: relative
}

.contact.contact1 form .form-group .input-group .input-group-text {
    margin-bottom: 1rem
}

.contact.contact1 form .form-group .input-group small {
    position: absolute;
    right: 0;
    top: 100%
}

.contact.contact1 form .form-group .input-group .input-group-prepend {
    margin-bottom: 1rem
}

.contact.contact1 form .form-group .input-group .input-group-prepend span {
    margin-bottom: -1rem;
    color: #343434;
    background: #fff;
    transition: .4s;
    padding: 7px 12px 7px 12px;
    border-radius: 0
}

.contact.contact1 form .form-group .input-group .input-group-prepend span svg {
    transform: translateX(-5px);
    opacity: 0;
    transition: .4s;
    fill: var(--color-theme-andprekast-4-hex)
}

.contact.contact1 form .form-group .input-group .custom-file {
    height: 45px;
    border-radius: 0
}

.contact.contact1 form .form-group .input-group .custom-file label {
    box-shadow: none;
    border: 1px solid #ced4da;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 .75rem
}

.contact.contact1 form .form-group .input-group:hover .input-group-prepend span {
    padding: 7px 15px 7px 9px
}

.contact.contact1 form .form-group .input-group:hover .input-group-prepend span svg {
    transform: translateX(5px);
    opacity: 1
}

.contact.contact1 form .form-group .captcha img {
    max-height: initial;
    height: 40px;
}

@media only screen and (max-width : 991px) {
    .contact.contact1 form .form-group .captcha img {
        height: 35px
    }
}

.contact.contact1 form .form-group .captcha a {
    background: var(--color-theme-andprekast-4-hex)
}

.contact.contact1 form .form-group .captcha a:hover {
    color: var(--color-theme-andprekast-1-hex)
}

.contact.contact1 form .form-group .submit {
    margin-top: 15px
}

@media only screen and (max-width : 991px) {
    .contact.contact1 form .form-group .submit {
        margin-top: 0
    }
}

@media only screen and (max-width : 576px) {
    .contact.contact1 form .form-group .submit {
        margin-top: 15px
    }
}

.contact.contact1 form .form-group .submit input {
    font-weight: bold;
    font-size: 15px;
    color: var(--color-theme-andprekast-4-hex);
    padding: 6px 15px;
    border: 1px solid var(--color-theme-andprekast-4-hex);
    position: relative;
    background: rgba(255, 255, 255, 0);
    box-shadow: none !important;
    background: #fff;
    width: 100%
}

.contact.contact1 form .form-group .submit input:hover {
    color: #fff;
    background: var(--color-theme-andprekast-4-hex)
}

@media only screen and (max-width : 767px) {
    .contact.contact1 form {
        margin-top: 15px
    }

    .contact.contact1 .address-information {
        margin-top: 20px
    }
}

.contact.contact2 .address-information {
    margin-bottom: 1rem
}

.contact.contact2 .address-information .lead {
    color: #07101b;
    margin-bottom: 2rem;
    text-align: center
}

.contact.contact2 .address-information .item {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.contact.contact2 .address-information .item .icon {
    flex: 0 0 32px;
    max-width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #07101b;
    border-radius: .25rem;
    margin-bottom: 1rem
}

.contact.contact2 .address-information .item .icon i {
    color: #fff
}

.contact.contact2 .address-information .item .text {
    flex: 0 0 calc(100% - 32px);
    padding-left: .5rem;
    margin-bottom: 1rem
}

.contact.contact2 .address-information .item .text p {
    color: #07101b;
    margin-bottom: 0
}

.contact.contact2 .address-information .item .text p .address-provincial-districts {
    display: block
}

.contact.contact2 .address-information .item .text p strong {
    font-size: 1.25rem
}

.contact.contact2 .address-information .item .text a {
    display: block;
    color: #07101b
}

.contact.contact2 .address-information .item .text a:hover {
    text-decoration: none
}

.contact.contact2 .address-information.dark-mode .item .icon {
    background: rgba(0, 0, 0, 0)
}

.contact.contact2 .address-information.dark-mode .item .icon i {
    color: #07101b
}

.contact.contact2 .address-information.dark-mode .item .text h5 {
    color: #ececec
}

.contact.contact2 .address-information.dark-mode .item .text p {
    color: #ececec
}

.contact.contact2 .address-information.dark-mode .item .text a {
    color: #ececec
}

.contact.contact3 .address-information p {
    color: #07101b
}

.contact.contact3 .address-information p .address-provincial-districts {
    display: block
}

.contact.contact3 .address-information p strong {
    font-size: 1.25rem
}

.contact.contact3 .address-information a {
    color: #07101b
}

.contact.contact3 .address-information a:hover {
    text-decoration: none
}

.contact.contact4 .contact-information {
    margin-bottom: 40px
}

.contact.contact4 .contact-information ul li+li {
    margin-top: 30px
}

.contact.contact4 .contact-information .address-information li {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.contact.contact4 .contact-information .address-information li .icon {
    flex: 0 0 48px;
    max-width: 48px;
    height: 48px;
    display: flex;
    background: #07101b;
    border-radius: .5rem;
    align-items: center;
    justify-content: center
}

.contact.contact4 .contact-information .address-information li .icon i {
    color: #fff
}

.contact.contact4 .contact-information .address-information li .text {
    flex: 0 0 calc(100% - 48px);
    max-width: calc(100% - 48px);
    padding: 0 1rem
}

.contact.contact4 .contact-information .address-information li .text h6 {
    color: #07101b
}

.contact.contact4 .contact-information .address-information li .text p {
    color: #07101b;
    margin-bottom: 0
}

.contact.contact4 .contact-information .address-information li .text a {
    color: #07101b
}

.contact.contact4 .form-group .input-group .input-group-prepend {
    flex: 0 0 calc(25% + 6px);
    max-width: calc(25% + 6px)
}

.contact.contact4 .form-group .input-group .input-group-prepend .input-group-text {
    flex: 0 0 100%
}

.contact.contact5 .contact-bottom {
    max-width: 800px;
    margin: -4.5rem auto 4.5rem;
    background: #fff;
    box-shadow: 0 13px 29px rgba(34, 82, 139, .05);
    padding: 4.5rem;
    position: relative
}

.contact.contact5 .contact-bottom form {
    padding: 2.25rem 2.25rem 0;
    box-shadow: 0 4px 16px rgba(0, 39, 255, .1)
}

.contact.contact5 .contact-bottom form .form-group {
    text-align: center
}

.contact.contact5 .contact-bottom form .form-group input.form-control {
    border: none;
    border-bottom: 1px solid #4a62ea;
    color: #4a62ea;
    border-radius: 0;
    padding-left: 0
}

.contact.contact5 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder {
    color: #4a62ea
}

.contact.contact5 .contact-bottom form .form-group input.form-control:-ms-input-placeholder {
    color: #4a62ea
}

.contact.contact5 .contact-bottom form .form-group input.form-control::placeholder {
    color: #4a62ea
}

.contact.contact5 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #4a62ea;
    color: #4a62ea;
    border-radius: 0;
    min-height: 6rem;
    padding-left: 0
}

.contact.contact5 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #4a62ea
}

.contact.contact5 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #4a62ea
}

.contact.contact5 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #4a62ea
}

.contact.contact5 .contact-bottom form .form-group button,
.contact.contact5 .contact-bottom form .form-group input[type=submit] {
    transform: translateY(50%);
    border-radius: 2rem;
    background: #4a62ea;
    color: #fff;
    text-align: center;
    padding: .5rem 2rem;
    margin: 0 auto;
    display: inline-block;
    border: none
}

.contact.contact5 .contact-bottom .contact-information {
    text-align: center
}

.contact.contact5 .contact-bottom .contact-information h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000
}

.contact.contact5 .contact-bottom .contact-information p {
    font-size: 14px;
    color: #bfbfbf
}

.contact.contact5 .contact-bottom .contact-information .address {
    margin-bottom: 2rem
}

.contact.contact5 .contact-bottom .contact-information .address .icon svg {
    display: inline-block;
    margin-bottom: 1rem
}

.contact.contact5 .contact-bottom .contact-information .address .icon svg path {
    color: #4a62ea
}

.contact.contact5 .contact-bottom .contact-information .address p {
    color: #6e6e6e;
    font-size: 14px;
    margin: 0
}

.contact.contact5 .contact-bottom .contact-information .info-box {
    float: left;
    width: 50%;
    box-sizing: border-box
}

.contact.contact5 .contact-bottom .contact-information .info-box .icon svg {
    display: inline-block;
    margin-bottom: 1rem;
    height: 20px
}

.contact.contact5 .contact-bottom .contact-information .info-box .icon svg path {
    color: #4a62ea
}

.contact.contact5 .contact-bottom .contact-information .info-box p {
    color: #6e6e6e;
    font-size: 14px;
    margin: 0
}

.contact.contact5 .contact-bottom .contact-information .info-box p a {
    color: #6e6e6e
}

.contact.contact5 .contact-bottom .contact-information .info-box+.info-box {
    border-left: 1px solid #f1f1f1
}

.contact.contact6 .contact-bottom {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 160px
}

.contact.contact6 .contact-bottom .contact-information h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative
}

.contact.contact6 .contact-bottom .contact-information h2:before {
    content: "";
    display: block;
    position: absolute;
    background: #8da7b1;
    width: 90px;
    height: 1px;
    left: -160px;
    top: 1rem
}

.contact.contact6 .contact-bottom .contact-information p {
    font-size: 17px;
    color: #a2a2a2;
    margin-bottom: 2rem
}

.contact.contact6 .contact-bottom .contact-list ul li {
    padding: 2rem 0
}

.contact.contact6 .contact-bottom .contact-list ul li p {
    display: flex;
    margin: 0;
    padding: 1rem 0
}

.contact.contact6 .contact-bottom .contact-list ul li p strong {
    font-size: 25px;
    min-width: 9rem;
    color: #000;
    line-height: 15px
}

.contact.contact6 .contact-bottom .contact-list ul li p span.mdi {
    min-width: 5rem;
    color: #172457
}

.contact.contact6 .contact-bottom .contact-list ul li p span.text {
    width: calc(100% - 14rem);
    font-size: 15px;
    color: #5c5a5a
}

.contact.contact6 .contact-bottom .contact-list ul li p a,
.contact.contact6 .contact-bottom .contact-list ul li p b {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    color: #5c5a5a;
    line-height: 18px
}

.contact.contact6 .contact-bottom .contact-list ul li+li {
    border-top: 1px solid #bebebe
}

.contact.contact6 .contact-bottom form .form-group {
    position: relative
}

.contact.contact6 .contact-bottom form .form-group .icon {
    position: absolute;
    left: 0;
    top: 5px
}

.contact.contact6 .contact-bottom form .form-group input.form-control,
.contact.contact6 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    border-radius: 0;
    padding-left: 2rem;
    padding-top: 18px;
    padding-bottom: 22px;
    margin-bottom: 2rem;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.contact.contact6 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder,
.contact.contact6 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact6 .contact-bottom form .form-group input.form-control:-ms-input-placeholder,
.contact.contact6 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact6 .contact-bottom form .form-group input.form-control::placeholder,
.contact.contact6 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact6 .contact-bottom form .form-group textarea.form-control {
    height: 10rem;
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    padding: 8px 1rem 0 2rem
}

.contact.contact6 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact6 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact6 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact6 .contact-bottom form .form-group button,
.contact.contact6 .contact-bottom form .form-group input[type=button],
.contact.contact6 .contact-bottom form .form-group input[type=submit] {
    border: none;
    border-bottom: 4px solid #e7f5f7;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0);
    color: #000;
    padding: .5rem 2rem;
    font-weight: bold;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.contact.contact6 .contact-bottom-border-radius form .form-group .icon {
    left: 1rem
}

.contact.contact6 .contact-bottom-border-radius form .form-group input.form-control,
.contact.contact6 .contact-bottom-border-radius form .form-group textarea.form-control {
    background: #fafafa;
    border-radius: 23px;
    border: 1px solid #dbdbdb;
    padding-left: 3rem
}

.contact.contact7 .contact-bottom .contact-information h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative
}

.contact.contact7 .contact-bottom .contact-information p {
    font-size: 17px;
    color: #a2a2a2;
    margin-bottom: 2rem
}

.contact.contact7 .contact-bottom .contact-list ul li {
    padding: 2rem 0
}

.contact.contact7 .contact-bottom .contact-list ul li p {
    display: flex;
    margin: 0;
    padding: 1rem 0
}

.contact.contact7 .contact-bottom .contact-list ul li p svg {
    min-width: 6rem;
    padding-right: 4rem
}

.contact.contact7 .contact-bottom .contact-list ul li p span.mdi {
    min-width: 5rem;
    color: #a9ba9c;
    font-size: 1.25rem
}

.contact.contact7 .contact-bottom .contact-list ul li p span.text {
    width: calc(100% - 14rem);
    font-size: 15px;
    color: #5c5a5a
}

.contact.contact7 .contact-bottom .contact-list ul li p a,
.contact.contact7 .contact-bottom .contact-list ul li p b {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    color: #5c5a5a;
    line-height: 18px
}

.contact.contact7 .contact-bottom .contact-list ul li:nth-child(1) {
    padding-top: 0
}

.contact.contact7 .contact-bottom .contact-list ul li:nth-child(1) p {
    padding-top: 0
}

.contact.contact7 .contact-bottom .contact-list ul li+li {
    border-top: 1px solid #ecf5ec
}

.contact.contact7 .contact-bottom form .form-group {
    position: relative
}

.contact.contact7 .contact-bottom form .form-group .icon {
    position: absolute;
    left: 0;
    top: 5px
}

.contact.contact7 .contact-bottom form .form-group input.form-control,
.contact.contact7 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    border-radius: 0;
    padding-left: 2rem;
    padding-top: 18px;
    padding-bottom: 22px;
    margin-bottom: 2rem;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.contact.contact7 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder,
.contact.contact7 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact7 .contact-bottom form .form-group input.form-control:-ms-input-placeholder,
.contact.contact7 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact7 .contact-bottom form .form-group input.form-control::placeholder,
.contact.contact7 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact7 .contact-bottom form .form-group textarea.form-control {
    height: 10rem;
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    padding: 8px 1rem 0 2rem
}

.contact.contact7 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact7 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact7 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact7 .contact-bottom form .form-group button,
.contact.contact7 .contact-bottom form .form-group input[type=button],
.contact.contact7 .contact-bottom form .form-group input[type=submit] {
    border: none;
    border-bottom: 4px solid #e7f5f7;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0);
    color: #000;
    padding: .5rem 2rem;
    font-weight: bold;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.contact.contact7 .contact-bottom-border-radius form .form-group .icon {
    left: 1rem
}

.contact.contact7 .contact-bottom-border-radius form .form-group input.form-control,
.contact.contact7 .contact-bottom-border-radius form .form-group textarea.form-control {
    background: #fafafa;
    border-radius: 23px;
    border: 1px solid #dbdbdb;
    padding-left: 3rem
}

.contact.contact8 .contact-bottom {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 160px
}

.contact.contact8 .contact-bottom .contact-information h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative
}

.contact.contact8 .contact-bottom .contact-information h2:before {
    content: "";
    display: block;
    position: absolute;
    background: #8da7b1;
    width: 90px;
    height: 1px;
    left: -160px;
    top: 1rem
}

.contact.contact8 .contact-bottom .contact-information p {
    font-size: 17px;
    color: #a2a2a2;
    margin-bottom: 2rem
}

.contact.contact8 .contact-bottom .contact-list ul li {
    padding: 2rem 0
}

.contact.contact8 .contact-bottom .contact-list ul li p {
    display: flex;
    margin: 0;
    padding: 1rem 0
}

.contact.contact8 .contact-bottom .contact-list ul li p strong {
    font-size: 25px;
    min-width: 9rem;
    color: #000;
    line-height: 15px
}

.contact.contact8 .contact-bottom .contact-list ul li p span.mdi {
    min-width: 5rem;
    color: #172457
}

.contact.contact8 .contact-bottom .contact-list ul li p span.text {
    width: calc(100% - 14rem);
    font-size: 15px;
    color: #5c5a5a
}

.contact.contact8 .contact-bottom .contact-list ul li p a,
.contact.contact8 .contact-bottom .contact-list ul li p b {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    color: #5c5a5a;
    line-height: 18px
}

.contact.contact8 .contact-bottom .contact-list ul li+li {
    border-top: 1px solid #bebebe
}

.contact.contact8 .contact-bottom form .form-group {
    position: relative
}

.contact.contact8 .contact-bottom form .form-group .icon {
    position: absolute;
    left: 0;
    top: 5px
}

.contact.contact8 .contact-bottom form .form-group input.form-control,
.contact.contact8 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    border-radius: 0;
    padding-left: 2rem;
    padding-top: 18px;
    padding-bottom: 22px;
    margin-bottom: 2rem;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.contact.contact8 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder,
.contact.contact8 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact8 .contact-bottom form .form-group input.form-control:-ms-input-placeholder,
.contact.contact8 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact8 .contact-bottom form .form-group input.form-control::placeholder,
.contact.contact8 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact8 .contact-bottom form .form-group textarea.form-control {
    height: 10rem;
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    padding: 8px 1rem 0 2rem
}

.contact.contact8 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact8 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact8 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact8 .contact-bottom form .form-group button,
.contact.contact8 .contact-bottom form .form-group input[type=button],
.contact.contact8 .contact-bottom form .form-group input[type=submit] {
    border: none;
    border-bottom: 4px solid #e7f5f7;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0);
    color: #000;
    padding: .5rem 2rem;
    font-weight: bold;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.contact.contact8 .contact-bottom-border-radius form .form-group .icon {
    left: 1rem
}

.contact.contact8 .contact-bottom-border-radius form .form-group input.form-control,
.contact.contact8 .contact-bottom-border-radius form .form-group textarea.form-control {
    background: #fafafa;
    border-radius: 23px;
    border: 1px solid #dbdbdb;
    padding-left: 3rem
}

.contact.contact9 .contact-bottom .contact-information h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative
}

.contact.contact9 .contact-bottom .contact-information p {
    font-size: 17px;
    color: #a2a2a2;
    margin-bottom: 2rem
}

.contact.contact9 .contact-bottom .contact-list ul li {
    padding: 2rem 0
}

.contact.contact9 .contact-bottom .contact-list ul li p {
    display: flex;
    margin: 0;
    padding: 1rem 0
}

.contact.contact9 .contact-bottom .contact-list ul li p svg {
    min-width: 6rem;
    padding-right: 4rem
}

.contact.contact9 .contact-bottom .contact-list ul li p span.mdi {
    min-width: 5rem;
    color: #a9ba9c;
    font-size: 1.25rem
}

.contact.contact9 .contact-bottom .contact-list ul li p span.text {
    width: calc(100% - 14rem);
    font-size: 15px;
    color: #5c5a5a
}

.contact.contact9 .contact-bottom .contact-list ul li p a,
.contact.contact9 .contact-bottom .contact-list ul li p b {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    color: #5c5a5a;
    line-height: 18px
}

.contact.contact9 .contact-bottom .contact-list ul li:nth-child(1) {
    padding-top: 0
}

.contact.contact9 .contact-bottom .contact-list ul li:nth-child(1) p {
    padding-top: 0
}

.contact.contact9 .contact-bottom .contact-list ul li+li {
    border-top: 1px solid #ecf5ec
}

.contact.contact9 .contact-bottom form .form-group {
    position: relative
}

.contact.contact9 .contact-bottom form .form-group .icon {
    position: absolute;
    left: 0;
    top: 5px
}

.contact.contact9 .contact-bottom form .form-group input.form-control,
.contact.contact9 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    border-radius: 0;
    padding-left: 2rem;
    padding-top: 18px;
    padding-bottom: 22px;
    margin-bottom: 2rem;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.contact.contact9 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder,
.contact.contact9 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact9 .contact-bottom form .form-group input.form-control:-ms-input-placeholder,
.contact.contact9 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact9 .contact-bottom form .form-group input.form-control::placeholder,
.contact.contact9 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact9 .contact-bottom form .form-group textarea.form-control {
    height: 10rem;
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    padding: 8px 1rem 0 2rem
}

.contact.contact9 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact9 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact9 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact9 .contact-bottom form .form-group button,
.contact.contact9 .contact-bottom form .form-group input[type=button],
.contact.contact9 .contact-bottom form .form-group input[type=submit] {
    border: none;
    border-bottom: 4px solid #e7f5f7;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0);
    color: #000;
    padding: .5rem 2rem;
    font-weight: bold;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.contact.contact9 .contact-bottom-border-radius form .form-group .icon {
    left: 1rem
}

.contact.contact9 .contact-bottom-border-radius form .form-group input.form-control,
.contact.contact9 .contact-bottom-border-radius form .form-group textarea.form-control {
    background: #fafafa;
    border-radius: 23px;
    border: 1px solid #dbdbdb;
    padding-left: 3rem
}

.contact.contact10 .contact-bottom .contact-side {
    padding-right: 1rem
}

.contact.contact10 .contact-bottom .contact-side .head h2 {
    font-size: 25px;
    color: #000;
    font-weight: bold
}

.contact.contact10 .contact-bottom .contact-side ul li a {
    position: relative;
    display: block;
    font-size: 17px;
    color: #a2a2a2;
    padding: 1rem 0
}

.contact.contact10 .contact-bottom .contact-side ul li a svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.contact.contact10 .contact-bottom .contact-side ul li+li {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.contact.contact10 .contact-bottom .contact-information {
    padding-left: 3rem
}

@media only screen and (max-width : 767px) {
    .contact.contact10 .contact-bottom .contact-information {
        padding-left: 0
    }
}

.contact.contact10 .contact-bottom .contact-information h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative
}

.contact.contact10 .contact-bottom .contact-information p {
    font-size: 17px;
    color: #a2a2a2;
    margin-bottom: 2rem
}

.contact.contact10 .contact-bottom .contact-list {
    padding-left: 3rem
}

@media only screen and (max-width : 767px) {
    .contact.contact10 .contact-bottom .contact-list {
        padding-left: 0
    }
}

.contact.contact10 .contact-bottom .contact-list ul li {
    padding: 2rem 0
}

.contact.contact10 .contact-bottom .contact-list ul li p {
    display: flex;
    margin: 0;
    padding: 1rem 0
}

.contact.contact10 .contact-bottom .contact-list ul li p svg {
    min-width: 6rem;
    padding-right: 4rem
}

.contact.contact10 .contact-bottom .contact-list ul li p span.mdi {
    min-width: 5rem;
    color: #a9ba9c;
    font-size: 1.25rem
}

.contact.contact10 .contact-bottom .contact-list ul li p span.text {
    width: calc(100% - 14rem);
    font-size: 15px;
    color: #5c5a5a
}

.contact.contact10 .contact-bottom .contact-list ul li p a,
.contact.contact10 .contact-bottom .contact-list ul li p b {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    color: #5c5a5a;
    line-height: 18px
}

.contact.contact10 .contact-bottom .contact-list ul li:nth-child(1) {
    padding-top: 0
}

.contact.contact10 .contact-bottom .contact-list ul li:nth-child(1) p {
    padding-top: 0
}

.contact.contact10 .contact-bottom .contact-list ul li+li {
    border-top: 1px solid #ecf5ec
}

.contact.contact10 .contact-bottom form {
    padding-left: 3rem
}

@media only screen and (max-width : 767px) {
    .contact.contact10 .contact-bottom form {
        padding-left: 0
    }
}

.contact.contact10 .contact-bottom form .form-group {
    position: relative
}

.contact.contact10 .contact-bottom form .form-group .icon {
    position: absolute;
    left: 0;
    top: 5px
}

.contact.contact10 .contact-bottom form .form-group input.form-control,
.contact.contact10 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    border-radius: 0;
    padding-left: 2rem;
    padding-top: 18px;
    padding-bottom: 22px;
    margin-bottom: 2rem;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.contact.contact10 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder,
.contact.contact10 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact10 .contact-bottom form .form-group input.form-control:-ms-input-placeholder,
.contact.contact10 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact10 .contact-bottom form .form-group input.form-control::placeholder,
.contact.contact10 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact10 .contact-bottom form .form-group textarea.form-control {
    height: 10rem;
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    padding: 8px 1rem 0 2rem
}

.contact.contact10 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact10 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact10 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact10 .contact-bottom form .form-group button,
.contact.contact10 .contact-bottom form .form-group input[type=button],
.contact.contact10 .contact-bottom form .form-group input[type=submit] {
    border: none;
    border-bottom: 4px solid #e7f5f7;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0);
    color: #000;
    padding: .5rem 2rem;
    font-weight: bold;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.contact.contact10 .contact-bottom-border-radius form .form-group .icon {
    left: 1rem
}

.contact.contact10 .contact-bottom-border-radius form .form-group input.form-control,
.contact.contact10 .contact-bottom-border-radius form .form-group textarea.form-control {
    background: #fafafa;
    border-radius: 23px;
    border: 1px solid #dbdbdb;
    padding-left: 3rem
}

.contact.contact11 .contact-top {
    position: relative
}

.contact.contact11 .contact-bottom {
    position: relative;
    padding-top: 7.5rem
}

.contact.contact11 .contact-bottom .contact-up-side {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%)
}

.contact.contact11 .contact-bottom .contact-up-side ul {
    border-radius: 27px;
    box-shadow: 0 23px 46px rgba(0, 0, 0, .1);
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap
}

.contact.contact11 .contact-bottom .contact-up-side ul li {
    text-align: center
}

.contact.contact11 .contact-bottom .contact-up-side ul li a {
    font-size: 15px;
    color: #707070;
    display: block;
    padding: .75rem 1rem;
    min-width: 160px;
    background: #fff
}

.contact.contact11 .contact-bottom .contact-up-side ul li.active a,
.contact.contact11 .contact-bottom .contact-up-side ul li:hover a {
    font-weight: bold
}

.contact.contact11 .contact-bottom .contact-up-side ul li:nth-child(1) a {
    border-top-left-radius: 27px;
    border-bottom-left-radius: 27px
}

.contact.contact11 .contact-bottom .contact-up-side ul li:nth-last-child(1) a {
    border-top-right-radius: 27px;
    border-bottom-right-radius: 27px
}

.contact.contact11 .contact-bottom .contact-up-side ul li+li a {
    border-left: 1px solid #e8e8e8
}

.contact.contact11 .contact-bottom .contact-information h2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative
}

.contact.contact11 .contact-bottom .contact-information p {
    font-size: 17px;
    color: #a2a2a2;
    margin-bottom: 2rem
}

.contact.contact11 .contact-bottom .contact-list ul li {
    padding: 2rem 0
}

.contact.contact11 .contact-bottom .contact-list ul li p {
    display: flex;
    margin: 0;
    padding: 1rem 0
}

.contact.contact11 .contact-bottom .contact-list ul li p svg {
    min-width: 6rem;
    padding-right: 4rem
}

.contact.contact11 .contact-bottom .contact-list ul li p span.mdi {
    min-width: 5rem;
    color: #a9ba9c;
    font-size: 1.25rem
}

.contact.contact11 .contact-bottom .contact-list ul li p span.text {
    width: calc(100% - 14rem);
    font-size: 15px;
    color: #5c5a5a
}

.contact.contact11 .contact-bottom .contact-list ul li p a,
.contact.contact11 .contact-bottom .contact-list ul li p b {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    color: #5c5a5a;
    line-height: 18px
}

.contact.contact11 .contact-bottom .contact-list ul li:nth-child(1) {
    padding-top: 0
}

.contact.contact11 .contact-bottom .contact-list ul li:nth-child(1) p {
    padding-top: 0
}

.contact.contact11 .contact-bottom .contact-list ul li+li {
    border-top: 1px solid #ecf5ec
}

.contact.contact11 .contact-bottom form .form-group {
    position: relative
}

.contact.contact11 .contact-bottom form .form-group .icon {
    position: absolute;
    left: 0;
    top: 5px
}

.contact.contact11 .contact-bottom form .form-group input.form-control,
.contact.contact11 .contact-bottom form .form-group textarea.form-control {
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    border-radius: 0;
    padding-left: 2rem;
    padding-top: 18px;
    padding-bottom: 22px;
    margin-bottom: 2rem;
    outline: none;
    outline-color: rgba(0, 0, 0, 0);
    box-shadow: none
}

.contact.contact11 .contact-bottom form .form-group input.form-control::-webkit-input-placeholder,
.contact.contact11 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact11 .contact-bottom form .form-group input.form-control:-ms-input-placeholder,
.contact.contact11 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact11 .contact-bottom form .form-group input.form-control::placeholder,
.contact.contact11 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact11 .contact-bottom form .form-group textarea.form-control {
    height: 10rem;
    border: none;
    border-bottom: 1px solid #909090;
    color: #909090;
    padding: 8px 1rem 0 2rem
}

.contact.contact11 .contact-bottom form .form-group textarea.form-control::-webkit-input-placeholder {
    color: #909090
}

.contact.contact11 .contact-bottom form .form-group textarea.form-control:-ms-input-placeholder {
    color: #909090
}

.contact.contact11 .contact-bottom form .form-group textarea.form-control::placeholder {
    color: #909090
}

.contact.contact11 .contact-bottom form .form-group button,
.contact.contact11 .contact-bottom form .form-group input[type=button],
.contact.contact11 .contact-bottom form .form-group input[type=submit] {
    border: none;
    border-bottom: 4px solid #e7f5f7;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0);
    color: #000;
    padding: .5rem 2rem;
    font-weight: bold;
    outline: none;
    outline-color: rgba(0, 0, 0, 0)
}

.contact.contact11 .contact-bottom-border-radius form .form-group .icon {
    left: 1rem
}

.contact.contact11 .contact-bottom-border-radius form .form-group input.form-control,
.contact.contact11 .contact-bottom-border-radius form .form-group textarea.form-control {
    background: #fafafa;
    border-radius: 23px;
    border: 1px solid #dbdbdb;
    padding-left: 3rem
}

.footer.footer-type-2 .footer-top {
    background: var(--color-theme-andprekast-5-hex);
    padding-top: 50px;
    padding-bottom: 0
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    .footer.footer-type-2 .footer-top {
        padding-top: 30px
    }
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-top {
        padding-top: 30px
    }
}

@media only screen and (max-width : 767px) {
    .footer.footer-type-2 .footer-top {
        padding-top: 0px;
        display: none
    }
}

.footer.footer-type-2 .footer-top .footer-top-upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-logo {
    flex: 0 0 200px;
    user-select: none
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    .footer.footer-type-2 .footer-top .footer-top-upper .footer-logo {
        flex: 0 0 100%;
        text-align: center
    }
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-top .footer-top-upper .footer-logo {
        flex: 0 0 100%;
        text-align: center
    }
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information {
    flex: 0 0 calc(100% - 250px);
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li {
    margin-bottom: 0;
    flex-wrap: nowrap
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .icon svg {
    fill: var(--color-theme-andprekast-1-hex)
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .text {
    display: flex;
    align-items: center
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .text p {
    color: var(--color-theme-andprekast-1-hex)
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .text a {
    color: var(--color-theme-andprekast-1-hex)
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .text a:hover {
    color: rgb(238 238 238 / 60%) !important;
    text-decoration: none;
}

.footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li:nth-child(1) .text a {
    padding-left: 15px
}

@media only screen and (min-width : 992px)and (max-width : 1199px) {
    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information {
        flex: 0 0 100%;
        margin: 10px 0 40px 0
    }
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information {
        flex: 0 0 100%
    }

    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul {
        justify-content: center
    }

    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .icon svg {
        width: 25px
    }
}

@media only screen and (max-width : 767px) {
    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
        justify-content: center;
        padding-left: 0
    }

    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li:nth-child(2) {
        flex: 0 0 100%;
        max-width: 100%
    }

    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .text {
        flex: 0 0 auto
    }

    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .text p span {
        display: none
    }
}

@media only screen and (max-width : 480px) {
    .footer.footer-type-2 .footer-top .footer-top-upper .footer-contact-information ul li .icon {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: .5rem
    }
}

@media only screen and (max-width : 767px) {
    .footer.footer-type-2 .footer-top .footer-top-upper {
        display: none
    }
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1rem 0
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container {
    margin-bottom: 0
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-head {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .3em
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list {
    display: flex;
    justify-content: center
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li {
    position: relative
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li a {
    color: var(--color-theme-andprekast-1-hex);
    padding: 1rem 2rem;
    transition: .4s;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .1em;
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li a:hover {
    color: rgb(238 238 238 / 60%) !important;
    text-decoration: none;
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li+li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    left: -0.2rem;
    top: calc(50% - 2px)
}

@media only screen and (max-width : 767px) {
    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list {
        flex-wrap: wrap
    }

    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center
    }

    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li a {
        padding: .75rem 1rem
    }

    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-list li+li:before {
        left: calc(50% - 2px);
        top: -0.1rem
    }
}

@media only screen and (max-width : 560px) {
    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container>li .footer-menu-head {
        margin-bottom: .5rem;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center
    }
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container .footer-social a {
    color: var(--color-theme-andprekast-1-hex);
    font-size: 1.2rem;
    padding: .25rem
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container .footer-social a {
        padding-top: 0;
        padding-bottom: 0
    }
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container .footer-social a:hover {
    color: var(--color-theme-andprekast-4-hex) !important;
}

@media only screen and (max-width : 767px) {
    .footer.footer-type-2 .footer-top .footer-top-lower .footer-menu {
        border-top: none
    }
}

.footer.footer-type-2 .footer-bottom {
    background: var(--color-theme-andprekast-4-hex);
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-bottom .mid {
        margin-bottom: 1rem;
        width: 100%;
        flex: 0 0 100%
    }

    .footer.footer-type-2 .footer-bottom .mid .fb-menu {
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.footer.footer-type-2 .footer-bottom .mid a {
    color: var(--color-theme-andprekast-6-hex);
    font-size: 14px;
    transition: .4s
}

@media(hover: hover) {
    .footer.footer-type-2 .footer-bottom .mid a:hover {
        color: rgba(255, 255, 255, .2)
    }
}

.footer.footer-type-2 .footer-bottom .mid a:first-child {
    padding-right: 15px;
    text-transform: capitalize
}

@media only screen and (min-width : 768px)and (max-width : 991px) {
    .footer.footer-type-2 .footer-bottom .mid a {
        font-size: 13px !important
    }
}

@media only screen and (max-width : 767px) {
    .footer.footer-type-2 .footer-bottom .mid a {
        font-size: 12px !important;
        transition: .4s
    }
}

.footer.footer-type-2 .footer-bottom .copyright p {
    color: var(--color-theme-andprekast-1-hex);
    font-weight: 300;
    font-size: 12px
}

.footer.footer-type-2 .footer-bottom .copyright p strong {
    font-weight: 600
}

.footer.footer-type-2 .footer-bottom .andprekast {
    user-select: none
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-bottom .andprekast a:nth-last-child(1) {
        margin-left: initial !important;
        padding-left: initial !important;
        width: 225px
    }
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-bottom .d-flex {
        flex-wrap: wrap;
        justify-content: center !important
    }

    .footer.footer-type-2 .footer-bottom .copyright {
        flex: 0 0 100%;
        margin-bottom: 1rem;
        text-align: center
    }

    .footer.footer-type-2 .footer-bottom .footer-social {
        flex: 0 0 100%;
        margin-bottom: 1rem;
        text-align: center
    }
}

@media only screen and (max-width : 991px) {
    .footer.footer-type-2 .footer-logo {
        display: none
    }

    .footer.footer-type-2 .footer-menu-head {
        display: none
    }
}

.contact.contact1 form .form-group input {
    border-radius: 10px
}

.contact.contact1 form .form-group textarea {
    border-radius: 10px
}

.captcha img.captcha_img {
    border-radius: 10px
}

.hamburger-menu {
    display: none
}

@media only screen and (max-width : 991px) {
    .mob-menu {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .hamburger-menu {
        position: relative;
        cursor: pointer;
        z-index: 53;
        transition: .3s;
        display: block;
        justify-content: center;
        align-items: center;
        height: 30px;
        width: 50px;
        top: 50%;
        right: 0;
        margin-right: 10px
    }

    .hamburger-menu .bar.first {
        margin-top: -12px
    }

    .hamburger-menu .bar {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        background: var(--color-theme-andprekast-4-hex);
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        margin-top: -1px;
        transition: margin .15s ease-out .25s, opacity .15s ease-out .25s, transform .15s ease-out .1s
    }

    .hamburger-menu .bar.third {
        margin-top: 10px
    }

    .make-close {
        margin-right: 10px
    }

    .make-close .bar.first {
        margin-top: 0px;
        transform: translateX(-20%) rotate(45deg)
    }

    .make-close .bar.second {
        opacity: 0
    }

    .make-close .bar.third {
        margin-top: 0px;
        transform: translateX(-20%) rotate(-45deg)
    }
}

.footer.footer-type-2 .footer-top .footer-top-lower .footer-menu ol.footer-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.andprekast {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    margin-left: 0 !important;
    padding-left: 0 !important
}

.andprekast a::before {
    display: none
}

.andprekast a {
    margin: 0;
    font-size: 15px !important;
    font-weight: 300;
    color: var(--color-theme-andprekast-1-hex);
    transition: .5s
}

.andprekast a:hover {
    color: rgb(238 238 238 / 60%) !important;
    text-decoration: none;
}

.form-group.form-row.kariyer .captcha {
    flex: 0 0 50%;
    max-width: 50%
}

.kvkk-btn {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding: 0 16px;
    width: 100%
}

.kvkk-btn .kvkk {
    position: relative
}

.kvkk-btn .kvkk input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: .5s
}

.kvkk-btn .kvkk label {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: .5s;
    padding-left: 25px
}

.kvkk-btn .kvkk label::before {
    content: "";
    width: 17px;
    height: 17px;
    border: 1px solid #214784;
    border-radius: 5px;
    position: absolute;
    left: 0
}

.kvkk-btn .kvkk label::after {
    content: "";
    width: 13px;
    height: 13px;
    background: #214784;
    position: absolute;
    left: 2px;
    border-radius: 5px;
    transition: .5s;
    transform-origin: center;
    transform: scale(0)
}

.kvkk-btn .kvkk input:checked~label::after {
    transform: scale(1)
}

.page.career .kvkk-btn .submit {
    flex: 0 0 50%
}

@media screen and (max-width: 768px) {
    .kvkk-btn {
        display: grid
    }
}

.form-call-wrapper {
    display: block;
    background: none;
    border: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    position: static;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
    font-style: normal;
    text-transform: none;
    height: auto;
    width: auto;
    max-width: none;
    max-height: none;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    outline: 0;
    overflow: visible;
    text-decoration: none;
    vertical-align: top;
    word-spacing: normal;
    letter-spacing: normal
}

.form-call-wrapper * {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
    color: #505050
}

.form-call-wrapper {
    position: fixed;
    bottom: 25px;
    left: 50px;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 6.25px;
    line-height: 50px;
    -webkit-font-smoothing: antialiased;
    z-index: 1000;
    cursor: pointer
}

.callMe {
    left: 130px
}

.whatsApp:before {
    border-color: #25d366 !important
}

.whatsApp i {
    color: #fff !important
}

.whatsApp:after {
    background: #25d366 !important
}

.whatsApp .form-call-btn {
    background-color: #25d366 !important
}

.form-call-wrapper:after,
.form-call-wrapper:before {
    content: "";
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 9;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s
}

.form-call-wrapper:after {
    background: #ddd;
    -webkit-animation: lexprofitBackAnim 3s linear infinite;
    animation: lexprofitBackAnim 3s linear infinite
}

.form-call-wrapper:before {
    border: 1px solid #ddd;
    -webkit-animation: lexprofitBorderAnim 3s -0.5s linear infinite;
    animation: lexprofitBorderAnim 3s -0.5s linear infinite
}

.form-call-wrapper .form-call-btn {
    z-index: 10;
    position: absolute;
    background-color: #ccc;
    border-radius: 100%;
    width: 100%;
    height: 100%
}

.form-call-wrapper .form-call-btn .form-call-phone-icon {
    font-family: Flaticon-call-button;
    font-size: 40px;
    font-style: normal;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.form-call-wrapper .form-call-btn .form-call-phone-icon:before {
    content: "\e907";
    color: #888
}

.form-call-wrapper:hover .form-call-btn {
    background-color: #bbb
}

.form-call-wrapper:hover:after {
    background-color: #aaa
}

.form-call-wrapper:hover:before {
    border-color: #aaa
}

.form-call-wrapper:hover .form-call-btn {
    -webkit-animation: lexprofitBoundingAnim 1s linear infinite;
    animation: lexprofitBoundingAnim 1s linear infinite
}


@-webkit-keyframes lexprofitBackAnim {
    0% {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7)
    }

    25% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    65% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2);
        opacity: 0.7
    }

    to {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7);
        opacity: 0
    }
}

@keyframes lexprofitBackAnim {
    0% {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7)
    }

    25% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    65% {
        -webkit-transform: scaleX(1.2) scaleY(1.2);
        transform: scaleX(1.2) scaleY(1.2);
        opacity: 0.7
    }

    to {
        -webkit-transform: scaleX(0.7) scaleY(0.7);
        transform: scaleX(0.7) scaleY(0.7);
        opacity: 0
    }
}

@-webkit-keyframes lexprofitBorderAnim {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    to {
        -webkit-transform: scaleX(2) scaleY(2);
        transform: scaleX(2) scaleY(2);
        opacity: 0
    }
}

@keyframes lexprofitBorderAnim {
    0% {
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }

    50% {
        -webkit-transform: scaleX(1.5) scaleY(1.5);
        transform: scaleX(1.5) scaleY(1.5)
    }

    to {
        -webkit-transform: scaleX(2) scaleY(2);
        transform: scaleX(2) scaleY(2);
        opacity: 0
    }
}

@-webkit-keyframes lexprofitBoundingAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    15% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    30% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes lexprofitBoundingAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    15% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    30% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    45% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    60% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: var(--color-theme-andprekast-4-hex) var(--color-theme-andprekast-1-hex);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: var(--color-theme-andprekast-1-hex);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-theme-andprekast-4-hex);
    border-radius: 10px;
    border: 2px solid var(--color-theme-andprekast-1-hex);
}

@media only screen and (max-width : 991px) {
    .popin.generalAnnounce {
        width: 300px !important;
    }
}

.popin.generalAnnounce {
    width: 450px;
    display: none;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0.01;
        width: 100%;
        height: 100%;
    }

    100% {
        opacity: 0;
        width: 0;
        height: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    99% {
        opacity: 0.01;
        width: 100%;
        height: 100%;
    }

    100% {
        opacity: 0;
        width: 0;
        height: 0;
    }
}

.popin.in-active {
    visibility: hidden;
    opacity: 0;
}

.popin {
    background-color: rgb(34 41 48 / 87%) !important;
    width: 270px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 20px;
    color: #c9c9c9;
    font-size: 12px;
    line-height: 17px;
    position: fixed;
    left: 15px;
    bottom: 106px;
    z-index: 999;
    border-radius: 5px;
}

.popin .closeBtn {
    cursor: pointer;
    display: block;
    font-size: 21px;
    position: absolute;
    margin-right: 8px;
    right: 8px;
    top: 10px;
    z-index: 1;
}

.popin .closeBtn:hover {
    opacity: 0.8;
    transition: all 500ms;
}

.popin .title-cerez {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
}

.popin.generalAnnounce a {
    color: #fff;
    text-decoration: underline;
}

.popin.generalAnnounce p {
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
}

@media screen and (min-width:961px) {

    .mobilgoster {
        display: none;
    }



    .msgoster {
        display: block;
    }
}


/* mobil css */
@media screen and (max-width:961px) {

    .mobilgoster {
        display: block;
    }

    .msgoster {
        display: none;
    }
}

#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}

@media screen and (min-width:900px) {
    #light {
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 700px;
        max-height: 100%;
        margin-left: -300px;
        margin-top: -180px;
        border: 5px solid var(--color-theme-andprekast-1-hex);
        background: #FFF;
        z-index: 1002;
        overflow: visible;
    }
}

@media screen and (max-width:900px) {
    #light {
        display: none;
        position: absolute;
        border: 5px solid var(--color-theme-andprekast-1-hex);
        background: #FFF;
        z-index: 1002;
        overflow: visible;
        top: 50%;
        left: 50%;
        margin-top: -50%;
        margin-left: -40%;
        width: 320px;
        height: 185px;
    }
}


#boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
}

.boxclose:before {
    content: "×";
}

#fade:hover~#boxclose {
    display: none;
}

.test:hover~.test2 {
    display: none;
}

.videoStyle {
    position: relative;
    z-index: 99999999;
    left: 130px;
    top: 0;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none !important;
}

.title-first h1 {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

ol.breadcrumb li {
    color: #fff;
}

ol.breadcrumb li a {
    color: #fff;
}

ol.breadcrumb li a:hover {
    color: var(--color-theme-andprekast-5-hex);
    text-decoration: none;
}

ol.breadcrumb li.active {
    color: #fff;
    font-weight: bold;
}

ol.breadcrumb li+li:before {
    color: #fff;
}

ol.breadcrumb .breadcrumb-item.breadcrumb-item:before {
    color: #fff;
}

.back-to-top {
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: -50px;
    text-decoration: none;
    background-color: #fff;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    line-height: 51px;
    border-radius: 50%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.back-to-top:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.back-to-top.active {
    right: 30px;
}

.back-to-top.left-aligned {
    right: inherit;
    left: -50px;
}

.back-to-top.active.left-aligned {
    left: 30px;
    right: inherit;
}

.back-to-top .fa {
    color: inherit;
    font-size: 14px;
    line-height: 50px;
}

.hakkinda img {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    cursor: pointer;
    box-shadow: -20px 28px 50px -20px rgb(0 0 0 / 28%);
}

.hakkinda img {
    height: 400px;
    float: left;
    /* filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%); */
}

.hakkinda img:hover {
    /* filter: grayscale(80%);
    -webkit-filter: grayscale(80%);
    -moz-filter: grayscale(80%); */
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

#main {
    margin: 50px 0;
  }
  
  #main #faq .card {
    margin-bottom: 10px;
    border: 0;
  }
  
  #main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
            box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
  }
  
  #main #faq .card .card-header .btn-header-link {
    color: #fff;
    display: block;
    text-align: left;
    background: var(--color-theme-andprekast-3-hex);
    color: #222;
    padding: 20px;
  }
  
  #main #faq .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
  }
  
  #main #faq .card .card-header .btn-header-link.collapsed {
    background: var(--color-theme-andprekast-4-hex);
    color: #fff;
  }
  
  #main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
  }
  
  #main #faq .card .collapsing {
    background: var(--color-theme-andprekast-2-hex);
    line-height: 30px;
  }
  
  #main #faq .card .collapse {
    border: 0;
  }
  
  #main #faq .card .collapse.show {
    background: var(--color-theme-andprekast-2-hex);
    line-height: 30px;
    color: #222;
  }

  .imza small{
    font-weight: 800;
  }

  .imza img{
    width: 250px;
    margin-bottom: 0 !important;
    object-fit: none !important;
    -moz-transform: skew(0deg, -20deg);
    -webkit-transform: skew(0deg, -20deg);
    -o-transform: skew(0deg, -20deg);
    -ms-transform: skew(0deg, -20deg);
    transform: skew(0deg, -20deg);
  }

  nav.social-network{
    position: fixed;
    width: 70px;
    transition: all 0.3s linear;
    box-shadow: 2px 2px 8px 0px rgb(0 0 0 / 40%);
    top: 220px;
    z-index: 1;
  }
  nav.social-network li{
    height: 60px;
    position:relative;
  }
  nav.social-network li a{
    color: white;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 60px;
    padding-left:25%;
    border-bottom: 1px solid rgba(0,0,0,.4);
    transition: all .3s linear;
  }
  nav.social-network li:nth-child(1) a{
    background: #4267B2;
  }
  nav.social-network li:nth-child(2) a{
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }
  nav.social-network li:nth-child(3) a{
    background: #1d9bf0;
  }
  nav.social-network li:nth-child(4) a{
    background: #2867B2;
  }
  nav.social-network li:nth-child(5) a{
    background: #333;
  }
  nav.social-network li:nth-child(6) a{
    background: #ff0000;
  }
  nav.social-network li a i{
    position:absolute;
    top: 17px;
    left: 20px;
    font-size: 27px;
  }
  nav.social-network ul li a span{
    display: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  nav.social-network a:hover {
    z-index:1;
    width: 200px;
    border-bottom: 1px solid rgba(0,0,0,.5);
    box-shadow: 0 0 1px 1px rgba(0,0,0,.3);
  }
  nav.social-network ul li:hover a span{
    padding-left: 30%;
    display: block;
  }

  dl, ol, ul{
    margin-bottom: 0px !important;
  }

  @media only screen and (max-width : 991px) {
    nav.social-network{
        display: none;
    }
}