@-o-keyframes moveUp {
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1
    }
}

@-ms-keyframes moveUp {
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes moveUp {
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        opacity: 1
    }
}

@keyframes moveUp {
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes spin-rotate-left {
    to {
        transform: rotate(30deg)
    }

    from {
        transform: rotate(175deg)
    }
}

@-webkit-keyframes spin-rotate-left {
    to {
        transform: rotate(30deg)
    }

    from {
        transform: rotate(175deg)
    }
}

@keyframes spin-rotate-right {
    from {
        transform: rotate(-175deg)
    }

    to {
        transform: rotate(-30deg)
    }
}

@-webkit-keyframes spin-rotate-right {
    from {
        transform: rotate(-175deg)
    }

    to {
        transform: rotate(-30deg)
    }
}

@keyframes spin-rotate-all {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(-360deg)
    }
}

@-webkit-keyframes spin-rotate-all {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(-360deg)
    }
}

@keyframes spin-fade-in-first {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes spin-fade-in-first {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes spin-fade-in-second {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes spin-fade-in-second {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-ms-keyframes ctspin {
    from {
        -ms-transform: rotate(0)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-moz-keyframes ctspin {
    from {
        -moz-transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-webkit-keyframes ctspin {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes ctspin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes myPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2);
        box-shadow: 0 0 rgba(255, 255, 255, .2)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px #fff;
        box-shadow: 0 0 0 60px #fff
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 #fff
    }
}

@keyframes myPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .2);
        box-shadow: 0 0 rgba(255, 255, 255, .2)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px #fff;
        box-shadow: 0 0 0 60px #fff
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 #fff
    }
}

@-webkit-keyframes myPulsePrimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, .2);
        box-shadow: 0 0 rgba(209, 101, 39, .2)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px rgba(209, 101, 39, 0);
        box-shadow: 0 0 0 60px rgba(209, 101, 39, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, 0);
        box-shadow: 0 0 rgba(209, 101, 39, 0)
    }
}

@keyframes myPulsePrimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, .2);
        box-shadow: 0 0 rgba(209, 101, 39, .2)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px rgba(209, 101, 39, 0);
        box-shadow: 0 0 0 60px rgba(209, 101, 39, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, 0);
        box-shadow: 0 0 rgba(209, 101, 39, 0)
    }
}

@-webkit-keyframes markerWave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .8
    }

    20% {
        opacity: .8
    }

    100% {
        -webkit-transform: scale(5.5);
        transform: scale(5.5);
        opacity: 0
    }
}

@keyframes markerWave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .8
    }

    20% {
        opacity: .8
    }

    100% {
        -webkit-transform: scale(5.5);
        transform: scale(5.5);
        opacity: 0
    }
}

@-webkit-keyframes rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px)rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px)rotateY(180deg)rotateX(180deg)
    }
}

@keyframes rotateplane {
    0% {
        -webkit-transform: perspective(120px)rotateX(0)rotateY(0);
        transform: perspective(120px)rotateX(0)rotateY(0)
    }

    50% {
        -webkit-transform: perspective(120px)rotateX(-180.1deg)rotateY(0);
        transform: perspective(120px)rotateX(-180.1deg)rotateY(0)
    }

    100% {
        -webkit-transform: perspective(120px)rotateX(-180deg)rotateY(-179.9deg);
        transform: perspective(120px)rotateX(-180deg)rotateY(-179.9deg)
    }
}

@-webkit-keyframes ct-bounce1 {

    0%,
    100% {
        -webkit-transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1)
    }
}

@keyframes ct-bounce1 {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@-webkit-keyframes ct-bounce2 {

    0%,
    100% {
        -webkit-transform: scale(1.08)
    }

    50% {
        -webkit-transform: scale(.5)
    }
}

@-webkit-keyframes ct-scaledown {
    0% {
        -webkit-transform: scale(1.1)
    }

    50% {
        -webkit-transform: scale(1)
    }

    100% {
        -webkit-transform: scale(1.1)
    }
}

@keyframes shakeicon {
    33% {
        -webkit-transform: rotateZ(20deg);
        -khtml-transform: rotateZ(20deg);
        -moz-transform: rotateZ(20deg);
        -ms-transform: rotateZ(20deg);
        -o-transform: rotateZ(20deg);
        transform: rotateZ(20deg)
    }

    67% {
        -webkit-transform: rotateZ(-20deg);
        -khtml-transform: rotateZ(-20deg);
        -moz-transform: rotateZ(-20deg);
        -ms-transform: rotateZ(-20deg);
        -o-transform: rotateZ(-20deg);
        transform: rotateZ(-20deg)
    }

    100% {
        -webkit-transform: rotateZ(20deg);
        -khtml-transform: rotateZ(20deg);
        -moz-transform: rotateZ(20deg);
        -ms-transform: rotateZ(20deg);
        -o-transform: rotateZ(20deg);
        transform: rotateZ(20deg)
    }
}

@-webkit-keyframes ct-stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(.4)
    }

    20% {
        -webkit-transform: scaleY(1)
    }
}

@keyframes ct-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(.4);
        -webkit-transform: scaleY(.4)
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1)
    }
}

@-webkit-keyframes ct-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes ct-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes ct-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1)
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1)
    }
}

@keyframes ct-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1)
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1)
    }
}

@-webkit-keyframes ct-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px)rotateX(-180deg);
        transform: perspective(140px)rotateX(-180deg);
        opacity: 0
    }

    25%,
    75% {
        -webkit-transform: perspective(140px)rotateX(0);
        transform: perspective(140px)rotateX(0);
        opacity: 1
    }

    90%,
    100% {
        -webkit-transform: perspective(140px)rotateY(180deg);
        transform: perspective(140px)rotateY(180deg);
        opacity: 0
    }
}

@keyframes ct-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px)rotateX(-180deg);
        transform: perspective(140px)rotateX(-180deg);
        opacity: 0
    }

    25%,
    75% {
        -webkit-transform: perspective(140px)rotateX(0);
        transform: perspective(140px)rotateX(0);
        opacity: 1
    }

    90%,
    100% {
        -webkit-transform: perspective(140px)rotateY(180deg);
        transform: perspective(140px)rotateY(180deg);
        opacity: 0
    }
}

@keyframes ball {
    0% {
        transform: translate(0, 0)
    }

    5% {
        transform: translate(8px, -14px)
    }

    10% {
        transform: translate(15px, -10px)
    }

    17% {
        transform: translate(23px, -24px)
    }

    20% {
        transform: translate(30px, -20px)
    }

    27% {
        transform: translate(38px, -34px)
    }

    30% {
        transform: translate(45px, -30px)
    }

    37% {
        transform: translate(53px, -44px)
    }

    40% {
        transform: translate(60px, -40px)
    }

    50% {
        transform: translate(60px, 0)
    }

    57% {
        transform: translate(53px, -14px)
    }

    60% {
        transform: translate(45px, -10px)
    }

    67% {
        transform: translate(37px, -24px)
    }

    70% {
        transform: translate(30px, -20px)
    }

    77% {
        transform: translate(22px, -34px)
    }

    80% {
        transform: translate(15px, -30px)
    }

    87% {
        transform: translate(7px, -44px)
    }

    90% {
        transform: translate(0, -40px)
    }

    100% {
        transform: translate(0, 0)
    }
}

@keyframes barUp1 {
    0% {
        transform: scale(1, .2)
    }

    40% {
        transform: scale(1, .2)
    }

    50% {
        transform: scale(1, 1)
    }

    90% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(1, .2)
    }
}

@keyframes barUp2 {
    0% {
        transform: scale(1, .4)
    }

    40% {
        transform: scale(1, .4)
    }

    50% {
        transform: scale(1, .8)
    }

    90% {
        transform: scale(1, .8)
    }

    100% {
        transform: scale(1, .4)
    }
}

@keyframes barUp3 {
    0% {
        transform: scale(1, .6)
    }

    100% {
        transform: scale(1, .6)
    }
}

@keyframes barUp4 {
    0% {
        transform: scale(1, .8)
    }

    40% {
        transform: scale(1, .8)
    }

    50% {
        transform: scale(1, .4)
    }

    90% {
        transform: scale(1, .4)
    }

    100% {
        transform: scale(1, .8)
    }
}

@keyframes barUp5 {
    0% {
        transform: scale(1, 1)
    }

    40% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(1, .2)
    }

    90% {
        transform: scale(1, .2)
    }

    100% {
        transform: scale(1, 1)
    }
}

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -220px
    }

    100% {
        margin-top: 0
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -220px
    }

    100% {
        margin-top: 0
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -220px
    }

    100% {
        margin-top: 0
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -220px
    }

    100% {
        margin-top: 0
    }
}

@-webkit-keyframes ct-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes ct-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes ct-bounce {

    0%,
    100% {
        -webkit-transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1)
    }
}

@-webkit-keyframes in-top {
    from {
        -webkit-transform: perspective(500px)rotateX(-90deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateX(0)
    }
}

@keyframes in-top {
    from {
        transform: perspective(500px)rotateX(-90deg);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateX(0)
    }
}

@-webkit-keyframes out-top {
    from {
        -webkit-transform: perspective(500px)rotateX(0);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateX(-90deg);
        opacity: 1
    }
}

@keyframes out-top {
    from {
        transform: perspective(500px)rotateX(0);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateX(-90deg);
        opacity: 1
    }
}

@-webkit-keyframes in-bottom {
    from {
        -webkit-transform: perspective(500px)rotateX(90deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateX(0)
    }
}

@keyframes in-bottom {
    from {
        transform: perspective(500px)rotateX(90deg);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateX(0)
    }
}

@-webkit-keyframes out-bottom {
    from {
        -webkit-transform: perspective(500px)rotateX(0);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateX(90deg);
        opacity: 1
    }
}

@keyframes out-bottom {
    from {
        transform: perspective(500px)rotateX(0);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateX(90deg);
        opacity: 1
    }
}

@-webkit-keyframes in-left {
    from {
        -webkit-transform: perspective(500px)rotateY(90deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateY(0)
    }
}

@keyframes in-left {
    from {
        transform: perspective(500px)rotateY(90deg);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateY(0)
    }
}

@-webkit-keyframes out-left {
    from {
        -webkit-transform: perspective(500px)rotateY(0);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateY(90deg);
        opacity: 1
    }
}

@keyframes out-left {
    from {
        transform: perspective(500px)rotateY(0);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateY(90deg);
        opacity: 1
    }
}

@-webkit-keyframes in-right {
    from {
        -webkit-transform: perspective(500px)rotateY(-90deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateY(0)
    }
}

@keyframes in-right {
    from {
        transform: perspective(500px)rotateY(-90deg);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateY(0)
    }
}

@-webkit-keyframes out-right {
    from {
        -webkit-transform: perspective(500px)rotateY(0);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(500px)rotateY(-90deg);
        opacity: 1
    }
}

@keyframes out-right {
    from {
        transform: perspective(500px)rotateY(0);
        opacity: 1
    }

    to {
        transform: perspective(500px)rotateY(-90deg);
        opacity: 1
    }
}

@-webkit-keyframes in-top-fade {
    from {
        -webkit-transform: translateY(-120%)
    }

    to {
        -webkit-transform: translateY(0%)
    }
}

@keyframes in-top-fade {
    from {
        transform: translateY(-120%)
    }

    to {
        transform: translateY(0%)
    }
}

@-webkit-keyframes out-top-fade {
    from {
        -webkit-transform: translateY(0%)
    }

    to {
        -webkit-transform: translateY(-120%)
    }
}

@keyframes out-top-fade {
    from {
        transform: translateY(0%)
    }

    to {
        transform: translateY(-120%)
    }
}

@-webkit-keyframes in-bottom-fade {
    from {
        -webkit-transform: translateY(120%)
    }

    to {
        -webkit-transform: translateY(0%)
    }
}

@keyframes in-bottom-fade {
    from {
        transform: translateY(120%)
    }

    to {
        transform: translateY(0%)
    }
}

@-webkit-keyframes out-bottom-fade {
    from {
        -webkit-transform: translateY(0%)
    }

    to {
        -webkit-transform: translateY(120%)
    }
}

@keyframes out-bottom-fade {
    from {
        transform: translateY(0%)
    }

    to {
        transform: translateY(120%)
    }
}

@-webkit-keyframes in-left-fade {
    from {
        -webkit-transform: translateX(-120%)
    }

    to {
        -webkit-transform: translateX(0%)
    }
}

@keyframes in-left-fade {
    from {
        transform: translateX(-120%)
    }

    to {
        transform: translateX(0%)
    }
}

@-webkit-keyframes out-left-fade {
    from {
        -webkit-transform: translateX(0%)
    }

    to {
        -webkit-transform: translateX(-120%)
    }
}

@keyframes out-left-fade {
    from {
        transform: translateX(0%)
    }

    to {
        transform: translateX(-120%)
    }
}

@-webkit-keyframes in-right-fade {
    from {
        -webkit-transform: translateX(120%)
    }

    to {
        -webkit-transform: translateX(0%)
    }
}

@keyframes in-right-fade {
    from {
        transform: translateX(120%)
    }

    to {
        transform: translateX(0%)
    }
}

@-webkit-keyframes out-right-fade {
    from {
        -webkit-transform: translateX(0%)
    }

    to {
        -webkit-transform: translateX(120%)
    }
}

@keyframes out-right-fade {
    from {
        transform: translateX(0%)
    }

    to {
        transform: translateX(120%)
    }
}

@keyframes in-top-scale {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes out-top-scale {
    from {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

@-webkit-keyframes video-icon-animation {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }

    to {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

@keyframes video-icon-animation {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }

    to {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

@-webkit-keyframes btn_shine {
    100% {
        left: 200%
    }
}

@keyframes btn_shine {
    100% {
        left: 200%
    }
}

@-webkit-keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(.8, .8, 1);
        transform: scale3d(.8, .8, 1)
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes anim-moema-1 {
    60% {
        -webkit-transform: scale3d(.8, .8, 1);
        transform: scale3d(.8, .8, 1)
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes anim-moema-2 {
    to {
        opacity: 0;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes CTPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 rgba(255, 255, 255, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px #fff;
        box-shadow: 0 0 0 60px #fff
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 #fff
    }
}

@keyframes CTPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 rgba(255, 255, 255, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px #fff;
        box-shadow: 0 0 0 60px #fff
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 #fff
    }
}

@-webkit-keyframes CTPulse_Primary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, .4);
        box-shadow: 0 0 rgba(209, 101, 39, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px rgba(209, 101, 39, 0);
        box-shadow: 0 0 0 60px rgba(209, 101, 39, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, 0);
        box-shadow: 0 0 rgba(209, 101, 39, 0)
    }
}

@keyframes CTPulse_Primary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, .4);
        box-shadow: 0 0 rgba(209, 101, 39, .4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px #000;
        box-shadow: 0 0 0 60px rgba(209, 101, 39, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(209, 101, 39, 0);
        box-shadow: 0 0 rgba(209, 101, 39, 0)
    }
}

@-webkit-keyframes toRightFromLeft {
    49% {
        -webkit-transform: translate(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}

@-moz-keyframes toRightFromLeft {
    49% {
        -moz-transform: translate(100%)
    }

    50% {
        opacity: 0;
        -moz-transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%)
    }

    50% {
        opacity: 0;
        transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}

@-webkit-keyframes toBottomFromTop {
    49% {
        -webkit-transform: translateY(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

@-moz-keyframes toBottomFromTop {
    49% {
        -moz-transform: translateY(100%)
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%)
    }

    50% {
        opacity: 0;
        transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%)
    }

    51% {
        opacity: 1
    }
}

@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        transform: translateY(100%)
    }

    51% {
        opacity: 1
    }
}

@-webkit-keyframes squares {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    20% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0
    }
}

@keyframes squares {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    20% {
        -webkit-transform: scale(1.24);
        -moz-transform: scale(1.24);
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0
    }
}

@-webkit-keyframes squares_lg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes squares_lg {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.16);
        transform: scale(1.16)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ct_dual_ring {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes ct_dual_ring {
    0% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes item_rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes item_rotate {
    0% {
        -moz-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes item_rotate {
    0% {
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes item_rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes item_rotate_child {
    0% {
        -webkit-transform: rotate(-160deg);
        -moz-transform: rotate(-160deg);
        -o-transform: rotate(-160deg);
        transform: rotate(-160deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border2 {
    0% {
        transform: scale(1);
        opacity: .67
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

@-webkit-keyframes pulse-border2 {
    0% {
        transform: scale(1);
        opacity: .67
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-40px)
    }

    50% {
        transform: translateX(0)
    }

    75% {
        transform: translateX(40px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes animationFramesTwo {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(40px)
    }

    50% {
        transform: translateX(0)
    }

    75% {
        transform: translateX(-40px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes animationFramesThree {
    0% {
        transform: translate(0, 0)
    }

    20% {
        transform: translate(40px, -5px)
    }

    40% {
        transform: translate(60px, 40px)
    }

    60% {
        transform: translate(40px, 60px)
    }

    80% {
        transform: translate(-40px, 60px)
    }

    100% {
        transform: translate(0, 0)
    }
}

@keyframes animationFramesFour {
    0% {
        transform: translate(0, 0)
    }

    20% {
        transform: translate(-30px, 40px)
    }

    40% {
        transform: translate(60px, 60px)
    }

    60% {
        transform: translate(80px, 40px)
    }

    80% {
        transform: translate(40px, -70px)
    }

    100% {
        transform: translate(0, 0)
    }
}

@keyframes animationFramesFive {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(-40px)
    }

    50% {
        transform: translateY(0)
    }

    75% {
        transform: translateY(40px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes stevloader {

    0%,
    100% {
        box-shadow: -7px -7px 0 5px #bf2025, 7px -7px 0 5px, 7px 7px 0 5px, -7px 7px 0 5px
    }

    8.3333% {
        box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px #bf2025, 7px 7px 0 5px, -7px 7px 0 5px
    }

    16.6667% {
        box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px transparent, 7px 7px 0 5px #bf2025, -7px 7px 0 5px
    }

    25% {
        box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px transparent, 7px 7px 0 5px transparent, -7px 7px 0 5px #bf2025
    }

    33.3333% {
        box-shadow: -7px -7px 0 5px #bf2025, 7px -7px 0 5px transparent, 7px 7px 0 5px transparent, -7px 7px 0 5px
    }

    41.6667% {
        box-shadow: -7px -7px 0 5px, 7px -7px 0 5px #bf2025, 7px 7px 0 5px transparent, -7px 7px 0 5px
    }

    50% {
        box-shadow: -7px -7px 0 5px, 7px -7px 0 5px, 7px 7px 0 5px #bf2025, -7px 7px 0 5px
    }

    58.3333% {
        box-shadow: -7px -7px 0 5px, 7px -7px 0 5px, 7px 7px 0 5px transparent, -7px 7px 0 5px #bf2025
    }

    66.6667% {
        box-shadow: -7px -7px 0 5px #bf2025, 7px -7px 0 5px, 7px 7px 0 5px transparent, -7px 7px 0 5px transparent
    }

    75% {
        box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px #bf2025, 7px 7px 0 5px transparent, -7px 7px 0 5px transparent
    }

    83.3333% {
        box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px, 7px 7px 0 5px #bf2025, -7px 7px 0 5px transparent
    }

    91.6667% {
        box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px, 7px 7px 0 5px, -7px 7px 0 5px #bf2025
    }
}

@-webkit-keyframes stevloader {

    0%,
    100% {
        -webkit-box-shadow: -7px -7px 0 5px #bf2025, 7px -7px 0 5px, 7px 7px 0 5px, -7px 7px 0 5px
    }

    8.3333% {
        -webkit-box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px #bf2025, 7px 7px 0 5px, -7px 7px 0 5px
    }

    16.6667% {
        -webkit-box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px transparent, 7px 7px 0 5px #bf2025, -7px 7px 0 5px
    }

    25% {
        -webkit-box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px transparent, 7px 7px 0 5px transparent, -7px 7px 0 5px #bf2025
    }

    33.3333% {
        -webkit-box-shadow: -7px -7px 0 5px #bf2025, 7px -7px 0 5px transparent, 7px 7px 0 5px transparent, -7px 7px 0 5px
    }

    41.6667% {
        -webkit-box-shadow: -7px -7px 0 5px, 7px -7px 0 5px #bf2025, 7px 7px 0 5px transparent, -7px 7px 0 5px
    }

    50% {
        -webkit-box-shadow: -7px -7px 0 5px, 7px -7px 0 5px, 7px 7px 0 5px #bf2025, -7px 7px 0 5px
    }

    58.3333% {
        -webkit-box-shadow: -7px -7px 0 5px, 7px -7px 0 5px, 7px 7px 0 5px transparent, -7px 7px 0 5px #bf2025
    }

    66.6667% {
        -webkit-box-shadow: -7px -7px 0 5px #bf2025, 7px -7px 0 5px, 7px 7px 0 5px transparent, -7px 7px 0 5px transparent
    }

    75% {
        -webkit-box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px #bf2025, 7px 7px 0 5px transparent, -7px 7px 0 5px transparent
    }

    83.3333% {
        -webkit-box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px, 7px 7px 0 5px #bf2025, -7px 7px 0 5px transparent
    }

    91.6667% {
        -webkit-box-shadow: -7px -7px 0 5px transparent, 7px -7px 0 5px, 7px 7px 0 5px, -7px 7px 0 5px #bf2025
    }
}

@-webkit-keyframes loading-run {
    0% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    5%,
    95% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    10%,
    59% {
        box-shadow: 0 -.83em 0 -.4em, -.087em -.825em 0 -.42em, -.173em -.812em 0 -.44em, -.256em -.789em 0 -.46em, -.297em -.775em 0 -.477em
    }

    20% {
        box-shadow: 0 -.83em 0 -.4em, -.338em -.758em 0 -.42em, -.555em -.617em 0 -.44em, -.671em -.488em 0 -.46em, -.749em -.34em 0 -.477em
    }

    38% {
        box-shadow: 0 -.83em 0 -.4em, -.377em -.74em 0 -.42em, -.645em -.522em 0 -.44em, -.775em -.297em 0 -.46em, -.82em -.09em 0 -.477em
    }

    100% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }
}

@keyframes loading-run {
    0% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    5%,
    95% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }

    10%,
    59% {
        box-shadow: 0 -.83em 0 -.4em, -.087em -.825em 0 -.42em, -.173em -.812em 0 -.44em, -.256em -.789em 0 -.46em, -.297em -.775em 0 -.477em
    }

    20% {
        box-shadow: 0 -.83em 0 -.4em, -.338em -.758em 0 -.42em, -.555em -.617em 0 -.44em, -.671em -.488em 0 -.46em, -.749em -.34em 0 -.477em
    }

    38% {
        box-shadow: 0 -.83em 0 -.4em, -.377em -.74em 0 -.42em, -.645em -.522em 0 -.44em, -.775em -.297em 0 -.46em, -.82em -.09em 0 -.477em
    }

    100% {
        box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em
    }
}

@-webkit-keyframes loading-round {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loading-round {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes ct-float-two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@keyframes ct-float-two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@keyframes icon-bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}

@keyframes icon-bounce-right {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateX(8px);
        -ms-transform: translateX(8px);
        transform: translateX(8px)
    }

    60% {
        -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
        transform: translateX(4px)
    }
}

@keyframes ct-nudge {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 0)
    }

    80% {
        transform: translate(-30px, 0)
    }
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes shakeThatBooty {
    33% {
        -webkit-transform: rotateZ(20deg);
        -khtml-transform: rotateZ(20deg);
        -moz-transform: rotateZ(20deg);
        -ms-transform: rotateZ(20deg);
        -o-transform: rotateZ(20deg);
        transform: rotateZ(20deg)
    }

    67% {
        -webkit-transform: rotateZ(-20deg);
        -khtml-transform: rotateZ(-20deg);
        -moz-transform: rotateZ(-20deg);
        -ms-transform: rotateZ(-20deg);
        -o-transform: rotateZ(-20deg);
        transform: rotateZ(-20deg)
    }

    100% {
        -webkit-transform: rotateZ(20deg);
        -khtml-transform: rotateZ(20deg);
        -moz-transform: rotateZ(20deg);
        -ms-transform: rotateZ(20deg);
        -o-transform: rotateZ(20deg);
        transform: rotateZ(20deg)
    }
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes spinAround {
    from {
        -moz-transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@keyframes spinAround {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spinAround2 {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(-360deg)
    }
}

@-moz-keyframes spinAround2 {
    from {
        -moz-transform: rotate(0)
    }

    to {
        -moz-transform: rotate(-360deg)
    }
}

@keyframes spinAround2 {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(-360deg)
    }
}

@keyframes bounce-1 {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes bounce-2 {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }

    100% {
        transform: translateY(0)
    }
}

.bounce-1 {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    animation-name: bounce-1;
    animation-timing-function: linear
}

.bounce-2 {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    transform-origin: top;
    animation-name: bounce-1;
    animation-timing-function: linear
}

@keyframes icon-scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes loading {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

@keyframes ctLoadingrotate {
    50% {
        transform: rotate(360deg);
        margin-left: 0
    }

    50.0001%,
    100% {
        margin-left: -70px
    }
}

@keyframes ctLoadingmove {

    0%,
    50% {
        left: -10px
    }

    25% {
        background: #ededed
    }

    75% {
        background: #85cc02
    }

    50.0001%,
    100% {
        left: auto;
        right: -10px
    }
}

@keyframes ctLoadingdrop1 {
    100% {
        transform: translate(32px, 10px)scale(0)
    }
}

@keyframes ctLoadingdrop2 {
    0% {
        transform: translate(0, 0)scale(.9)
    }

    100% {
        transform: translate(32px, -10px)scale(0)
    }
}

@keyframes open {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 50%;
        height: 0
    }

    100% {
        width: 50%;
        height: 100%
    }
}

@keyframes openB {
    0% {
        width: 0
    }

    100% {
        width: 50%
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        transform: none
    }
}

@-ms-keyframes ctspinsvg {
    from {
        -ms-transform: rotate(0)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-moz-keyframes ctspinsvg {
    from {
        -moz-transform: rotate(0)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-webkit-keyframes ctspinsvg {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes ctspinsvg {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}

/* @keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,
    50% {
        opacity: .5;
        transform: rotateY(0)
    }
} */

@-webkit-keyframes overlay_circle {
    0% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes overlay_circle {
    0% {
        opacity: 1
    }

    40% {
        opacity: 1
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes shake-animation {
    0% {
        transform: translate(0, 0)
    }

    1.78571% {
        transform: translate(5px, 0)
    }

    3.57143% {
        transform: translate(0, 0)
    }

    5.35714% {
        transform: translate(5px, 0)
    }

    7.14286% {
        transform: translate(0, 0)
    }

    8.92857% {
        transform: translate(5px, 0)
    }

    10.71429% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(0, 0)
    }
}

@keyframes rotating {
    0% {
        opacity: 0;
        transform: rotate(0)
    }

    25%,
    75% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 0;
        transform: rotate(360deg)
    }
}

@keyframes flying {
    0% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(20px, 50px)
    }

    20% {
        transform: translate(-30px, 10px)
    }

    30% {
        transform: translate(10px, 60px)
    }

    40% {
        transform: translate(50px, 0)
    }

    50% {
        transform: translate(-10px, -40px)
    }

    60% {
        transform: translate(-40px, 20px)
    }

    70% {
        transform: translate(30px, -30px)
    }

    80% {
        transform: translate(0, -60px)
    }

    90% {
        transform: translate(40px, 10px)
    }

    100% {
        transform: translate(0, 0)
    }
}

@keyframes cthidden {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes ctoverlaybg {
    to {
        width: 100%;
        height: 100%;
        opacity: 0
    }
}

@keyframes ctoverlayfilter {
    0% {
        filter: brightness(100%)
    }

    100% {
        filter: brightness(100%)
    }
}

@keyframes particlesMovement {
    0% {
        transform: translateZ(-50vmin);
        opacity: 0
    }

    30%,
    70%,
    90% {
        opacity: 1
    }

    100% {
        transform: translateZ(50vmin)rotate(15deg);
        opacity: 0
    }
}

@keyframes particlesMovement2 {
    0% {
        transform: translateZ(-50vmin)rotate(180deg);
        opacity: 0
    }

    30%,
    70%,
    90% {
        opacity: 1
    }

    100% {
        transform: translateZ(50vmin)rotate(195deg);
        opacity: 0
    }
}

@-webkit-keyframes aitf {
    0% {
        background-position: 0
    }

    100% {
        background-position: 100%
    }
}

@keyframes ct_fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes ct_fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        transform: none
    }
}

@keyframes ct_fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        transform: none
    }
}

@-webkit-keyframes ct_skewInUp {
    0% {
        -webkit-clip-path: inset(100% 0 0 0);
        clip-path: inset(100% 0 0 0);
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes ct_skewInUp {
    0% {
        -webkit-clip-path: inset(100% 0 0 0);
        clip-path: inset(100% 0 0 0);
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes ct_movingLine {
    0% {
        opacity: 0;
        width: 0
    }

    33.3%,
    66% {
        opacity: .8;
        width: 100%
    }

    85% {
        width: 0;
        left: initial;
        right: 0;
        opacity: 1
    }

    100% {
        opacity: 0;
        width: 0
    }
}

@keyframes ct_movingLine {
    0% {
        opacity: 0;
        width: 0
    }

    33.3%,
    66% {
        opacity: .8;
        width: 100%
    }

    85% {
        width: 0;
        left: initial;
        right: 0;
        opacity: 1
    }

    100% {
        opacity: 0;
        width: 0
    }
}

@-webkit-keyframes ct_moveLetters {
    0% {
        -webkit-transform: translateX(-15vw);
        transform: translateX(-15vw);
        opacity: 0
    }

    33.3%,
    66% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(15vw);
        transform: translateX(15vw);
        opacity: 0
    }
}

@keyframes ct_moveLetters {
    0% {
        -webkit-transform: translateX(-15vw);
        transform: translateX(-15vw);
        opacity: 0
    }

    33.3%,
    66% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(15vw);
        transform: translateX(15vw);
        opacity: 0
    }
}

@-webkit-keyframes spark1 {
    0% {
        right: -5px;
        height: 1px;
        width: 1px;
        opacity: 0
    }

    20% {
        height: 3px;
        width: 3px;
        right: 0;
        opacity: 1
    }

    30% {
        right: -5px;
        opacity: 1;
        height: 3px;
        width: 3px
    }

    70% {
        height: 3px;
        width: 3px
    }

    100% {
        right: -60px;
        bottom: 40px;
        opacity: 0
    }
}

@keyframes spark1 {
    0% {
        right: -5px;
        height: 1px;
        width: 1px;
        opacity: 0
    }

    20% {
        height: 3px;
        width: 3px;
        right: 0;
        opacity: 1
    }

    30% {
        right: -5px;
        opacity: 1;
        height: 3px;
        width: 3px
    }

    70% {
        height: 3px;
        width: 3px
    }

    100% {
        right: -60px;
        bottom: 40px;
        opacity: 0
    }
}

@-webkit-keyframes spark2 {
    0% {
        height: 3px;
        width: 3px;
        opacity: 0
    }

    30% {
        opacity: 1
    }

    100% {
        right: -20px;
        bottom: 100px;
        opacity: 0
    }
}

@keyframes spark2 {
    0% {
        height: 3px;
        width: 3px;
        opacity: 0
    }

    30% {
        opacity: 1
    }

    100% {
        right: -20px;
        bottom: 100px;
        opacity: 0
    }
}

@-webkit-keyframes spark3 {
    0% {
        opacity: 0
    }

    30% {
        opacity: 1;
        height: 2px;
        width: 2px
    }

    100% {
        left: 0;
        bottom: 100px;
        opacity: 0;
        height: 3px;
        width: 3px
    }
}

@keyframes spark3 {
    0% {
        opacity: 0
    }

    30% {
        opacity: 1;
        height: 2px;
        width: 2px
    }

    100% {
        left: 0;
        bottom: 100px;
        opacity: 0;
        height: 3px;
        width: 3px
    }
}

@-webkit-keyframes spark4 {
    0% {
        opacity: 0
    }

    30% {
        opacity: 1;
        height: 2px;
        width: 2px
    }

    100% {
        left: -20px;
        bottom: -10px;
        opacity: 0;
        height: 3px;
        width: 3px
    }
}

@keyframes spark4 {
    0% {
        opacity: 0
    }

    30% {
        opacity: 1;
        height: 2px;
        width: 2px
    }

    100% {
        left: -20px;
        bottom: -10px;
        opacity: 0;
        height: 3px;
        width: 3px
    }
}

.ft-heading {
    font-family: chakra petch, sans-serif
}

html {
    box-sizing: border-box
}

a {
    color: #ededed;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

a.link-underline {
    color: #bf2025
}

a.link-underline:hover {
    text-decoration: underline;
    color: #bf2025
}

a,
a:hover,
a:focus,
a:before,
a:after {
    font-family: chakra petch, sans-serif;
    outline: none;
    text-decoration: none
}

a:hover,
a:focus,
a:active {
    color: #bf2025
}

i {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

*,
*:before,
*:after {
    box-sizing: inherit
}

p {
    margin-bottom: 15px;
}

body {
    background-color: #fff;
    font-size: 18px;
    line-height: 1.444;
    color: #ededed;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0;
    font-family: mulish, sans-serif
}

body.ov-hidden {
    overflow: hidden
}

body.body-default-font {
    font-family: mulish, sans-serif
}

.site {
    position: relative
}

h1,
h2,
h3,
h4,
.ct-countdown-layout1 .countdown-amount,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #bf2025;
    clear: both;
    line-height: 1.55;
    margin: 0 0 15px;
    font-weight: 700
}

.heading-default-font h1,
.heading-default-font h2,
.heading-default-font h3,
.heading-default-font h4,
.heading-default-font .ct-countdown-layout1 .countdown-amount,
.ct-countdown-layout1 .heading-default-font .countdown-amount,
.heading-default-font h5,
.heading-default-font h6,
.heading-default-font .h1,
.heading-default-font .h2,
.heading-default-font .h3,
.heading-default-font .h4,
.heading-default-font .h5,
.heading-default-font .h6,
.heading-default-font .ft-h {
    font-family: chakra petch, sans-serif
}

h1,
.h1 {
    font-size: 66px
}

h2,
.h2 {
    font-size: 42px;
    line-height: 1.2
}

h3,
.h3 {
    font-size: 36px
}

h4,
.ct-countdown-layout1 .countdown-amount,
.h4 {
    font-size: 29px;
    line-height: 1.207
}

h5,
.h5 {
    font-size: 23px;
    line-height: 1.43478
}

h6,
.h6 {
    font-size: 18px
}

img {
    height: auto;
    width: auto
}

label {
    margin-bottom: 0
}

.fs-desc-md {
    font-size: 15px
}

.fs-title-sm {
    font-size: 20px
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 2;
    margin: 0 0 32px;
    width: 100%;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

table th {
    color: #ededed
}

caption,
td {
    font-weight: 400;
    text-align: left
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 13px 8px
}

th {
    font-weight: 600;
    padding: 10px
}

td {
    padding: 10px
}

dl {
    margin: 0 0 0 25px
}

dl dt {
    font-weight: 400;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000
}

dl dd {
    line-height: normal;
    margin-bottom: 20px
}

dl dd a {
    color: #000
}

dl dd a:hover {
    color: #bf2025
}

code,
kbd {
    background-color: initial;
    border-radius: 4px;
    color: inherit;
    font-size: 100%;
    padding: 2px 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

ins {
    color: #fff;
    border: none;
    padding: 2px;
    text-decoration: none;
    background-color: #bf2025
}

pre {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word
}

ol {
    list-style: outside none decimal;
    margin-bottom: 32px
}

ul {
    padding: 0;
    margin: 0 0 32px
}

ul li {
    list-style-position: inside
}

dl+h2+ul {
    padding-left: 35px
}

dl+h2+ul ul {
    padding-left: 35px
}

dl+h2+ul ul li {
    list-style: outside
}

blockquote {
    border-left: 4px solid #bf2025;
    background-color: #121212;
    padding: 40px !important;
    font-size: 24px;
    line-height: 35px;
    color: #ededed;
    font-weight: 600;
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px !important;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:767px) {
    blockquote {
        padding-left: 20px !important;
        padding-right: 20px !important
    }
}

blockquote cite {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-top: 12px;
    font-style: normal;
    color: #161616;
    font-family: mulish, sans-serif
}

@media screen and (max-width:767px) {
    blockquote cite {
        font-size: 14px
    }
}

blockquote.wp-block-quote p {
    margin-bottom: 16px !important
}

blockquote.wp-block-quote cite br {
    display: none
}

blockquote.wp-block-quote.has-text-align-right:before {
    left: auto;
    right: 0
}

blockquote.wp-block-quote.has-text-align-left {
    padding-top: 20px;
    padding-bottom: 20px
}

blockquote p:last-child {
    margin-bottom: 0
}

.alignleft,
.alignright,
.aligncenter {
    margin-top: 6px;
    margin-bottom: 45px
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 35px
}

.alignright {
    display: inline;
    float: right;
    margin-left: 35px;
    clear: right
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.sticky {
    display: block
}

.updated:not(.published) {
    display: none
}

.post-password-form label {
    display: block;
    max-width: 60%
}

.post-password-form input {
    margin: 10px 0
}

.has-background-dim {
    color: #fff;
    margin-bottom: 30px
}

.wp-block-gallery .blocks-gallery-item {
    float: left
}

.wp-block-gallery .blocks-gallery-caption {
    margin-bottom: 22px
}

@media screen and (max-width:767px) {
    .post-password-form label {
        max-width: 60%
    }
}

.wp-block-button {
    margin-bottom: 20px
}

.wp-block-button .wp-block-button__link {
    background-color: #bf2025;
    border-color: #bf2025;
    color: #fff
}

.wp-block-button .wp-block-button__link:not([href]) {
    color: #fff
}

.wp-block-button .wp-block-button__link:hover {
    background-color: #ededed;
    border-color: #ededed;
    color: #fff
}

.wp-block-button .wp-block-button__link:hover:not([href]) {
    color: #fff
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: initial;
    color: #bf2025
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: #ededed;
    border-color: #ededed;
    color: #fff
}

.wp-block-button.is-style-squared .wp-block-button__link {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption .wp-caption-text {
    padding: .8075em 0;
    font-size: .875em;
    font-style: italic
}

.gallery-caption {
    opacity: 1
}

.wp-caption-text {
    text-align: center
}

#tslOverlay {
    background-color: initial !important
}

.z-index1 {
    z-index: 1
}

.z-index2 {
    z-index: 2
}

.z-index3 {
    z-index: 3
}

.ct-hidden {
    opacity: 0;
    visibility: hidden
}

.icon-psb *,
.icon-center,
.ct-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.d-inline-block {
    display: inline-block
}

.slide-in-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    position: relative
}

.wow.case-fade-in-up {
    -webkit-transform: translateY(80px);
    -khtml-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: .4s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .4s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .4s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .4s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .4s cubic-bezier(.24, .74, .58, 1);
    transition: .4s cubic-bezier(.24, .74, .58, 1)
}

.wow.case-fade-in-up.animated {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-icon-close {
    background: 0 0;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer
}

.ct-icon-close:before,
.ct-icon-close:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background-color: #444;
    transform-origin: 50% 50%;
    opacity: 1;
    -webkit-transition: transform ease .25s;
    -khtml-transition: transform ease .25s;
    -moz-transition: transform ease .25s;
    -ms-transition: transform ease .25s;
    -o-transition: transform ease .25s;
    transition: transform ease .25s
}

.ct-icon-close:before {
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.ct-icon-close:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.ct-icon-close:hover:before,
.ct-icon-close:hover:after {
    background-color: #bf2025;
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0)
}

.color-primary {
    color: #bf2025
}

.icon-space-right {
    margin-right: 10px
}

.gradient-gray {
    background-image: -webkit-linear-gradient(90deg, #c0c1c0 0%, #fff 50%, #c0c1c0 100%);
    background-image: -moz-linear-gradient(90deg, #c0c1c0 0%, #fff 50%, #c0c1c0 100%);
    background-image: -ms-linear-gradient(90deg, #c0c1c0 0%, #fff 50%, #c0c1c0 100%);
    background-image: -o-linear-gradient(90deg, #c0c1c0 0%, #fff 50%, #c0c1c0 100%);
    background-image: linear-gradient(90deg, #c0c1c0 0%, #fff 50%, #c0c1c0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='')
}

.gradient-dark {
    background-image: -webkit-linear-gradient(90deg, #ededed 0%, #555 50%, #ededed 100%);
    background-image: -moz-linear-gradient(90deg, #ededed 0%, #555 50%, #ededed 100%);
    background-image: -ms-linear-gradient(90deg, #ededed 0%, #555 50%, #ededed 100%);
    background-image: -o-linear-gradient(90deg, #ededed 0%, #555 50%, #ededed 100%);
    background-image: linear-gradient(90deg, #ededed 0%, #555 50%, #ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='', endColorStr='')
}

.bg-gradient {
    background-color: #ededed;
    background-image: -webkit-gradient(linear, left top, right top, from(#ededed), to(#bf2025));
    background-image: -webkit-linear-gradient(left, #ededed, #bf2025);
    background-image: -moz-linear-gradient(left, #ededed, #bf2025);
    background-image: -ms-linear-gradient(left, #ededed, #bf2025);
    background-image: -o-linear-gradient(left, #ededed, #bf2025);
    background-image: linear-gradient(left, #ededed, #bf2025);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', endColorStr='#bf2025', gradientType='1')
}

.el-middle,
.ct-slider-carousel1 .item--image .image-left,
.ct-slider-carousel1 .item--image .image-center,
.ct-slider-carousel1 .item--image .image-right {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.text-gradient,
.ct-showcase1 .ct-showcase-coming,
.text-gradient2 {
    background-color: #bf2025;
    background-image: -webkit-gradient(linear, left top, right top, from(#bf2025), to(#ededed));
    background-image: -webkit-linear-gradient(left, #bf2025, #ededed);
    background-image: -moz-linear-gradient(left, #bf2025, #ededed);
    background-image: -ms-linear-gradient(left, #bf2025, #ededed);
    background-image: -o-linear-gradient(left, #bf2025, #ededed);
    background-image: linear-gradient(left, #bf2025, #ededed);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#bf2025', endColorStr='#ededed', gradientType='1');
    background-color: initial;
    background-clip: text;
    -o-background-clip: text;
    -ms-background-clip: text;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent
}

.ct-text-gradient .elementor-text-editor {
    display: inline-block;
    color: #bf2025;
    text-shadow: 0 8px 29px rgba(209, 101, 39, .3)
}

.tp-bullets.bullets_custom1 .tp-bullet {
    width: 25px;
    height: 6px;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.tp-bullets.bullets_custom1 .tp-bullet.selected {
    background-color: #bf2025
}

.tparrows.arrows_custom1 {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: initial
}

.tparrows.arrows_custom1:before {
    color: rgba(255, 255, 255, .5);
    line-height: 1;
    font-size: 60px;
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.tparrows.arrows_custom1:hover {
    background-color: initial
}

.tparrows.arrows_custom1:hover:before {
    color: #bf2025
}

.tparrows.arrows_custom1.tp-leftarrow:before {
    content: '\e91f'
}

.tparrows.arrows_custom1.tp-rightarrow:before {
    content: '\e92c'
}

.btn-video-slide i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 28px;
    background-color: #fff;
    color: #bf2025;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.btn-video-slide:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #bf2025;
    border-radius: 50%;
    animation: pulse-border2 1e3ms ease-out infinite;
    z-index: -2
}

.btn-video-slide:hover i {
    color: #ededed
}

@media screen and (max-width:767px) {
    .btn-video-slide {
        display: none !important
    }
}

.elementor-widget-wrap>.elementor-element.el-inline {
    width: auto;
    display: inline-block;
    float: left
}

.bg-image,
.ct-banner.layout5 .ct-banner-overlay {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat
}

.screen-reader-text {
    display: none
}

#content[tabindex="-1"]:focus {
    outline: 0
}

.bg-overlay {
    position: relative
}

.bg-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    display: block
}

.el-overlay,
.smoke-canvas,
.ct-banner.layout5 .ct-banner-image,
.ct-banner.layout5 .ct-banner-overlay,
.ct-slider-carousel3 .ct-item--particle .item--dot:after,
.ct-slider-carousel4 .image-overlay,
.ct-slider-carousel5 .item--image,
.ct-slider-carousel5 .image-overlay,
.ct-image-box1 .item--inner:before,
.ct-image-box1 .canvas,
.ct-image-box1 .image-back,
.ct-image-box1 .map,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.remove:after,
.ct-fancy-box-grid1 .item--overlay,
.ct-fancy-box-grid1 .item--image,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.bg-primary {
    background-color: #bf2025 !important
}

.bg-primary .ct-contact-form-layout1.style1 .wpcf7-form-control.wpcf7-submit {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.bg-primary .ct-contact-form-layout1.style1 .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #fff;
    color: #ededed
}

.bg-primary .ct-contact-form-layout1.style3 .wpcf7-form-control.wpcf7-submit {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.bg-primary .ct-contact-form-layout1.style3 .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #fff;
    color: #ededed
}

.bg-primary2 {
    background-color: #161616
}

.bg-primary2 .ct-contact-form-layout1.style1 .wpcf7-form-control.wpcf7-submit {
    background-color: #bf2025
}

.bg-primary2 .ct-contact-form-layout1.style1 .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #fff;
    color: #ededed
}

.bg-primary2 .ct-contact-form-layout1.style1 .nice-select:after,
.bg-primary2 .ct-contact-form-layout1.style1 .select2 .select2-selection--single .select2-selection__arrow:after,
.select2 .select2-selection--single .bg-primary2 .ct-contact-form-layout1.style1 .select2-selection__arrow:after {
    color: rgba(255, 255, 255, .6)
}

.bg-primary2 h5 {
    color: #fff;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 25px
}

.bg-primary2 ul.menu li {
    -webkit-transition: all 300ms linear 100ms;
    -khtml-transition: all 300ms linear 100ms;
    -moz-transition: all 300ms linear 100ms;
    -ms-transition: all 300ms linear 100ms;
    -o-transition: all 300ms linear 100ms;
    transition: all 300ms linear 100ms
}

.bg-primary2 ul.menu li+li {
    margin-top: 10px
}

.bg-primary2 ul.menu li a {
    color: #fff;
    display: block;
    padding-left: 20px;
    position: relative
}

.bg-primary2 ul.menu li a:before {
    content: "\f104";
    font-family: Grandicon;
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 10px;
    color: #fff
}

.bg-primary2 ul.menu li:hover {
    padding-left: 5px
}

.site-overlay {
    position: fixed;
    z-index: -1;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .25s cubic-bezier(.39, .575, .565, 1)0s;
    -khtml-transition: all .25s cubic-bezier(.39, .575, .565, 1)0s;
    -moz-transition: all .25s cubic-bezier(.39, .575, .565, 1)0s;
    -ms-transition: all .25s cubic-bezier(.39, .575, .565, 1)0s;
    -o-transition: all .25s cubic-bezier(.39, .575, .565, 1)0s;
    transition: all .25s cubic-bezier(.39, .575, .565, 1)0s;
    cursor: url(../img/pointer.png), auto
}

.site-overlay.open {
    z-index: 9990;
    opacity: 1;
    visibility: visible
}

.row-visible {
    overflow: visible !important
}

.ct-inline {
    display: inline-block;
    width: auto !important
}

.ct-icon-plus {
    height: 16px;
    width: 16px;
    position: relative;
    display: inline-block
}

.ct-icon-plus:before,
.ct-icon-plus:after {
    content: "";
    background-color: #fff;
    position: absolute;
    -webkit-transition: all 240ms linear 0ms;
    -khtml-transition: all 240ms linear 0ms;
    -moz-transition: all 240ms linear 0ms;
    -ms-transition: all 240ms linear 0ms;
    -o-transition: all 240ms linear 0ms;
    transition: all 240ms linear 0ms;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px
}

.ct-icon-plus:before {
    width: 100%;
    height: 2px;
    top: 7px;
    left: 0
}

.ct-icon-plus:after {
    width: 2px;
    height: 100%;
    left: 7px;
    top: 0
}

.title--highlight {
    color: #bf2025
}

.overlay-gradient {
    position: relative;
    overflow: hidden;
    display: block
}

.overlay-gradient:before,
.overlay-gradient:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.overlay-gradient:before {
    z-index: 2;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#000));
    background-image: -webkit-linear-gradient(bottom, #ededed, #000);
    background-image: -moz-linear-gradient(bottom, #ededed, #000);
    background-image: -ms-linear-gradient(bottom, #ededed, #000);
    background-image: -o-linear-gradient(bottom, #ededed, #000);
    background-image: linear-gradient(bottom, #ededed, #000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', endColorStr='rgba(0, 0, 0, )')
}

.overlay-gradient:after {
    background-color: #ededed;
    opacity: .3;
    z-index: 1
}

.inline-block {
    display: inline-block;
    vertical-align: middle
}

.text-right,
.align-right {
    text-align: right
}

.text-left,
.align-left {
    text-align: left
}

.text-center,
.align-center {
    text-align: center
}

.align-justified {
    width: 100%
}

.ct-ov-hidden {
    overflow: hidden
}

@media screen and (min-width:992px) {
    .text-left-lg {
        text-align: left !important
    }

    .text-right-lg {
        text-align: right !important
    }

    .text-center-lg {
        text-align: center !important
    }
}

@media screen and (max-width:1199px) {
    .align-center-md {
        text-align: center
    }

    .align-left-md {
        text-align: left
    }

    .align-right-md {
        text-align: right
    }

    .align-justified-md {
        width: 100%
    }
}

@media screen and (max-width:991px) {
    .text-center-md {
        text-align: center !important
    }

    .text-left-md {
        text-align: left !important
    }

    .text-right-md {
        text-align: right !important
    }

    .align-center-sm {
        text-align: center
    }

    .align-left-sm {
        text-align: left
    }

    .align-right-sm {
        text-align: right
    }

    .align-justified-sm {
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .order1 {
        order: 1
    }

    .order2 {
        order: 2
    }

    .order3 {
        order: 3
    }

    .text-center-sm {
        text-align: center !important
    }

    .text-left-sm {
        text-align: left !important
    }

    .text-right-sm {
        text-align: right !important
    }

    .align-center-xs {
        text-align: center
    }

    .align-left-xs {
        text-align: left
    }

    .align-right-xs {
        text-align: right
    }

    .align-justified-xs {
        width: 100%
    }
}

@media screen and (min-width:992px) {
    .grid-item.col-xl-col4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .grid-item.col-xl-col8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }
}

@media screen and (min-width:1400px) {
    .padding-left-right-70 .elementor-widget-wrap {
        padding-left: 70px;
        padding-right: 70px
    }
}

@media(max-width:1399px) {
    .padding-left-right-70 .elementor-widget-wrap {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media screen and (min-width:1400px) {
    .section-padding-right-70 .elementor-column-gap-no {
        padding-right: 70px
    }
}

@media(max-width:1399px) {
    .section-padding-right-70 .elementor-column-gap-no {
        padding-right: 15px;
        padding-left: 15px
    }
}

.blog-list-scroll .ct-grid-inner {
    overflow: hidden
}

.ct-portfolio-grid1.ct-grid-direction .in-top .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .in-top .entry-feature:before,
.ct-team-grid1.ct-grid-direction .in-top .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .in-top .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .in-top .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .in-top .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .in-top .item--featured:before,
.ct-team-grid1.ct-grid-direction .in-top .item--featured:before,
.ct-service-carousel2.ct-grid-direction .in-top .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .in-top .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .in-top .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .in-top .item--inner:before,
.ct-team-grid1.ct-grid-direction .in-top .item--inner:before,
.ct-service-carousel2.ct-grid-direction .in-top .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .in-top .item--inner:before {
    -webkit-animation: in-top-fade .3s ease 0ms 1 forwards;
    animation: in-top-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .out-top .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .out-top .entry-feature:before,
.ct-team-grid1.ct-grid-direction .out-top .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .out-top .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .out-top .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .out-top .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .out-top .item--featured:before,
.ct-team-grid1.ct-grid-direction .out-top .item--featured:before,
.ct-service-carousel2.ct-grid-direction .out-top .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .out-top .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .out-top .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .out-top .item--inner:before,
.ct-team-grid1.ct-grid-direction .out-top .item--inner:before,
.ct-service-carousel2.ct-grid-direction .out-top .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .out-top .item--inner:before {
    -webkit-animation: out-top-fade .3s ease 0ms 1 forwards;
    animation: out-top-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .in-bottom .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .in-bottom .entry-feature:before,
.ct-team-grid1.ct-grid-direction .in-bottom .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .in-bottom .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .in-bottom .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .in-bottom .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .in-bottom .item--featured:before,
.ct-team-grid1.ct-grid-direction .in-bottom .item--featured:before,
.ct-service-carousel2.ct-grid-direction .in-bottom .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .in-bottom .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .in-bottom .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .in-bottom .item--inner:before,
.ct-team-grid1.ct-grid-direction .in-bottom .item--inner:before,
.ct-service-carousel2.ct-grid-direction .in-bottom .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .in-bottom .item--inner:before {
    -webkit-animation: in-top-fade .3s ease 0ms 1 forwards;
    animation: in-top-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .out-bottom .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .out-bottom .entry-feature:before,
.ct-team-grid1.ct-grid-direction .out-bottom .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .out-bottom .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .out-bottom .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .out-bottom .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .out-bottom .item--featured:before,
.ct-team-grid1.ct-grid-direction .out-bottom .item--featured:before,
.ct-service-carousel2.ct-grid-direction .out-bottom .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .out-bottom .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .out-bottom .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .out-bottom .item--inner:before,
.ct-team-grid1.ct-grid-direction .out-bottom .item--inner:before,
.ct-service-carousel2.ct-grid-direction .out-bottom .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .out-bottom .item--inner:before {
    -webkit-animation: out-top-fade .3s ease 0ms 1 forwards;
    animation: out-top-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .in-left .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .in-left .entry-feature:before,
.ct-team-grid1.ct-grid-direction .in-left .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .in-left .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .in-left .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .in-left .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .in-left .item--featured:before,
.ct-team-grid1.ct-grid-direction .in-left .item--featured:before,
.ct-service-carousel2.ct-grid-direction .in-left .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .in-left .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .in-left .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .in-left .item--inner:before,
.ct-team-grid1.ct-grid-direction .in-left .item--inner:before,
.ct-service-carousel2.ct-grid-direction .in-left .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .in-left .item--inner:before {
    -webkit-animation: in-left-fade .3s ease 0ms 1 forwards;
    animation: in-left-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .out-left .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .out-left .entry-feature:before,
.ct-team-grid1.ct-grid-direction .out-left .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .out-left .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .out-left .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .out-left .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .out-left .item--featured:before,
.ct-team-grid1.ct-grid-direction .out-left .item--featured:before,
.ct-service-carousel2.ct-grid-direction .out-left .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .out-left .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .out-left .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .out-left .item--inner:before,
.ct-team-grid1.ct-grid-direction .out-left .item--inner:before,
.ct-service-carousel2.ct-grid-direction .out-left .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .out-left .item--inner:before {
    -webkit-animation: out-left-fade .3s ease 0ms 1 forwards;
    animation: out-left-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .in-right .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .in-right .entry-feature:before,
.ct-team-grid1.ct-grid-direction .in-right .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .in-right .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .in-right .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .in-right .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .in-right .item--featured:before,
.ct-team-grid1.ct-grid-direction .in-right .item--featured:before,
.ct-service-carousel2.ct-grid-direction .in-right .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .in-right .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .in-right .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .in-right .item--inner:before,
.ct-team-grid1.ct-grid-direction .in-right .item--inner:before,
.ct-service-carousel2.ct-grid-direction .in-right .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .in-right .item--inner:before {
    -webkit-animation: in-right-fade .3s ease 0ms 1 forwards;
    animation: in-right-fade .3s ease 0ms 1 forwards
}

.ct-portfolio-grid1.ct-grid-direction .out-right .entry-feature:before,
.ct-portfolio-carousel1.ct-grid-direction .out-right .entry-feature:before,
.ct-team-grid1.ct-grid-direction .out-right .entry-feature:before,
.ct-service-carousel2.ct-grid-direction .out-right .entry-feature:before,
.ct-fancy-box-grid1.ct-grid-direction .out-right .entry-feature:before,
.ct-portfolio-grid1.ct-grid-direction .out-right .item--featured:before,
.ct-portfolio-carousel1.ct-grid-direction .out-right .item--featured:before,
.ct-team-grid1.ct-grid-direction .out-right .item--featured:before,
.ct-service-carousel2.ct-grid-direction .out-right .item--featured:before,
.ct-fancy-box-grid1.ct-grid-direction .out-right .item--featured:before,
.ct-portfolio-grid1.ct-grid-direction .out-right .item--inner:before,
.ct-portfolio-carousel1.ct-grid-direction .out-right .item--inner:before,
.ct-team-grid1.ct-grid-direction .out-right .item--inner:before,
.ct-service-carousel2.ct-grid-direction .out-right .item--inner:before,
.ct-fancy-box-grid1.ct-grid-direction .out-right .item--inner:before {
    -webkit-animation: out-right-fade .3s ease 0ms 1 forwards;
    animation: out-right-fade .3s ease 0ms 1 forwards
}

.icon-bg {
    display: none
}

.pd-mb,
.ct-contact-info.ct-contact-info2,
.ct-fancy-box-layout1,
.ct-fancy-box-layout2 {
    padding: 38px 40px 44px
}

@media screen and (max-width:991px) {

    .pd-mb,
    .ct-contact-info.ct-contact-info2,
    .ct-fancy-box-layout1,
    .ct-fancy-box-layout2 {
        padding: 38px 30px 44px
    }
}

.widget-sidebar-title,
#secondary .widget .widget-title,
.ct-search-box.layout1 .item--title,
.ct-grid.ct-gallery-grid1 .ct-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 17px
}

@media screen and (max-width:1390px) {
    .slider-pd {
        left: 15px !important
    }
}

.elementor-section .elementor-container {
    flex-wrap: wrap
}

.st-entry-content .item-date,
.single-hentry.archive .entry-body .item-date,
.widget_ct_recent_posts .entry-content .item-date,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date,
.st-entry-content .item-comment,
.single-hentry.archive .entry-body .item-comment,
.widget_ct_recent_posts .entry-content .item-comment,
.ct-blog-grid-layout3 .item--featured .item--holder .item-comment {
    font-size: 14px;
    line-height: 1.4;
    display: inline-block
}

.st-entry-content .item-date+.item-comment,
.single-hentry.archive .entry-body .item-date+.item-comment,
.widget_ct_recent_posts .entry-content .item-date+.item-comment,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date+.item-comment {
    padding-left: 20px
}

.st-entry-content .item-date,
.single-hentry.archive .entry-body .item-date,
.widget_ct_recent_posts .entry-content .item-date,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date,
.st-entry-content .item-comment,
.single-hentry.archive .entry-body .item-comment,
.widget_ct_recent_posts .entry-content .item-comment,
.ct-blog-grid-layout3 .item--featured .item--holder .item-comment {
    color: #ededed
}

.st-entry-content .item-date+.item-comment,
.single-hentry.archive .entry-body .item-date+.item-comment,
.widget_ct_recent_posts .entry-content .item-date+.item-comment,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date+.item-comment,
.st-entry-content .item-date+.item-category,
.single-hentry.archive .entry-body .item-date+.item-category,
.widget_ct_recent_posts .entry-content .item-date+.item-category,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date+.item-category,
.st-entry-content .item-comment+.item-category,
.single-hentry.archive .entry-body .item-comment+.item-category,
.widget_ct_recent_posts .entry-content .item-comment+.item-category,
.ct-blog-grid-layout3 .item--featured .item--holder .item-comment+.item-category {
    position: relative
}

.st-entry-content .item-date+.item-comment:before,
.single-hentry.archive .entry-body .item-date+.item-comment:before,
.widget_ct_recent_posts .entry-content .item-date+.item-comment:before,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date+.item-comment:before,
.st-entry-content .item-date+.item-category:before,
.single-hentry.archive .entry-body .item-date+.item-category:before,
.widget_ct_recent_posts .entry-content .item-date+.item-category:before,
.ct-blog-grid-layout3 .item--featured .item--holder .item-date+.item-category:before,
.st-entry-content .item-comment+.item-category:before,
.single-hentry.archive .entry-body .item-comment+.item-category:before,
.widget_ct_recent_posts .entry-content .item-comment+.item-category:before,
.ct-blog-grid-layout3 .item--featured .item--holder .item-comment+.item-category:before {
    content: "\f45c";
    position: absolute;
    color: #bf2025;
    left: 5px;
    font-size: 5px;
    top: 6px;
    font-weight: 900;
    font-family: "font awesome 5 pro"
}

.title-holder {
    position: absolute;
    left: 0;
    top: -55px;
    width: 100%;
    color: transparent;
    line-height: 1;
    margin-bottom: 0;
    text-stroke-color: #242424;
    -webkit-text-stroke-color: #242424;
    text-stroke-width: 2px;
    -webkit-text-stroke-width: 2px;
    z-index: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

@media screen and (max-width:575px) {
    .title-holder {
        font-size: 40px;
        top: -15px
    }
}

.ct-linet-title,
.ct-pricing.layout2 .ct-pricing-inner .pricing-content .pricing-price {
    position: relative;
    padding-top: 20px
}

.ct-linet-title:before,
.ct-pricing.layout2 .ct-pricing-inner .pricing-content .pricing-price:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background-color: #bf2025
}

.container-custom {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.container-custom .wp-meta {
    position: relative
}

.container-custom .wp-meta .text-title {
    position: relative;
    margin-bottom: 0
}

.container-custom .wp-meta:hover .title-holder {
    -webkit-transform: translateY(-15px);
    -khtml-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px)
}

.container-custom .append-arrows-custom .slick-arrow {
    position: relative;
    font-size: 16px;
    padding: 17.5px 23.5px;
    margin-top: 8px;
    background-color: #bf2025;
    cursor: pointer;
    clip-path: polygon(35% 0, 100% 0, 100% calc(100% - 35%), calc(100% - 35%) 100%, 0 100%, 0 35%)
}

.container-custom .append-arrows-custom .slick-arrow:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #161616;
    clip-path: polygon(35% 0, 100% 0, 100% calc(100% - 35%), calc(100% - 35%) 100%, 0 100%, 0 35%);
    z-index: -1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.container-custom .append-arrows-custom .slick-arrow:before {
    font-weight: 700;
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    -webkit-transition: background-position 200ms ease;
    -khtml-transition: background-position 200ms ease;
    -moz-transition: background-position 200ms ease;
    -ms-transition: background-position 200ms ease;
    -o-transition: background-position 200ms ease;
    transition: background-position 200ms ease
}

.container-custom .append-arrows-custom .slick-arrow.slick-prev:before {
    background-position: -100%
}

.container-custom .append-arrows-custom .slick-arrow.slick-next:before {
    background-position: 100%
}

.container-custom .append-arrows-custom .slick-arrow:hover:before {
    background-position: 0 100%
}

.container-custom .append-arrows-custom .slick-arrow+.slick-arrow {
    margin-left: 40px
}

.container-custom.arrows .wp-meta {
    width: 60%
}

.container-custom.arrows .append-arrows-custom {
    display: flex
}

@media screen and (max-width:767px) {
    .container-custom.arrows .append-arrows-custom .slick-arrow+.slick-arrow {
        margin-left: 30px
    }
}

@media screen and (max-width:480px) {
    .container-custom.arrows .append-arrows-custom .slick-arrow {
        padding: 15px
    }

    .container-custom.arrows .append-arrows-custom .slick-arrow+.slick-arrow {
        margin: 8px 0 0 10px
    }
}

.arrows-center .slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 16px;
    padding: 17.5px 23.5px;
    background-color: #bf2025;
    cursor: pointer;
    opacity: 0;
    clip-path: polygon(35% 0, 100% 0, 100% calc(100% - 35%), calc(100% - 35%) 100%, 0 100%, 0 35%);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.arrows-center .slick-arrow:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #161616;
    clip-path: polygon(35% 0, 100% 0, 100% calc(100% - 35%), calc(100% - 35%) 100%, 0 100%, 0 35%);
    z-index: -1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.arrows-center .slick-arrow:before {
    font-weight: 700;
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    -webkit-transition: background-position 200ms ease;
    -khtml-transition: background-position 200ms ease;
    -moz-transition: background-position 200ms ease;
    -ms-transition: background-position 200ms ease;
    -o-transition: background-position 200ms ease;
    transition: background-position 200ms ease
}

.arrows-center .slick-arrow.slick-prev {
    left: 0
}

@media screen and (min-width:1280px) {
    .arrows-center .slick-arrow.slick-prev {
        left: -30px
    }
}

.arrows-center .slick-arrow.slick-prev:before {
    background-position: -100%
}

.arrows-center .slick-arrow.slick-next {
    right: 0
}

@media screen and (min-width:1280px) {
    .arrows-center .slick-arrow.slick-next {
        right: -30px
    }
}

.arrows-center .slick-arrow.slick-next:before {
    background-position: 100%
}

.arrows-center .slick-arrow:hover {
    opacity: 1
}

.arrows-center .slick-arrow:hover:before {
    background-position: 0 100%;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.border-top-sidebar,
.widget.woocommerce,
.single-hentry.archive,
#secondary .widget,
.ct-grid.ct-gallery-grid1,
.woocommerce .woocommerce-product-inner,
.ct-blog-grid-layout3 .item--featured {
    position: relative
}

.border-top-sidebar:before,
.widget.woocommerce:before,
.single-hentry.archive:before,
#secondary .widget:before,
.ct-grid.ct-gallery-grid1:before,
.woocommerce .woocommerce-product-inner:before,
.ct-blog-grid-layout3 .item--featured:before,
.border-top-sidebar:after,
.widget.woocommerce:after,
.single-hentry.archive:after,
#secondary .widget:after,
.ct-grid.ct-gallery-grid1:after,
.woocommerce .woocommerce-product-inner:after,
.ct-blog-grid-layout3 .item--featured:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #343434;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.border-top-sidebar:after,
.widget.woocommerce:after,
.single-hentry.archive:after,
#secondary .widget:after,
.ct-grid.ct-gallery-grid1:after,
.woocommerce .woocommerce-product-inner:after,
.ct-blog-grid-layout3 .item--featured:after {
    top: -1px;
    border-top: 3px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

.border-top-sidebar:hover:after,
.widget.woocommerce:hover:after,
.single-hentry.archive:hover:after,
#secondary .widget:hover:after,
.ct-grid.ct-gallery-grid1:hover:after,
.woocommerce .woocommerce-product-inner:hover:after,
.ct-blog-grid-layout3 .item--featured:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.border-top-custom,
.single-post .entry-footer .entry-content,
.ct-fancy-box-layout4 .item--meta.style1,
.ct-blog-grid-layout1 .grid-item-inner,
.ct-blog-grid-layout2 .grid-item-inner,
.ct-portfolio-grid2 .item--meta {
    position: relative
}

.border-top-custom:before,
.single-post .entry-footer .entry-content:before,
.ct-fancy-box-layout4 .item--meta.style1:before,
.ct-blog-grid-layout1 .grid-item-inner:before,
.ct-blog-grid-layout2 .grid-item-inner:before,
.ct-portfolio-grid2 .item--meta:before,
.border-top-custom:after,
.single-post .entry-footer .entry-content:after,
.ct-fancy-box-layout4 .item--meta.style1:after,
.ct-blog-grid-layout1 .grid-item-inner:after,
.ct-blog-grid-layout2 .grid-item-inner:after,
.ct-portfolio-grid2 .item--meta:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.border-top-custom:after,
.single-post .entry-footer .entry-content:after,
.ct-fancy-box-layout4 .item--meta.style1:after,
.ct-blog-grid-layout1 .grid-item-inner:after,
.ct-blog-grid-layout2 .grid-item-inner:after,
.ct-portfolio-grid2 .item--meta:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-border-running-top,
.ct-fancy-box-grid1 .item--inner {
    position: relative;
    overflow: hidden
}

.ct-border-running-top:before,
.ct-fancy-box-grid1 .item--inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid #bf2025;
    visibility: hidden;
    z-index: 2;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.text-line {
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical
}

.right-column-sidebar {
    display: none
}

@media screen and (max-width:991px) {
    .right-column-sidebar {
        display: block
    }
}

.ct-text-center {
    width: calc(4.6em * 6.1) !important
}

@media screen and (min-width:1900px) {
    .ct-padding-right {
        padding-right: calc(3em * 4.75) !important
    }
}

@media screen and (min-width:1900px) {
    .ct-padding-left {
        padding-left: calc(3em * 4.75) !important
    }
}

@media screen and (max-width:1199px) {

    .ct-h1-size,
    .ct-heading h1.item--title {
        font-size: 50px
    }
}

@media screen and (max-width:575px) {

    .ct-h1-size,
    .ct-heading h1.item--title {
        font-size: 45px
    }
}

@media screen and (max-width:480px) {

    .ct-h1-size,
    .ct-heading h1.item--title {
        font-size: 35px
    }
}

@media screen and (max-width:575px) {

    .ct-h2-size,
    .container-custom .wp-meta .text-title,
    .ct-related-post .widget-title,
    .ct-heading h2.item--title,
    .ct-video.ct-video-player1 .ct-video-box .ct-video-content .ct-video-description,
    .ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-title,
    .ct-pricing.layout1 .ct-pricing-inner .pricing-header .pricing-price,
    .ct-pricing.layout2 .ct-pricing-inner .pricing-content .pricing-price,
    .ct-banner-carousel1 .item-inner .item--title,
    .ct-slider-carousel2 .left--title,
    .ct-tabs1 .ct-tabs-heading .item--title,
    .ct-tabs2 .ct-tabs-heading .item--title,
    .no-results.not-found .page-title,
    .single-product section.related h2,
    .woocommerce-tabs-custom .woocommerce-content .text-title,
    .ct-counter-layout4 .ct-counter-number-value,
    .ct-counter-layout4 .ct-counter-number-suffix,
    .ct-counter-layout4 .ct-counter-number-prefix,
    .ct-portfolio-carousel1 .wp-meta .text-title,
    .ct-portfolio-carousel1 .entry-feature .text-title {
        font-size: 38px
    }
}

@media screen and (max-width:480px) {

    .ct-h2-size,
    .container-custom .wp-meta .text-title,
    .ct-related-post .widget-title,
    .ct-heading h2.item--title,
    .ct-video.ct-video-player1 .ct-video-box .ct-video-content .ct-video-description,
    .ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-title,
    .ct-pricing.layout1 .ct-pricing-inner .pricing-header .pricing-price,
    .ct-pricing.layout2 .ct-pricing-inner .pricing-content .pricing-price,
    .ct-banner-carousel1 .item-inner .item--title,
    .ct-slider-carousel2 .left--title,
    .ct-tabs1 .ct-tabs-heading .item--title,
    .ct-tabs2 .ct-tabs-heading .item--title,
    .no-results.not-found .page-title,
    .single-product section.related h2,
    .woocommerce-tabs-custom .woocommerce-content .text-title,
    .ct-counter-layout4 .ct-counter-number-value,
    .ct-counter-layout4 .ct-counter-number-suffix,
    .ct-counter-layout4 .ct-counter-number-prefix,
    .ct-portfolio-carousel1 .wp-meta .text-title,
    .ct-portfolio-carousel1 .entry-feature .text-title {
        font-size: 28px
    }
}

@media screen and (max-width:991px) {

    .ct-h4-size,
    .ct-pricing.layout2 .ct-pricing-inner .pricing-header .pricing-title,
    .ct-banner.layout5 .ct-banner-title,
    .ct-service-carousel2 .item-title {
        font-size: 25px
    }
}

.ct-text-16,
.ct-list.style-7 .ct-list-content,
.ct-accordion.layout1.style2 .ct-ac-content,
.ct-banner.layout5 .ct-banner-description,
.ct-picklist2 .list--meta .list--inner .list--content span,
.ct-slider-carousel3 .ct-item--particle .item--content,
.ct-fancy-box-layout4 .item--meta.style1 .item--description-1,
.ct-fancy-box-grid1 .item--description-1,
.ct-service-carousel2 .item-excerpt,
.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--description-1,
.ct-portfolio-grid2 .item--meta .item--excerpt,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-excerpt {
    font-size: 16px;
    line-height: 1.375;
    color: #000000bb;
}

@media screen and (max-width:991px) {
    .ct-reverse-column>.elementor-container {
        flex-direction: column-reverse !important
    }
}

.ct-shop-sidebar,
.widget.woocommerce {
    padding: 29px 0 40px
}

.ct-shop-sidebar .widget-title,
.widget.woocommerce .widget-title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 17px
}

.ct-shop-sidebar.widget_product_tag_cloud,
.widget.woocommerce.widget_product_tag_cloud {
    padding: 29px 0 15px
}

.ct-group-slider .ct-slider-content {
    position: relative;
    width: fit-content;
    padding: 21px 0
}

.ct-group-slider .ct-slider-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    border-top: 1px solid #bf2025;
    width: 80px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-group-slider .ct-slider-content span:before,
.ct-group-slider .ct-slider-content span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 80px;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear .2s;
    -khtml-transition: all 200ms linear .2s;
    -moz-transition: all 200ms linear .2s;
    -ms-transition: all 200ms linear .2s;
    -o-transition: all 200ms linear .2s;
    transition: all 200ms linear .2s
}

.ct-group-slider .ct-slider-content span:before {
    top: -2px
}

.ct-group-slider .ct-slider-content span:after {
    top: 0
}

.ct-group-slider .ct-slider-content:hover:before {
    width: 100%;
    -webkit-transition: all 200ms linear .2s;
    -khtml-transition: all 200ms linear .2s;
    -moz-transition: all 200ms linear .2s;
    -ms-transition: all 200ms linear .2s;
    -o-transition: all 200ms linear .2s;
    transition: all 200ms linear .2s
}

.ct-group-slider .ct-slider-content:hover span:before,
.ct-group-slider .ct-slider-content:hover span:after {
    width: 100%;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-image-rotate img,
.ct-slider-carousel1 .item--image .image-center img {
    -webkit-animation: ctspinsvg 5s linear infinite;
    -khtml-animation: ctspinsvg 5s linear infinite;
    -moz-animation: ctspinsvg 5s linear infinite;
    -ms-animation: ctspinsvg 5s linear infinite;
    -o-animation: ctspinsvg 5s linear infinite;
    animation: ctspinsvg 5s linear infinite
}

.ct-slider-imghover .ct-slider-imglight img {
    opacity: 0;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-slider-imghover:hover .ct-slider-imglight img {
    opacity: 1
}

@media screen and (max-width:777px) {
    .ct-slider-imghover .ct-slider-imgcenter img {
        -webkit-filter: brightness(60%);
        -khtml-filter: brightness(60%);
        -moz-filter: brightness(60%);
        -ms-filter: brightness(60%);
        -o-filter: brightness(60%);
        filter: brightness(60%)
    }
}

@media screen and (max-width:767px) {
    .ct-slider-imghover {
        margin: 15px 0
    }
}

.smoke-canvas {
    mix-blend-mode: exclusion;
    pointer-events: none
}

@media screen and (min-width:480px) and (max-width:777px) {
    .ct-slider-points {
        height: 514px
    }
}

@media screen and (max-width:479px) {
    .ct-slider-points {
        height: 520px
    }
}

.ct-header-onepage .ct-main-menu>.menu-item {
    padding-bottom: 30px
}

@media screen and (min-width:1200px) and (max-width:1800px) {
    .ct-models-full .ct-models-column {
        width: 100% !important
    }

    .ct-models-full .ct-models-column .ct-heading {
        text-align: center
    }

    .ct-models-full .ct-models-column.column-1>.elementor-element-populated {
        padding: 40px 0 0 !important;
        margin-left: 0
    }

    .ct-models-full .ct-models-column.column-1 .elementor-widget-container {
        margin-bottom: 0 !important
    }

    .ct-models-full .ct-models-column.column-2>.elementor-element-populated {
        padding: 28px 15px 47px !important;
        margin-left: 0 !important
    }
}

.ct-slide-textlist rs-layer {
    display: flex !important;
    place-items: center
}

.ct-slide-textlist rs-layer:before {
    content: '\f45c';
    font-family: "font awesome 5 free";
    font-size: 8px;
    line-height: 1;
    color: #bf2025;
    margin-right: 10px;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%, 20% 0)
}

.ct-slider-particle {
    -webkit-animation: cthidden 8s infinite both;
    -khtml-animation: cthidden 8s infinite both;
    -moz-animation: cthidden 8s infinite both;
    -ms-animation: cthidden 8s infinite both;
    -o-animation: cthidden 8s infinite both;
    animation: cthidden 8s infinite both
}

.ct-slider-particle.particle-child1 {
    animation-delay: 1s
}

.ct-slider-particle.particle-child2 {
    animation-delay: 2s
}

.ct-slider-particle.particle-child3 {
    animation-delay: 3s
}

.ct-slider-particle.particle-child4 {
    animation-delay: 4s
}

.ct-slider-particle.particle-child5 {
    animation-delay: 5s
}

.ct-slider-bounce img {
    -webkit-animation: bounce-1 8s linear infinite;
    -khtml-animation: bounce-1 8s linear infinite;
    -moz-animation: bounce-1 8s linear infinite;
    -ms-animation: bounce-1 8s linear infinite;
    -o-animation: bounce-1 8s linear infinite;
    animation: bounce-1 8s linear infinite
}

@media screen and (min-width:1200px) and (max-width:1360px) {
    .ct-slider-home3 {
        height: 780px
    }
}

@media screen and (min-width:1024px) and (max-width:1199px) {
    .ct-slider-home3 {
        height: 780px
    }

    .ct-slider-home3 .ct-group-1 {
        top: 180px !important
    }

    .ct-slider-home3 .ct-group-2 {
        top: 177px !important
    }
}

@media screen and (min-width:1200px) and (max-width:1390px) {
    .ct-margin-left-0>.elementor-element-populated {
        padding-left: 15px !important
    }
}

.ct-active-border:hover .ct-heading .item--title.st-style1:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

@media(min-width:1200px) and (max-width:1400px) {
    .ct-fancy-box-4-pd25 .item--inner {
        margin: 0 -25px !important
    }

    .ct-fancy-box-4-pd25 .item--inner .item--meta {
        margin: 0 25px !important
    }
}

@media screen and (width:1200px) {
    .ct-pd-offsetld {
        padding-left: 15px !important
    }
}

@media screen and (width:1200px) {
    .ct-pd-offsetld2>.elementor-element-populated {
        padding-left: 10px !important
    }
}

@media screen and (max-width:777px) {

    .ct-ld-button .ct-button-wrapper .btn,
    .ct-ld-button .ct-button-wrapper input[type=submit],
    .ct-ld-button .ct-button-wrapper .btn-form button[type=submit],
    .btn-form .ct-ld-button .ct-button-wrapper button[type=submit] {
        padding: 6px 30px 5.5px !important
    }
}

.ct-heading-inb .item--title {
    display: inline-block
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input::-o-placeholder,
textarea::-o-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input::-ms-placeholder,
textarea::-ms-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select,
.nice-select {
    border: none;
    color: #ededed;
    background-color: initial;
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.923;
    font-weight: 400;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    width: 100%;
    outline: none;
    transition: all .2s ease-out
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus,
.nice-select:focus {
    transition: all .2s ease-out;
    outline: 0;
    border-color: #bf2025
}

input[type=range] {
    padding: 0;
    background-color: initial;
    height: auto;
    border: none
}

select {
    height: 50px
}

textarea {
    height: 150px
}

.wp-row-ctf7.contact-form-custom1 .input-contact+.input-contact {
    padding-top: 50px
}

@media screen and (max-width:991px) {
    .wp-row-ctf7.contact-form-custom1 .input-contact+.input-contact {
        padding-top: 0
    }
}

.wp-row-ctf7.contact-form-custom1 .input-filled label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: chakra petch, sans-serif
}

.wp-row-ctf7.contact-form-custom1 .input-recaptcha .recaptcha {
    padding: 30px 0 30px
}

@media screen and (max-width:991px) {
    .wp-row-ctf7.contact-form-custom1 .input-recaptcha .recaptcha {
        padding: 37px 0 38px
    }
}

.wp-row-ctf7.contact-form-custom1 .buttom-contact7 {
    padding-top: 10px
}

.wp-row-ctf7.contact-form-custom1 .buttom-contact7 .btn-form button {
    padding: 17px 40px 16px !important
}

@media screen and (max-width:991px) {
    .wp-row-ctf7.contact-form-custom1 .buttom-contact7 {
        padding-top: 60px
    }
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: none
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
    border-color: #bf2025 !important
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
    padding: 0 !important;
    font-size: 14px;
    color: #000;
    height: 39px;
    border-bottom: 1px solid #343434
}

.wpcf7-form .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: #bf2025 !important
}

.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
    height: 150px
}

.wpcf7-form .wpcf7-response-output {
    border: 1px solid #dadce1;
    padding: 10px 22px !important;
    margin: 57px 0 0 !important;
    font-size: 18px;
    line-height: normal;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase
}

.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #398f14
}

.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
    color: #f13c3c
}

@media screen and (max-width:991px) {
    .wpcf7-form .wpcf7-response-output {
        margin: 37px 0 0 !important
    }
}

@media screen and (max-width:767px) {
    .wpcf7-form .wpcf7-response-output {
        font-size: 16px
    }
}

.wpcf7-form .ajax-loader {
    display: none !important
}

.wpcf7-form .wpcf7-menu select {
    background-color: initial;
    -webkit-appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    z-index: 99
}

.wpcf7-form .wpcf7-menu select option {
    padding: 5px
}

.wpcf7-form.submitting .wpcf7-submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.wpcf7-form.submitting .wpcf7-submit:after {
    content: '';
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border-color: transparent #000 transparent #000;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: ctspin .6s infinite linear;
    -webkit-animation: ctspin .6s infinite linear;
    box-sizing: border-box;
    z-index: 2
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.nice-select:hover,
.nice-select:active,
.niceopen,
.nice-select:focus {
    border-color: #bf2025 !important
}

.select2 .select2-selection--single {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: 1px solid #e7e8e9;
    height: 47px
}

.select2 .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
    line-height: 47px
}

.select2 .select2-selection--single .select2-selection__arrow {
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.select2 .select2-selection--single .select2-selection__arrow b {
    display: none
}

.select2.select2-container--open .select2-selection__arrow:after {
    -webkit-transform: rotate(-135deg) !important;
    -khtml-transform: rotate(-135deg) !important;
    -moz-transform: rotate(-135deg) !important;
    -ms-transform: rotate(-135deg) !important;
    -o-transform: rotate(-135deg) !important;
    transform: rotate(-135deg) !important
}

form .select2-container--default {
    width: 100% !important
}

form .select2-container--default .select2-selection {
    border: 1px solid #ededed;
    height: 47px
}

form .select2-container--default .select2-selection .select2-selection__rendered {
    line-height: 47px;
    padding-left: 15px
}

form .select2-container--default .select2-selection .select2-selection__arrow {
    right: 0;
    top: 50%;
    color: #8f8f8f
}

form .select2-container--default .select2-selection .select2-selection__clear {
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 30px;
    text-align: center;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 20px;
    color: #8f8f8f
}

form .select2-container--default .select2-selection .select2-selection__placeholder {
    color: #c6c6c6
}

.select2-container.select2-container--open .select2-dropdown {
    border: 2px solid #242424;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.select2-container.select2-container--open .select2-dropdown .select2-search--dropdown {
    background-color: #121212
}

.select2-container.select2-container--open .select2-dropdown .select2-search--dropdown .select2-search__field {
    border: 1px solid #ededed;
    border-width: 0 0 1px
}

.select2-container.select2-container--open .select2-results .select2-results__options {
    background-color: #121212
}

.select2-container.select2-container--open .select2-results .select2-results__option[data-selected=true] {
    background-color: #704020
}

.select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
    background-color: #bf2025
}

.nice-select {
    position: relative;
    overflow: visible !important
}

.nice-select:after,
.select2 .select2-selection--single .select2-selection__arrow:after {
    content: '';
    display: block;
    border-bottom: 2px solid #ededed;
    border-right: 2px solid #ededed;
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 25px;
    top: 50%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .15s ease-in-out;
    -khtml-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out
}

.nice-select span.current {
    color: #ededed;
    float: left
}

.nice-select .list {
    position: absolute;
    margin-top: 35px;
    display: none;
    z-index: 10
}

.nice-select .option {
    padding: 0 25px !important;
    line-height: 50px;
    border-bottom: 1px solid rgba(248, 246, 247, .1) !important;
    cursor: pointer;
    list-style: none;
    min-height: 43px;
    outline: none;
    text-align: left;
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.nice-select:focus {
    border-color: #bf2025
}

.nice-select.open:after,
.select2 .select2-selection--single .select2-selection__arrow:after.open {
    border-color: #bf2025;
    -webkit-transform: rotate(-135deg);
    -khtml-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.niceopen:after {
    border-color: #bf2025;
    -webkit-transform: rotate(-135deg);
    -khtml-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.niceopen .list {
    display: block;
    background-color: #161616;
    width: 100%;
    color: #fff;
    margin-left: 0 !important;
    margin-top: 41px;
    overflow: hidden;
    max-height: 350px;
    border: 2px solid #ededed
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: #bf2025;
    background-color: initial
}

.nice-select .option.selected.focus {
    font-weight: 700
}

.nice-select:not(.cdpp-input-c):not(.cdp-select-padding):not(.cdp-redirect-select):not(.cdp-cool-select):not(.cdp-redirect-select2):not(.cdp-modal-select):not(.cdp-tooltip-select):not(.cdp-per-page-select-show) .list,
.cdp-sel-separat .list {
    left: 0 !important;
    margin-left: 0 !important
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .niceopen .list {
    display: block
}

#ui-datepicker-div {
    background-color: #fff;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    position: absolute;
    top: -9999px;
    min-width: 242px;
    z-index: 10001 !important
}

#ui-datepicker-div .ui-datepicker-header {
    position: relative
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    background-color: #161616;
    top: 10px;
    padding: 0
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:before {
    font-family: grandicon;
    color: #fff;
    font-size: 16px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:hover:before {
    color: #bf2025
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
    display: none
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
    left: 10px
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev:before {
    content: "\f103"
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
    right: 10px
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next:before {
    content: "\f104"
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px;
    min-height: 40px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    padding: 10px;
    background-color: #bf2025;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-family: chakra petch, sans-serif
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1
}

#ui-datepicker-div .ui-datepicker-calendar {
    margin: 0;
    width: 100%
}

#ui-datepicker-div .ui-datepicker-calendar th {
    text-align: center
}

#ui-datepicker-div .ui-datepicker-calendar td {
    text-align: center;
    padding: 6px;
    color: rgba(0, 0, 0, .6)
}

#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled {
    color: rgba(0, 0, 0, .2)
}

#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-today a {
    color: #bf2025
}

#ui-datepicker-div .ui-datepicker-calendar td a {
    color: #999
}

#ui-datepicker-div .ui-datepicker-calendar td a:hover {
    color: #bf2025
}

.btn,
input[type=submit],
.btn-form button[type=submit],
button,
.button {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 0;
    z-index: 1
}

.btn:hover,
input[type=submit]:hover,
.btn-form button[type=submit]:hover,
button:hover,
.button:hover,
.btn:focus,
input[type=submit]:focus,
.btn-form button[type=submit]:focus,
button:focus,
.button:focus,
.btn:active,
input[type=submit]:active,
.btn-form button[type=submit]:active,
button:active,
.button:active,
.btn:not([disabled]):not(.disabled).active,
input[type=submit]:not([disabled]):not(.disabled).active,
.btn-form button[type=submit]:not([disabled]):not(.disabled).active,
button:not([disabled]):not(.disabled).active,
.button:not([disabled]):not(.disabled).active,
.btn:not([disabled]):not(.disabled):active,
input[type=submit]:not([disabled]):not(.disabled):active,
.btn-form button[type=submit]:not([disabled]):not(.disabled):active,
button:not([disabled]):not(.disabled):active,
.button:not([disabled]):not(.disabled):active {
    outline: none;
    text-decoration: none;
    box-shadow: none
}

.btn [class*=grandicon-],
input[type=submit] [class*=grandicon-],
.btn-form button[type=submit] [class*=grandicon-],
button [class*=grandicon-],
.button [class*=grandicon-],
.btn [class^=grandicon-],
input[type=submit] [class^=grandicon-],
.btn-form button[type=submit] [class^=grandicon-],
button [class^=grandicon-],
.button [class^=grandicon-] {
    font-size: 11px
}

.btn .ct-align-icon-right,
input[type=submit] .ct-align-icon-right,
.btn-form button[type=submit] .ct-align-icon-right,
button .ct-align-icon-right,
.button .ct-align-icon-right {
    float: right;
    margin-left: 6px
}

.btn i,
input[type=submit] i,
.btn-form button[type=submit] i,
button i,
.button i {
    display: inline-flex
}

.btn i.space-left,
input[type=submit] i.space-left,
.btn-form button[type=submit] i.space-left,
button i.space-left,
.button i.space-left {
    margin-left: 6px
}

.btn i.space-right,
input[type=submit] i.space-right,
.btn-form button[type=submit] i.space-right,
button i.space-right,
.button i.space-right {
    margin-right: 6px
}

input[type=submit],
.btn-form button[type=submit] {
    min-width: 180px;
    padding: 15px 37px;
    background-color: #bf2025;
    border: 2px solid #bf2025;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px)
}

input[type=submit]:hover,
.btn-form button[type=submit]:hover,
input[type=submit]:focus,
.btn-form button[type=submit]:focus,
input[type=submit]:active,
.btn-form button[type=submit]:active {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

@media screen and (max-width:777px) {

    input[type=submit],
    .btn-form button[type=submit] {
        padding: 13px 30px 10px
    }
}

.btn.btn-style1,
input[type=submit].btn-style1,
.btn-form button[type=submit].btn-style1 {
    line-height: 1.1em;
    background-color: initial;
    padding: 10px 30px;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    overflow: hidden
}

.btn.btn-style1:before,
input[type=submit].btn-style1:before,
.btn-form button[type=submit].btn-style1:before {
    position: absolute;
    background: #bf2025;
    content: '';
    inset: 0;
    overflow: hidden;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: transform .3s ease-in-out;
    -khtml-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
    -ms-transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    z-index: -1
}

.btn.btn-style1:after,
input[type=submit].btn-style1:after,
.btn-form button[type=submit].btn-style1:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #bf2025
}

.btn.btn-style1:hover,
input[type=submit].btn-style1:hover,
.btn-form button[type=submit].btn-style1:hover,
.btn.btn-style1:focus,
input[type=submit].btn-style1:focus,
.btn-form button[type=submit].btn-style1:focus,
.btn.btn-style1:active,
input[type=submit].btn-style1:active,
.btn-form button[type=submit].btn-style1:active {
    color: #fff
}

.btn.btn-style1:hover:before,
input[type=submit].btn-style1:hover:before,
.btn-form button[type=submit].btn-style1:hover:before,
.btn.btn-style1:focus:before,
input[type=submit].btn-style1:focus:before,
.btn-form button[type=submit].btn-style1:focus:before,
.btn.btn-style1:active:before,
input[type=submit].btn-style1:active:before,
.btn-form button[type=submit].btn-style1:active:before {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.btn.btn-style2,
input[type=submit].btn-style2,
.btn-form button[type=submit].btn-style2,
#secondary .widget.widget_search .wp-block-search__button,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button,
body.woocommerce-cart .woocommerce-cart-form .actions .button,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button,
.woocommerce-checkout .woocommerce-checkout .place-order button,
.woocommerce-checkout .woocommerce-form-coupon .place-order button,
.woocommerce-checkout .woocommerce-checkout .form-row-last button,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button,
.woocommerce .woocommerce-Button.button,
.woocommerce .woocommerce-address-fields .button {
    font-size: 18px;
    line-height: 1.3em;
    background-color: #060707;
    padding: 18px 39px 15px;
    border: 2px solid #bf2025;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    font-family: chakra petch, sans-serif
}

.btn.btn-style2:after,
input[type=submit].btn-style2:after,
.btn-form button[type=submit].btn-style2:after,
#secondary .widget.widget_search .wp-block-search__button:after,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:after,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:after,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:after,
body.woocommerce-cart .woocommerce-cart-form .actions .button:after,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:after,
.woocommerce-checkout .woocommerce-checkout .place-order button:after,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:after,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:after,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:after,
.woocommerce .woocommerce-Button.button:after,
.woocommerce .woocommerce-address-fields .button:after {
    content: '';
    position: absolute;
    top: -110%;
    left: -210%;
    width: 400%;
    height: 150%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, .25);
    background: linear-gradient(to right, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, .13) 77%, rgba(255, 255, 255, .5) 92%, #fff 100%)
}

.btn.btn-style2:hover,
input[type=submit].btn-style2:hover,
.btn-form button[type=submit].btn-style2:hover,
#secondary .widget.widget_search .wp-block-search__button:hover,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:hover,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:hover,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:hover,
body.woocommerce-cart .woocommerce-cart-form .actions .button:hover,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-checkout .woocommerce-checkout .place-order button:hover,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:hover,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:hover,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:hover,
.woocommerce .woocommerce-Button.button:hover,
.woocommerce .woocommerce-address-fields .button:hover,
.btn.btn-style2:focus,
input[type=submit].btn-style2:focus,
.btn-form button[type=submit].btn-style2:focus,
#secondary .widget.widget_search .wp-block-search__button:focus,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:focus,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:focus,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:focus,
body.woocommerce-cart .woocommerce-cart-form .actions .button:focus,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:focus,
.woocommerce-checkout .woocommerce-checkout .place-order button:focus,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:focus,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:focus,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:focus,
.woocommerce .woocommerce-Button.button:focus,
.woocommerce .woocommerce-address-fields .button:focus,
.btn.btn-style2:active,
input[type=submit].btn-style2:active,
.btn-form button[type=submit].btn-style2:active,
#secondary .widget.widget_search .wp-block-search__button:active,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:active,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:active,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:active,
body.woocommerce-cart .woocommerce-cart-form .actions .button:active,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:active,
.woocommerce-checkout .woocommerce-checkout .place-order button:active,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:active,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:active,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:active,
.woocommerce .woocommerce-Button.button:active,
.woocommerce .woocommerce-address-fields .button:active {
    color: #bf2025;
    background-color: initial;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

.btn.btn-style2:hover:after,
input[type=submit].btn-style2:hover:after,
.btn-form button[type=submit].btn-style2:hover:after,
#secondary .widget.widget_search .wp-block-search__button:hover:after,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:hover:after,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:hover:after,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:hover:after,
body.woocommerce-cart .woocommerce-cart-form .actions .button:hover:after,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover:after,
.woocommerce-checkout .woocommerce-checkout .place-order button:hover:after,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:hover:after,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:hover:after,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:hover:after,
.woocommerce .woocommerce-Button.button:hover:after,
.woocommerce .woocommerce-address-fields .button:hover:after,
.btn.btn-style2:focus:after,
input[type=submit].btn-style2:focus:after,
.btn-form button[type=submit].btn-style2:focus:after,
#secondary .widget.widget_search .wp-block-search__button:focus:after,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:focus:after,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:focus:after,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:focus:after,
body.woocommerce-cart .woocommerce-cart-form .actions .button:focus:after,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:focus:after,
.woocommerce-checkout .woocommerce-checkout .place-order button:focus:after,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:focus:after,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:focus:after,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:focus:after,
.woocommerce .woocommerce-Button.button:focus:after,
.woocommerce .woocommerce-address-fields .button:focus:after,
.btn.btn-style2:active:after,
input[type=submit].btn-style2:active:after,
.btn-form button[type=submit].btn-style2:active:after,
#secondary .widget.widget_search .wp-block-search__button:active:after,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:active:after,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:active:after,
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button:active:after,
body.woocommerce-cart .woocommerce-cart-form .actions .button:active:after,
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:active:after,
.woocommerce-checkout .woocommerce-checkout .place-order button:active:after,
.woocommerce-checkout .woocommerce-form-coupon .place-order button:active:after,
.woocommerce-checkout .woocommerce-checkout .form-row-last button:active:after,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button:active:after,
.woocommerce .woocommerce-Button.button:active:after,
.woocommerce .woocommerce-address-fields .button:active:after {
    opacity: 1;
    top: -30%;
    left: 25%;
    -webkit-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -khtml-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -moz-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -ms-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -o-transition: left 1.5s, top 1.5s, opacity .15s ease;
    transition: left 1.5s, top 1.5s, opacity .15s ease
}

@media screen and (max-width:777px) {

    .btn.btn-style2,
    input[type=submit].btn-style2,
    .btn-form button[type=submit].btn-style2,
    #secondary .widget.widget_search .wp-block-search__button,
    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit,
    body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button,
    body.woocommerce-cart .woocommerce-cart-form .actions .button,
    body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button,
    .woocommerce-checkout .woocommerce-checkout .place-order button,
    .woocommerce-checkout .woocommerce-form-coupon .place-order button,
    .woocommerce-checkout .woocommerce-checkout .form-row-last button,
    .woocommerce-checkout .woocommerce-form-coupon .form-row-last button,
    .woocommerce .woocommerce-Button.button,
    .woocommerce .woocommerce-address-fields .button {
        padding: 13px 30px 10px
    }
}

.btn.btn-style2[value="Apply coupon"],
input[type=submit].btn-style2[value="Apply coupon"],
.btn-form button[type=submit].btn-style2[value="Apply coupon"],
#secondary .widget.widget_search .wp-block-search__button[value="Apply coupon"],
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit[value="Apply coupon"],
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit[value="Apply coupon"],
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button[value="Apply coupon"],
body.woocommerce-cart .woocommerce-cart-form .actions .button[value="Apply coupon"],
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button[value="Apply coupon"],
.woocommerce-checkout .woocommerce-checkout .place-order button[value="Apply coupon"],
.woocommerce-checkout .woocommerce-form-coupon .place-order button[value="Apply coupon"],
.woocommerce-checkout .woocommerce-checkout .form-row-last button[value="Apply coupon"],
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button[value="Apply coupon"],
.woocommerce .woocommerce-Button.button[value="Apply coupon"],
.woocommerce .woocommerce-address-fields .button[value="Apply coupon"],
.btn.btn-style2[value="Update cart"],
input[type=submit].btn-style2[value="Update cart"],
.btn-form button[type=submit].btn-style2[value="Update cart"],
#secondary .widget.widget_search .wp-block-search__button[value="Update cart"],
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit[value="Update cart"],
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit[value="Update cart"],
body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button[value="Update cart"],
body.woocommerce-cart .woocommerce-cart-form .actions .button[value="Update cart"],
body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button[value="Update cart"],
.woocommerce-checkout .woocommerce-checkout .place-order button[value="Update cart"],
.woocommerce-checkout .woocommerce-form-coupon .place-order button[value="Update cart"],
.woocommerce-checkout .woocommerce-checkout .form-row-last button[value="Update cart"],
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button[value="Update cart"],
.woocommerce .woocommerce-Button.button[value="Update cart"],
.woocommerce .woocommerce-address-fields .button[value="Update cart"] {
    font-size: 16px
}

.btn.btn-style3,
input[type=submit].btn-style3,
.btn-form button[type=submit].btn-style3 {
    line-height: 1.1em;
    background-color: #bf2025;
    padding: 11px 20px 10.5px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    overflow: hidden
}

.btn.btn-style3:before,
input[type=submit].btn-style3:before,
.btn-form button[type=submit].btn-style3:before {
    content: '';
    position: absolute;
    top: -110%;
    left: -210%;
    width: 400%;
    height: 150%;
    opacity: 0;
    background: rgba(255, 255, 255, .25);
    background: linear-gradient(to right, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, .13) 77%, rgba(255, 255, 255, .5) 92%, #fff 100%);
    -webkit-transform: rotate(30deg);
    -khtml-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg)
}

.btn.btn-style3:after,
input[type=submit].btn-style3:after,
.btn-form button[type=submit].btn-style3:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #161616;
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
    z-index: -1;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.btn.btn-style3:hover,
input[type=submit].btn-style3:hover,
.btn-form button[type=submit].btn-style3:hover,
.btn.btn-style3:focus,
input[type=submit].btn-style3:focus,
.btn-form button[type=submit].btn-style3:focus,
.btn.btn-style3:active,
input[type=submit].btn-style3:active,
.btn-form button[type=submit].btn-style3:active {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 100% 100%, 0 100%, 0 15px)
}

.btn.btn-style3:hover:before,
input[type=submit].btn-style3:hover:before,
.btn-form button[type=submit].btn-style3:hover:before,
.btn.btn-style3:focus:before,
input[type=submit].btn-style3:focus:before,
.btn-form button[type=submit].btn-style3:focus:before,
.btn.btn-style3:active:before,
input[type=submit].btn-style3:active:before,
.btn-form button[type=submit].btn-style3:active:before {
    opacity: 1;
    top: -30%;
    left: 25%;
    -webkit-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -khtml-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -moz-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -ms-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -o-transition: left 1.5s, top 1.5s, opacity .15s ease;
    transition: left 1.5s, top 1.5s, opacity .15s ease
}

.btn.btn-style3:hover:after,
input[type=submit].btn-style3:hover:after,
.btn-form button[type=submit].btn-style3:hover:after,
.btn.btn-style3:focus:after,
input[type=submit].btn-style3:focus:after,
.btn-form button[type=submit].btn-style3:focus:after,
.btn.btn-style3:active:after,
input[type=submit].btn-style3:active:after,
.btn-form button[type=submit].btn-style3:active:after {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), 100% 100%, 0 100%, 0 15px)
}

.btn-readmore {
    display: flex;
    align-items: center;
    color: #ededed;
    font-size: 16px;
    font-weight: 700
}

.btn-readmore:before {
    content: '\f054';
    font-family: "font awesome 5 pro";
    position: relative;
    font-size: 10px;
    margin-right: 10px;
    line-height: 1;
    color: #ededed;
    background-color: #bf2025;
    padding: 4.5px 6.5px 5.5px 7.5px;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    overflow: hidden
}

.btn-readmore span {
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #191919 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    overflow: hidden;
    -webkit-transition: background-position 300ms ease;
    -khtml-transition: background-position 300ms ease;
    -moz-transition: background-position 300ms ease;
    -ms-transition: background-position 300ms ease;
    -o-transition: background-position 300ms ease;
    transition: background-position 300ms ease
}

.btn-readmore:hover span {
    background-position: 0 100%
}

.btn-slider .rev-btn {
    font-size: 18px !important;
    line-height: 56px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background-color: #bf2025 !important;
    font-family: chakra petch, sans-serif !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    border: 2px solid #bf2025 !important;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    -webkit-transition: all 200ms linear 0ms !important;
    -khtml-transition: all 200ms linear 0ms !important;
    -moz-transition: all 200ms linear 0ms !important;
    -ms-transition: all 200ms linear 0ms !important;
    -o-transition: all 200ms linear 0ms !important;
    transition: all 200ms linear 0ms !important
}

.btn-slider .rev-btn:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 400%;
    height: 150%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, .25);
    background: linear-gradient(to right, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, .13) 77%, rgba(255, 255, 255, .5) 92%, #fff 100%)
}

.btn-slider .rev-btn:hover {
    border: 2px solid #bf2025 !important;
    background-color: initial !important;
    border-color: #bf2025 !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

.btn-slider .rev-btn:hover:after {
    opacity: 1;
    top: -30%;
    left: 25%;
    -webkit-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -khtml-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -moz-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -ms-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -o-transition: left 1.5s, top 1.5s, opacity .15s ease;
    transition: left 1.5s, top 1.5s, opacity .15s ease
}

@media screen and (max-width:777px) {
    .btn-slider .rev-btn {
        line-height: 46px !important;
        padding-left: 30px !important;
        padding-right: 30px !important
    }
}

.btn-slider2 .rev-btn {
    font-size: 18px !important;
    line-height: 56px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background-color: #bf2025 !important;
    font-family: chakra petch, sans-serif !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    border: 2px solid #bf2025 !important;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    -webkit-transition: all 200ms linear 0ms !important;
    -khtml-transition: all 200ms linear 0ms !important;
    -moz-transition: all 200ms linear 0ms !important;
    -ms-transition: all 200ms linear 0ms !important;
    -o-transition: all 200ms linear 0ms !important;
    transition: all 200ms linear 0ms !important
}

.btn-slider2 .rev-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(255, 255, 255, .25);
    background: linear-gradient(to right, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, .13) 77%, rgba(255, 255, 255, .5) 92%, #fff 100%)
}

.btn-slider2 .rev-btn span {
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.btn-slider2 .rev-btn:hover {
    border: 2px solid #bf2025 !important;
    background-color: initial !important;
    border-color: #fff !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

.btn-slider2 .rev-btn:hover span {
    color: #bf2025;
    -webkit-transition: all 200ms linear .2s;
    -khtml-transition: all 200ms linear .2s;
    -moz-transition: all 200ms linear .2s;
    -ms-transition: all 200ms linear .2s;
    -o-transition: all 200ms linear .2s;
    transition: all 200ms linear .2s
}

.btn-slider2 .rev-btn:hover:after {
    opacity: 1;
    top: 0;
    left: 200%;
    -webkit-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -khtml-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -moz-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -ms-transition: left 1.5s, top 1.5s, opacity .15s ease;
    -o-transition: left 1.5s, top 1.5s, opacity .15s ease;
    transition: left 1.5s, top 1.5s, opacity .15s ease
}

@media screen and (max-width:777px) {
    .btn-slider2 .rev-btn {
        line-height: 46px !important;
        padding-left: 30px !important;
        padding-right: 30px !important
    }
}

#ct-header-default {
    position: relative;
    z-index: 999;
    background-color: #161616
}

#ct-header-default .row {
    align-items: center
}

#ct-header-default .ct-header-branding {
    margin: 15px;
    flex-grow: 1
}

#ct-header-default .ct-header-branding .logo-mobile {
    display: inline-block
}

#ct-header-default .ct-header-branding img {
    max-height: 35px;
    max-width: inherit
}

@media screen and (max-width:991px) {
    #ct-header-default .ct-header-branding img {
        height: 49px
    }
}

#ct-header-elementor .ct-header-mobile {
    display: none
}

#ct-header-elementor .ct-header-elementor-main {
    position: relative;
    z-index: 999
}

#ct-header-elementor .ct-header-elementor-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .6s cubic-bezier(.24, .74, .58, 1);
    transition: .6s cubic-bezier(.24, .74, .58, 1);
    visibility: hidden
}

#ct-header-elementor .ct-header-elementor-sticky.h-fixed {
    -webkit-transform: translateY(0%);
    -khtml-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
    -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
    -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
    -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
    -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
    -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
    box-shadow: 0 3px 18px rgba(2, 21, 78, 9%)
}

#ct-header-elementor .ct-header-fixed-transparent-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999
}

#ct-header-elementor .ct-header-mobile-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .6s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .6s cubic-bezier(.24, .74, .58, 1);
    transition: .6s cubic-bezier(.24, .74, .58, 1);
    visibility: hidden
}

#ct-header-elementor .ct-header-mobile-sticky.h-fixed {
    -webkit-transform: translateY(0%);
    -khtml-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible
}

@media screen and (min-width:1400px) {
    .header-container-1370px .elementor-container {
        max-width: 1370px
    }
}

@media screen and (max-width:1400px) {
    .header-container-1370px .elementor-container {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media screen and (min-width:1400px) {
    .header-container-1420px .elementor-container {
        max-width: 1420px
    }
}

@media screen and (max-width:1400px) {
    .header-container-1420px .elementor-container {
        padding-left: 15px;
        padding-right: 15px
    }
}

.bg-footer-color {
    position: relative
}

.bg-footer-color:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0
}

@media screen and (max-width:1199px) {

    #ct-header-elementor .ct-header-elementor-main,
    #ct-header-elementor .ct-header-elementor-sticky {
        display: none
    }

    #ct-header-elementor .ct-header-mobile {
        display: block
    }

    #ct-header-default,
    .ct-header-mobile {
        position: relative;
        background-color: #fff;
    }

    #ct-header-default .ct-header-main,
    .ct-header-mobile .ct-header-main {
        position: relative
    }

    #ct-header-default .ct-header-branding,
    .ct-header-mobile .ct-header-branding {
        margin: 15px;
        min-height: 50px;
        align-items: center;
        display: flex
    }

    #ct-header-default .h-btn-cart,
    .ct-header-mobile .h-btn-cart {
        position: absolute;
        top: 50%;
        right: 70px;
        -webkit-transform: translate(0, -50%);
        -khtml-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        text-align: center;
        border: 1px solid #c6c6c6;
        width: 40px;
        height: 36px;
        line-height: 36px;
        font-size: 17px;
        cursor: pointer;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px
    }

    #ct-header-default .ct-menu-mobile,
    .ct-header-mobile .ct-menu-mobile {
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translate(0, -50%);
        -khtml-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        display: flex;
        flex-wrap: wrap;
        align-items: center
    }

    #ct-header-default .ct-menu-mobile .ct-mobile-meta-item,
    .ct-header-mobile .ct-menu-mobile .ct-mobile-meta-item {
        margin-left: 10px
    }
}

@media screen and (max-width:1199px) {

    #ct-header-default .ct-header-branding .logo-mobile img,
    .ct-header-mobile .ct-header-branding .logo-mobile img {
        height: 35px
    }
}

.admin-bar #ct-header-elementor .ct-header-elementor-sticky.h-fixed,
.admin-bar #ct-header-elementor .ct-header-mobile-sticky.h-fixed {
    top: 32px
}

@media screen and (max-width:782px) {

    .admin-bar #ct-header-elementor .ct-header-elementor-sticky.h-fixed,
    .admin-bar #ct-header-elementor .ct-header-mobile-sticky.h-fixed {
        top: 46px
    }
}

@media screen and (max-width:600px) {

    .admin-bar #ct-header-elementor .ct-header-elementor-sticky.h-fixed,
    .admin-bar #ct-header-elementor .ct-header-mobile-sticky.h-fixed {
        top: 0
    }
}

.pxl-primary-menu.primary-menu-not-set {
    margin-bottom: 0
}

.pxl-primary-menu.primary-menu-not-set li {
    list-style: none
}

.pxl-primary-menu.primary-menu-not-set li a {
    font-size: 15px;
    line-height: 1.666;
    font-weight: 600
}

.ct-cursor {
    visibility: hidden;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: transform .1s cubic-bezier(.165, .84, .44, 1);
    -khtml-transition: transform .1s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .1s cubic-bezier(.165, .84, .44, 1);
    -ms-transition: transform .1s cubic-bezier(.165, .84, .44, 1);
    -o-transition: transform .1s cubic-bezier(.165, .84, .44, 1);
    transition: transform .1s cubic-bezier(.165, .84, .44, 1);
    pointer-events: none;
    top: 0;
    left: 0
}

.ct-cursor .ct-cursor-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -khtml-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -ms-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -o-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1)
}

.ct-cursor .ct-cursor--follower {
    position: absolute;
    background-color: #bf2025;
    opacity: .35;
    border-radius: 100%;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .1s cubic-bezier(.165, .84, .44, 1);
    -khtml-transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .1s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .1s cubic-bezier(.165, .84, .44, 1);
    -ms-transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .1s cubic-bezier(.165, .84, .44, 1);
    -o-transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .1s cubic-bezier(.165, .84, .44, 1);
    transition: transform .3s cubic-bezier(.165, .84, .44, 1), opacity .3s cubic-bezier(.165, .84, .44, 1), background-color .1s cubic-bezier(.165, .84, .44, 1)
}

.ct-cursor .ct-cursor--label {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    letter-spacing: .05em;
    transform: scale(0);
    will-change: transform, opacity;
    -webkit-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -khtml-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -ms-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    -o-transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity .5s cubic-bezier(.165, .84, .44, 1)
}

.ct-cursor .ct-cursor--icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: scale(0);
    will-change: transform, opacity;
    -webkit-transition: transform 500ms cubic-bezier(.165, .84, .44, 1), opacity 500ms cubic-bezier(.165, .84, .44, 1);
    -khtml-transition: transform 500ms cubic-bezier(.165, .84, .44, 1), opacity 500ms cubic-bezier(.165, .84, .44, 1);
    -moz-transition: transform 500ms cubic-bezier(.165, .84, .44, 1), opacity 500ms cubic-bezier(.165, .84, .44, 1);
    -ms-transition: transform 500ms cubic-bezier(.165, .84, .44, 1), opacity 500ms cubic-bezier(.165, .84, .44, 1);
    -o-transition: transform 500ms cubic-bezier(.165, .84, .44, 1), opacity 500ms cubic-bezier(.165, .84, .44, 1);
    transition: transform 500ms cubic-bezier(.165, .84, .44, 1), opacity 500ms cubic-bezier(.165, .84, .44, 1);
    color: rgba(255, 255, 255, .76)
}

.ct-cursor .ct-cursor--icon:before {
    content: "\f121";
    font-family: Caseicon;
    font-size: 24px
}

.ct-cursor.is-enabled {
    visibility: visible
}

.ct-cursor.is-hidden .ct-cursor-wrapper {
    transform: scale(0) !important
}

.ct-cursor.is-mouse-down .ct-cursor-wrapper {
    transform: scale(.8)
}

.ct-cursor.is-active .ct-cursor--follower {
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .7);
    -khtml-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .7);
    -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .7);
    -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .7);
    -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, .7);
    box-shadow: 0 0 8px rgba(0, 0, 0, .7);
    -webkit-transform: scale(3.6);
    -khtml-transform: scale(3.6);
    -moz-transform: scale(3.6);
    -ms-transform: scale(3.6);
    -o-transform: scale(3.6);
    transform: scale(3.6);
    opacity: 0
}

.ct-cursor.is-active.has-label .ct-cursor--follower {
    background-color: #000;
    opacity: .8
}

.ct-cursor.is-active.has-label .ct-cursor--label {
    transform: scale(1)
}

.ct-cursor.is-active.has-icon .ct-cursor--follower {
    background-color: #000;
    opacity: .8
}

.ct-cursor.is-active.has-icon .ct-cursor--icon {
    transform: scale(1)
}

ul.menu {
    list-style: none;
    margin: 0
}

ul.menu ul {
    list-style: none;
    margin: 0
}

.menu-icon-plus {
    display: none;
    width: 8px;
    height: 8px;
    position: relative;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.menu-icon-plus:before,
.menu-icon-plus:after {
    content: '';
    background-color: #bf2025;
    position: absolute
}

.menu-icon-plus:before {
    width: 8px;
    height: 2px;
    top: 3px;
    left: 0
}

.menu-icon-plus:after {
    width: 2px;
    height: 8px;
    left: 3px;
    top: 0
}

.ct-icon-menu {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: none
}

.ct-icon-menu i,
.ct-icon-menu:before,
.ct-icon-menu:after {
    content: '';
    width: 12px;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: #fff;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.ct-icon-menu i {
    top: 5px
}

.ct-icon-menu:before {
    top: 0
}

.ct-icon-menu:after {
    bottom: 0
}

.menu-item .link-icon i {
    font-family: Grandicon
}

.menu-item:hover .ct-icon-menu i {
    left: 20px;
    opacity: 0
}

.menu-item:hover .ct-icon-menu:before {
    top: 5px;
    transform: rotate(45deg)
}

.menu-item:hover .ct-icon-menu:after {
    bottom: 5px;
    transform: rotate(-45deg)
}

.ct-menu-item li {
    list-style: none
}

.ct-menu-item li span.ct-icon {
    margin-right: 5px;
    display: inline-block
}

.ct-menu-item li a {
    padding-left: 0 !important
}

.ct-menu-item li a:before {
    width: 10px;
    height: 2px;
    background-color: #bf2025;
    display: block;
    content: "" !important;
    position: absolute;
    top: 15px;
    left: -15px !important;
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-menu-item li a:hover {
    padding-left: 25px !important
}

.ct-menu-item li a:hover:before {
    opacity: 1;
    left: 0 !important
}

.ct-menu-item li+li {
    margin-top: 10px
}

@media screen and (min-width:1200px) {

    .header-mobile-search,
    .ct-header-button-mobile,
    .ct-menu-mobile,
    .ct-logo-mobile,
    .ct-header-social-mobile {
        display: none !important
    }

    .ct-main-menu-not-set {
        list-style: none;
        margin: 0
    }

    .ct-main-menu-not-set>li {
        text-align: center
    }

    .ct-main-menu-not-set>li a {
        font-size: 14px;
        color: #ededed;
        font-weight: 700;
        line-height: 95px;
        position: relative;
        text-transform: uppercase;
        padding: 0
    }

    .ct-main-menu-not-set>li a:hover {
        color: #bf2025
    }

    .ct-main-navigation ul {
        display: block;
        text-transform: uppercase
    }

    .ct-main-menu {
        list-style: none;
        margin: 0;
        padding: 0
    }

    .ct-main-menu .link-icon {
        color: #bf2025;
        margin-right: 8px
    }

    .ct-main-menu li {
        position: relative;
        list-style: none
    }

    .ct-main-menu li a {
        font-size: 15px;
        color: #000;
        font-weight: bold;
        line-height: 1.666;
        position: relative;
        -webkit-transition: all 200ms linear 0ms;
        -khtml-transition: all 200ms linear 0ms;
        -moz-transition: all 200ms linear 0ms;
        -ms-transition: all 200ms linear 0ms;
        -o-transition: all 200ms linear 0ms;
        transition: all 200ms linear 0ms
    }

    .ct-main-menu li>a:hover,
    .ct-main-menu li.current_page_item>a,
    .ct-main-menu li.current-menu-item>a,
    .ct-main-menu li.current_page_ancestor>a,
    .ct-main-menu li.current-menu-ancestor>a {
        color: #bf2025 !important
    }

    .ct-main-menu li .ct-menu-toggle {
        display: none
    }

    .ct-main-menu>li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 20px
    }

    .ct-main-menu>li>a {
        display: flex;
        position: relative;
        align-items: center;
        line-height: 1.666;
        margin: 10px 0
    }

    .ct-main-menu>li.menu-item-type-custom>a:before,
    .ct-main-menu>li.page_item_has_children>a:before,
    .ct-main-menu>li.megamenu>a:before {
        -webkit-transition: all 200ms linear 0ms;
        -khtml-transition: all 200ms linear 0ms;
        -moz-transition: all 200ms linear 0ms;
        -ms-transition: all 200ms linear 0ms;
        -o-transition: all 200ms linear 0ms;
        transition: all 200ms linear 0ms;
        position: absolute;
        content: "";
        bottom: -6px;
        z-index: 100;
        display: block;
        width: 100%;
        height: 2px;
        -webkit-border-radius: 14px;
        -khtml-border-radius: 14px;
        -moz-border-radius: 14px;
        -ms-border-radius: 14px;
        -o-border-radius: 14px;
        border-radius: 14px;
        left: 50%;
        -webkit-transform: translateX(-50%)scale(0);
        -khtml-transform: translateX(-50%)scale(0);
        -moz-transform: translateX(-50%)scale(0);
        -ms-transform: translateX(-50%)scale(0);
        -o-transform: translateX(-50%)scale(0);
        transform: translateX(-50%)scale(0);
        background-color: #bf2025
    }

    .ct-main-menu>li.menu-item-type-custom>a:hover:before,
    .ct-main-menu>li.page_item_has_children>a:hover:before,
    .ct-main-menu>li.megamenu>a:hover:before {
        -webkit-transform: translateX(-50%)scale(1);
        -khtml-transform: translateX(-50%)scale(1);
        -moz-transform: translateX(-50%)scale(1);
        -ms-transform: translateX(-50%)scale(1);
        -o-transform: translateX(-50%)scale(1);
        transform: translateX(-50%)scale(1)
    }

    .ct-main-menu>li>a:hover:before,
    .ct-main-menu>li.current_page_item>a:before,
    .ct-main-menu>li.current-menu-item>a:before,
    .ct-main-menu>li.current_page_ancestor>a:before,
    .ct-main-menu>li.current-menu-ancestor>a:before {
        -webkit-transform: translateX(-50%)scale(1);
        -khtml-transform: translateX(-50%)scale(1);
        -moz-transform: translateX(-50%)scale(1);
        -ms-transform: translateX(-50%)scale(1);
        -o-transform: translateX(-50%)scale(1);
        transform: translateX(-50%)scale(1)
    }

    .ct-main-menu>li>ul.back {
        right: 0 !important;
        left: auto !important
    }

    .ct-main-menu>li>ul.back li>ul.back {
        right: 100% !important;
        left: auto !important;
        -webkit-border-radius: 3px 0 3px 3px;
        -khtml-border-radius: 3px 0 3px 3px;
        -moz-border-radius: 3px 0 3px 3px;
        -ms-border-radius: 3px 0 3px 3px;
        -o-border-radius: 3px 0 3px 3px;
        border-radius: 3px 0 3px 3px
    }

    .ct-main-menu>li>.sub-menu li>ul.back,
    .ct-main-menu>li>.children li>ul.back {
        right: 100% !important;
        left: auto !important;
        -webkit-border-radius: 3px 0 3px 3px;
        -khtml-border-radius: 3px 0 3px 3px;
        -moz-border-radius: 3px 0 3px 3px;
        -ms-border-radius: 3px 0 3px 3px;
        -o-border-radius: 3px 0 3px 3px;
        border-radius: 3px 0 3px 3px
    }

    .ct-main-menu .sub-menu,
    .ct-main-menu .children {
        position: absolute;
        background: #161616;
        top: 100%;
        left: 0;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        min-width: 225px;
        z-index: 99;
        visibility: hidden;
        opacity: 0;
        border: 2px solid #ededed;
        -webkit-box-shadow: 0 0 10px rgba(6, 6, 6, .14);
        -khtml-box-shadow: 0 0 10px rgba(6, 6, 6, .14);
        -moz-box-shadow: 0 0 10px rgba(6, 6, 6, .14);
        -ms-box-shadow: 0 0 10px rgba(6, 6, 6, .14);
        -o-box-shadow: 0 0 10px rgba(6, 6, 6, .14);
        box-shadow: 0 0 10px rgba(6, 6, 6, .14);
        -webkit-transition: all 200ms linear 0ms;
        -khtml-transition: all 200ms linear 0ms;
        -moz-transition: all 200ms linear 0ms;
        -ms-transition: all 200ms linear 0ms;
        -o-transition: all 200ms linear 0ms;
        transition: all 200ms linear 0ms;
        transform-origin: 0 0 0;
        -webkit-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        -o-transform-origin: 0 0 0;
        text-align: left;
        -webkit-transform: scaleY(0);
        -khtml-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0)
    }

    .ct-main-menu .sub-menu li,
    .ct-main-menu .children li {
        white-space: nowrap
    }

    .ct-main-menu .sub-menu li>a,
    .ct-main-menu .children li>a {
        color: #ededed;
        font-weight: 600;
        border-bottom: 1px solid rgba(248, 246, 247, .1)
    }

    .ct-main-menu .sub-menu li a,
    .ct-main-menu .children li a {
        display: block;
        position: relative;
        font-size: 14px;
        line-height: 1.714;
        padding: 11.7px 25px
    }

    .ct-main-menu .sub-menu li.menu-item-has-children>a,
    .ct-main-menu .children li.menu-item-has-children>a,
    .ct-main-menu .sub-menu li.page_item_has_children>a,
    .ct-main-menu .children li.page_item_has_children>a {
        padding-right: 10px
    }

    .ct-main-menu .sub-menu li.menu-item-has-children>a:after,
    .ct-main-menu .children li.menu-item-has-children>a:after,
    .ct-main-menu .sub-menu li.page_item_has_children>a:after,
    .ct-main-menu .children li.page_item_has_children>a:after {
        content: "\f104";
        font-family: Grandicon;
        font-size: 9px;
        position: absolute;
        right: 25px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -khtml-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        visibility: visible;
        opacity: 1
    }

    .ct-main-menu .sub-menu li:last-child>a,
    .ct-main-menu .children li:last-child>a {
        border-bottom: none
    }

    .ct-main-menu .sub-menu li>a:hover,
    .ct-main-menu .children li>a:hover,
    .ct-main-menu .sub-menu li.current_page_item>a,
    .ct-main-menu .children li.current_page_item>a,
    .ct-main-menu .sub-menu li.current-menu-item>a,
    .ct-main-menu .children li.current-menu-item>a,
    .ct-main-menu .sub-menu li.current_page_ancestor>a,
    .ct-main-menu .children li.current_page_ancestor>a,
    .ct-main-menu .sub-menu li.current-menu-ancestor>a,
    .ct-main-menu .children li.current-menu-ancestor>a {
        color: #bf2025
    }

    .ct-main-menu .sub-menu .sub-menu,
    .ct-main-menu .children .sub-menu,
    .ct-main-menu .sub-menu .children,
    .ct-main-menu .children .children {
        left: 100%;
        top: -2px;
        margin-left: 0
    }

    .ct-main-menu .sub-menu .sub-menu-title,
    .ct-main-menu .children .sub-menu-title {
        display: none
    }

    .ct-main-menu li:hover,
    .ct-main-menu li.focus {
        overflow: visible
    }

    .ct-main-menu li:hover>a .menu-icon-plus,
    .ct-main-menu li.focus>a .menu-icon-plus {
        -webkit-transform: rotate(45deg);
        -khtml-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .ct-main-menu li:hover>.sub-menu,
    .ct-main-menu li.focus>.sub-menu,
    .ct-main-menu li:hover>.children,
    .ct-main-menu li.focus>.children {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scaleY(1);
        -khtml-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1)
    }

    .ct-main-menu li:hover>a,
    .ct-main-menu li.focus>a {
        color: #bf2025
    }

    .ct-main-menu li:hover>a:before,
    .ct-main-menu li.focus>a:before {
        -webkit-transform: translateX(-50%)scale(1);
        -khtml-transform: translateX(-50%)scale(1);
        -moz-transform: translateX(-50%)scale(1);
        -ms-transform: translateX(-50%)scale(1);
        -o-transform: translateX(-50%)scale(1);
        transform: translateX(-50%)scale(1)
    }

    .ct-main-menu li.megamenu {
        position: static
    }

    .ct-main-menu li.megamenu .vc_wp_custommenu.wpb_content_element {
        padding: 0;
        background-color: initial
    }

    .ct-main-menu li.megamenu .sub-menu,
    .ct-main-menu li.megamenu .children {
        width: 100%;
        max-width: 1360px;
        padding: 0;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0
    }

    .ct-main-menu li.megamenu .sub-menu p,
    .ct-main-menu li.megamenu .children p {
        margin-bottom: 0
    }

    .ct-main-menu li.megamenu .sub-menu li,
    .ct-main-menu li.megamenu .children li {
        padding: 0
    }

    .ct-main-menu li.megamenu .sub-menu li>.container,
    .ct-main-menu li.megamenu .children li>.container {
        padding: 0;
        max-height: 640px
    }

    .ct-main-menu li.megamenu .sub-menu .wpb_content_element,
    .ct-main-menu li.megamenu .children .wpb_content_element {
        margin-bottom: 0
    }

    .ct-main-menu li.megamenu .sub-menu.ct-mega-2-columns {
        width: 585px;
        right: auto
    }

    .ct-main-menu li.megamenu.ct-megamenu-columns {
        position: relative
    }

    .ct-main-menu li.megamenu.remove-pos {
        position: relative
    }

    .ct-main-menu li.megamenu.remove-pos>.sub-menu,
    .ct-main-menu li.megamenu.remove-pos>.children {
        max-width: inherit;
        width: auto;
        left: 0;
        right: auto
    }

    ul.back {
        right: 100%;
        left: auto !important
    }

    .el-mega-menu.elementor-container .elementor-column,
    .el-mega-menu.elementor-container .elementor-column-wrap,
    .el-mega-menu.elementor-container .elementor-widget-wrap,
    .el-mega-menu.elementor-container .elementor-widget {
        position: static
    }
}

@media screen and (max-width:1199px) {
    .ct-menu-overlay {
        position: absolute;
        z-index: 88;
        width: 100%;
        height: 100%;
        left: -100%;
        cursor: pointer;
        top: 0%
    }

    .ct-menu-overlay.active {
        left: 0
    }

    .ct-logo-mobile {
        display: block;
        margin-bottom: 25px
    }

    .ct-logo-mobile img {
        max-height: 50px;
        max-width: 180px
    }

    .header-mobile-search {
        position: relative;
        margin-bottom: 10px
    }

    .header-mobile-search .search-submit {
        padding: 0;
        border: none;
        line-height: 51px;
        height: 51px;
        width: 50px;
        position: absolute;
        top: 0;
        right: 0;
        color: #ededed;
        font-size: 15px;
        -webkit-border-radius: 0;
        -khtml-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -khtml-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
        background-color: initial;
        background-image: none;
        border-left: 1px solid #ebebeb
    }

    .header-mobile-search .search-submit:before,
    .header-mobile-search .search-submit:after {
        display: none
    }

    .header-mobile-search .search-submit:hover {
        background-color: #bf2025;
        border-color: #bf2025
    }

    .header-mobile-search .search-field {
        -webkit-border-radius: 0;
        -khtml-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        border: 1px solid #ebebeb;
        padding-left: 10px;
        padding-right: 60px;
        color: #ededed;
        font-size: 15px;
        line-height: 1.6666
    }

    .header-mobile-search .search-field:focus {
        border-color: #bf2025
    }

    .header-mobile-search .search-field:focus+.search-submit {
        border-color: #bf2025
    }

    .ct-header-button-mobile {
        text-align: center
    }

    .ct-header-button-mobile .btn,
    .ct-header-button-mobile input[type=submit],
    .ct-header-button-mobile .btn-form button[type=submit],
    .btn-form .ct-header-button-mobile button[type=submit] {
        line-height: 46px;
        padding: 0 20px;
        font-size: 14px;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px
    }

    .ct-header-button-mobile+.ct-header-button-mobile {
        margin-top: -15px
    }

    .ct-header-navigation {
        position: fixed;
        height: 100vh;
        width: 260px;
        top: 0;
        left: 0;
        bottom: 0;
        margin: 0 !important;
        overflow: hidden;
        visibility: hidden;
        z-index: 999;
        -webkit-transition: all 200ms linear 0ms;
        -khtml-transition: all 200ms linear 0ms;
        -moz-transition: all 200ms linear 0ms;
        -ms-transition: all 200ms linear 0ms;
        -o-transition: all 200ms linear 0ms;
        transition: all 200ms linear 0ms;
        -webkit-transform: translateX(-100%);
        -khtml-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .22);
        -khtml-box-shadow: 0 0 12px rgba(0, 0, 0, .22);
        -moz-box-shadow: 0 0 12px rgba(0, 0, 0, .22);
        -ms-box-shadow: 0 0 12px rgba(0, 0, 0, .22);
        -o-box-shadow: 0 0 12px rgba(0, 0, 0, .22);
        box-shadow: 0 0 12px rgba(0, 0, 0, .22)
    }

    .ct-header-navigation .ct-main-navigation {
        overflow: hidden;
        width: 260px;
        padding: 58px 0 45px;
        background-color: #161616;
        position: fixed;
        z-index: 1001;
        top: 0;
        height: 100%;
        left: 0;
        right: 0
    }

    .ct-header-navigation .ct-main-navigation .ct-main-navigation-inner {
        height: 100%;
        overflow-y: scroll;
        padding: 0 26px 0 16px;
        margin-right: -10px
    }

    .ct-header-navigation.navigation-open {
        z-index: 999;
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateX(0%);
        -khtml-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%)
    }

    .ct-main-menu {
        list-style: none;
        margin: 0;
        padding: 0
    }

    .ct-main-menu .link-icon {
        margin-right: 8px
    }

    .ct-main-menu li {
        position: relative;
        list-style: none
    }

    .ct-main-menu li a {
        display: block;
        padding: 0;
        line-height: 50px;
        color: #ededed;
        font-size: 15px;
        font-weight: 700;
        border-bottom: 1px solid #ebebeb
    }

    .ct-main-menu>li>a:hover,
    .ct-main-menu>li>a.current,
    .ct-main-menu>li.current_page_item>a,
    .ct-main-menu>li.current-menu-item>a,
    .ct-main-menu>li.current_page_ancestor>a,
    .ct-main-menu>li.current-menu-ancestor>a {
        color: #bf2025
    }

    .ct-main-menu>li>.sub-menu {
        border-bottom: 1px solid #ebebeb;
        padding-top: 9px;
        padding-bottom: 9px
    }

    .ct-main-menu .sub-menu,
    .ct-main-menu .children {
        position: relative;
        display: none
    }

    .ct-main-menu .sub-menu li a,
    .ct-main-menu .children li a {
        padding: 2px 0 2px 10px;
        line-height: 34px;
        font-size: 14px;
        border: none
    }

    .ct-main-menu .sub-menu li>a:hover,
    .ct-main-menu .children li>a:hover,
    .ct-main-menu .sub-menu li>a.current,
    .ct-main-menu .children li>a.current,
    .ct-main-menu .sub-menu li.current_page_item>a,
    .ct-main-menu .children li.current_page_item>a,
    .ct-main-menu .sub-menu li.current-menu-item>a,
    .ct-main-menu .children li.current-menu-item>a,
    .ct-main-menu .sub-menu li.current_page_ancestor>a,
    .ct-main-menu .children li.current_page_ancestor>a,
    .ct-main-menu .sub-menu li.current-menu-ancestor>a,
    .ct-main-menu .children li.current-menu-ancestor>a {
        color: #bf2025
    }

    .ct-main-menu .sub-menu li .ct-menu-toggle,
    .ct-main-menu .children li .ct-menu-toggle {
        top: 2px
    }

    .ct-main-menu .sub-menu .sub-menu li a,
    .ct-main-menu .children .sub-menu li a {
        padding: 2px 0 2px 20px
    }

    .ct-main-menu .sub-menu .sub-menu li .sub-menu li a,
    .ct-main-menu .children .sub-menu li .sub-menu li a {
        padding: 2px 0 2px 30px
    }

    .ct-main-menu li.focus>.sub-menu,
    .ct-main-menu li.focus>.children {
        visibility: visible;
        opacity: 1;
        max-height: none;
        overflow: visible
    }

    .ct-main-menu+div {
        margin-top: 30px;
        margin-bottom: 30px
    }

    .ct-menu-toggle {
        position: absolute;
        top: 10px;
        height: 30px;
        right: 0;
        border: 1px solid #ebebeb;
        width: 30px;
        cursor: pointer;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        font-size: 10px;
        -webkit-transition: all 300ms linear 0ms;
        -khtml-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        -o-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms
    }

    .ct-menu-toggle:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -khtml-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all 300ms linear 0ms;
        -khtml-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        -o-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms
    }

    .ct-menu-toggle.toggle-open {
        color: #fff;
        background-color: #bf2025;
        border-color: #bf2025
    }

    .ct-menu-toggle.toggle-open:before {
        content: '\f105'
    }

    .ct-menu-mobile {
        z-index: 99
    }

    .ct-menu-mobile .ct-mobile-meta-item {
        background-color: initial;
        border: 1px solid #000;
        width: 40px;
        height: 36px;
        line-height: 34px;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        cursor: pointer
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile {
        display: inline-block;
        font-size: 16px;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        position: relative;
        -webkit-transition: all 300ms linear 0ms;
        -khtml-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        -o-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile:before,
    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile:after,
    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile span {
        -webkit-transition: all 300ms linear 0ms;
        -khtml-transition: all 300ms linear 0ms;
        -moz-transition: all 300ms linear 0ms;
        -ms-transition: all 300ms linear 0ms;
        -o-transition: all 300ms linear 0ms;
        transition: all 300ms linear 0ms;
        content: "";
        background-color: #000;
        display: block;
        height: 2px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 24px;
        top: 23px
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile:before {
        top: 9px
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile span {
        top: 16px
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile.opened:before {
        top: 15px;
        -webkit-transform: rotate(45deg);
        -khtml-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile.opened:after {
        -webkit-transform: rotate(-45deg);
        -khtml-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 15px
    }

    .ct-menu-mobile .ct-mobile-meta-item.btn-nav-mobile.opened span {
        display: none
    }

    li.megamenu .container {
        padding: 0
    }

    li.megamenu .container .elementor-column-wrap {
        padding: 20px 0 0 !important
    }

    li.megamenu .elementor-row,
    li.megamenu .elementor-container {
        display: block
    }

    li.megamenu .elementor-row>.elementor-element,
    li.megamenu .elementor-container>.elementor-element {
        width: 100% !important;
        margin-top: 14px
    }

    li.megamenu .elementor-element-populated {
        padding: 0 !important
    }

    li.megamenu .elementor-section-wrap>.elementor-section {
        padding: 0 !important
    }

    li.megamenu .elementor-container.elementor-column-gap-extended {
        margin: 0 !important
    }

    li.megamenu .elementor-container>.elementor-column:last-child {
        margin-bottom: 10px
    }
}

#pagetitle {
    background-color: #121212;
    padding: 54px 0;
    position: relative;
    overflow: hidden;
    text-align: left;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1
}

#pagetitle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

#pagetitle.hide-overlay:before {
    background-image: none
}

#pagetitle .page-title-inner {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    margin: 0 auto
}

#pagetitle .ptitle-particle {
    position: absolute;
    z-index: -1
}

#pagetitle .page-title {
    color: #ededed;
    font-size: 66px;
    margin-bottom: 0;
    line-height: 1.1515;
    margin-left: auto;
    font-weight: 700;
    margin-right: auto;
    text-transform: uppercase;
    word-break: break-word
}

@media screen and (max-width:1199px) {
    #pagetitle .page-title {
        font-size: 60px
    }
}

@media screen and (max-width:1024px) {
    #pagetitle .page-title {
        font-size: 55px
    }
}

@media screen and (max-width:991px) {
    #pagetitle .page-title {
        font-size: 47px
    }
}

@media screen and (max-width:767px) {
    #pagetitle .page-title {
        font-size: 43px
    }
}

@media screen and (max-width:575px) {
    #pagetitle .page-title {
        font-size: 34px
    }
}

.ct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 31px;
    list-style: none;
    color: #ededed
}

.ct-breadcrumb li {
    display: flex;
    position: relative;
    font-size: 15px;
    line-height: 1.666;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    align-items: center;
    font-family: chakra petch, sans-serif;
    color: #c6c6c6
}

.ct-breadcrumb li span {
    color: #bf2025
}

.ct-breadcrumb li:not(:first-child):before {
    content: "\f45c";
    padding: 0 11px;
    color: #bf2025;
    font-size: 4px;
    font-weight: 900;
    font-family: "font awesome 5 pro"
}

.single-hentry.product .entry-meta,
.single-hentry.product .entry-holder {
    display: none
}

.single-hentry .entry-featured {
    position: relative;
    overflow: hidden;
    z-index: 1
}

.single-hentry .entry-featured img {
    width: 100%;
    object-fit: cover
}

@media screen and (max-width:575px) {
    .single-hentry .entry-featured img {
        min-height: 300px
    }
}

.single-hentry .entry-featured:after {
    content: '';
    display: block;
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .35) 0, transparent 75%);
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .35)), color-stop(75%, transparent));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 75%);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -khtml-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.single-hentry .item--category {
    position: absolute;
    left: 20px;
    bottom: 16px;
    font-size: 15px;
    text-transform: uppercase;
    padding-top: 5px;
    border-top: 2px solid #bf2025;
    z-index: 2
}

.single-hentry .item--category a {
    color: #ededed
}

.single-hentry .entry-title {
    font-size: 23px;
    line-height: 1.435;
    display: flex;
    margin-bottom: 9px;
    text-transform: uppercase
}

@media screen and (max-width:767px) {
    .single-hentry .entry-title {
        font-size: 20px
    }
}

.single-hentry .entry-title a {
    color: inherit;
    word-break: break-word
}

.single-hentry .entry-title a:hover {
    color: #bf2025
}

.single-hentry .entry-featured+.entry-body {
    padding-top: 29px
}

.single-hentry .entry-featured+.entry-body .item-category {
    display: none
}

.single-hentry .entry-body {
    position: relative;
    width: 100%
}

.single-hentry .entry-excerpt {
    margin-bottom: 13px
}

.single-hentry .btn-readmore {
    margin-top: 27px
}

.single-hentry.archive+.single-hentry.archive {
    margin: 50px 0 0
}

.single-hentry.archive {
    padding-top: 30px
}

.single-hentry.archive:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.single-hentry.archive .item-author {
    margin-top: 22px
}

.single-hentry.archive .item-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 5px
}

@media screen and (max-width:767px) {
    .single-hentry.archive .item-author img {
        width: 25px;
        height: 25px
    }
}

.single-hentry.archive .item-author a {
    color: #c6c6c6;
    font-weight: 600
}

.single-hentry.archive .item-author a:hover {
    color: #bf2025
}

.single-hentry.archive .item-category {
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    padding-left: 20px
}

.single-hentry.archive .item-category a {
    font-family: mulish, sans-serif
}

.single-hentry.archive .entry-body .ct-item-meta {
    padding-top: 15px;
    border-top: 1px solid rgba(198, 198, 198, .15);
    margin-bottom: 0
}

.single-hentry.archive .entry-body .ct-item-meta .item-social {
    flex-grow: 1;
    justify-content: flex-end
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .icon-label {
    font-size: 13px
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .icon-label i {
    position: relative;
    top: 1px;
    font-size: 15px;
    margin-right: 3px
}

.single-hentry.archive .entry-body .ct-item-meta .item-social i {
    margin-right: 0
}

.single-hentry.archive .entry-body .ct-item-meta .item-social a {
    line-height: 1
}

.single-hentry.archive .entry-body .ct-item-meta .item-social a+a {
    margin-left: 5px
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social {
    position: relative;
    padding-right: 0;
    display: flex;
    align-items: center;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a {
    right: 0;
    position: absolute;
    opacity: 0
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a:nth-child(2) {
    right: 0;
    transition-duration: .4s
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a:nth-child(3) {
    right: 5px;
    transition-duration: .3s
}

.single-hentry.archive .entry-body .ct-item-meta .item-social .inner-item-social a:nth-child(4) {
    right: 0;
    transition-duration: .2s
}

.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social {
    padding-right: 70px
}

.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a {
    opacity: 1
}

.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:before {
    opacity: 0
}

.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:nth-child(2) {
    right: 50px
}

.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:nth-child(3) {
    right: 25px
}

.single-hentry.archive .entry-body .ct-item-meta .item-social:hover .inner-item-social a:nth-child(4) {
    right: 0
}

.search-results .site-main .single-hentry.archive+.archive {
    margin-top: 75px
}

.search-results .site-main .single-hentry.archive .entry-featured img {
    width: 100%
}

.single-post .entry-content p {
    margin-bottom: 1rem
}

.single-post .entry-content p:last-child {
    margin-bottom: 0
}

.single-post .entry-content blockquote p {
    margin-bottom: 13px
}

.single-post .single-heading {
    font-size: 26px;
    margin-bottom: 18px;
    padding-top: 5px
}

.single-post .entry-tags .tag-title {
    margin-bottom: 8px
}

.single-post .entry-tags a {
    margin: 5px 20px 5px 0
}

.single-post .entry-tags+.entry-social {
    text-align: right
}

.single-post .entry-social .social-title {
    margin-bottom: 18px
}

.single-post .entry-social ul {
    margin-bottom: 0
}

.single-post .entry-social ul li {
    list-style: none
}

.single-post .entry-social a {
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 32px;
    font-size: 12px;
    color: #ededed;
    background-color: #bf2025;
    border: 1px solid #bf2025
}

.single-post .entry-social a+a {
    margin: 0 0 0 10px
}

.single-post .entry-social a i {
    line-height: 12px
}

.single-post .entry-social a:hover {
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    background-color: initial
}

.single-post .entry-author-info {
    display: flex;
    margin: 75px 0 30px
}

.single-post .entry-author-info .entry-author-avatar+.entry-author-meta {
    margin-left: 30px
}

.single-post .entry-author-info+.entry-navigation {
    padding-top: 10px
}

.single-post .entry-author-info .entry-author-meta {
    align-self: center
}

.single-post .entry-author-info .entry-author-meta .author-name {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
    text-transform: uppercase
}

.single-post .entry-author-info .entry-author-meta .author-name a {
    color: inherit
}

.single-post .entry-author-info .entry-author-meta .author-name a:hover {
    color: #bf2025
}

.single-post .entry-author-info .entry-author-meta .author-position {
    line-height: 1.2;
    font-weight: 600;
    color: #bf2025
}

.single-post .entry-author-info .entry-author-meta .author-description {
    position: relative;
    max-width: 75%;
    line-height: 1.4;
    z-index: 2
}

@media screen and (max-width:767px) {
    .single-post .entry-author-info .entry-author-meta .author-description {
        max-width: 100%
    }
}

.single-post .entry-author-info .entry-author-meta .user-social {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.single-post .entry-author-info .entry-author-meta .user-social a {
    color: #ededed;
    margin-right: 20px
}

.single-post .entry-author-info .entry-author-meta .user-social a i:before {
    font-weight: 700
}

.single-post .entry-author-info .entry-author-meta .user-social a:hover {
    color: #bf2025
}

@media screen and (max-width:575px) {
    .single-post .entry-author-info {
        flex-wrap: wrap
    }

    .single-post .entry-author-info .entry-author-avatar,
    .single-post .entry-author-info .entry-author-meta {
        width: 100%
    }

    .single-post .entry-author-info .entry-author-avatar+.entry-author-meta {
        margin: 30px 0 0
    }
}

.single-post .entry-blog {
    overflow: hidden;
    margin-bottom: 10px
}

.single-post .entry-footer .entry-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 53px;
    padding-top: 54px
}

.single-post .entry-footer .entry-content:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

@media screen and (max-width:767px) {

    .single-post .entry-footer .entry-content .entry-tags,
    .single-post .entry-footer .entry-content .entry-social {
        width: 100%
    }

    .single-post .entry-footer .entry-content .entry-tags+.entry-social {
        text-align: left;
        margin-top: 30px
    }
}

.ct-posts-pagination {
    padding-top: 40px
}

.ct-posts-pagination .page-numbers {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-weight: 600;
    background-color: initial;
    text-align: center;
    display: inline-block;
    margin: 20px 20px 0 0;
    color: #ededed;
    border: 1px solid #343434;
    cursor: pointer;
    z-index: 1
}

.ct-posts-pagination .page-numbers.current {
    background-color: #bf2025
}

.ct-posts-pagination .page-numbers:not(.current):before,
.ct-posts-pagination .page-numbers:not(.current):after {
    content: '';
    position: absolute;
    background: #161616;
    z-index: -1;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-posts-pagination .page-numbers:not(.current):before {
    width: 0;
    height: calc(100% + 2px);
    top: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.ct-posts-pagination .page-numbers:not(.current):after {
    height: 0;
    width: calc(100% + 2px);
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.ct-posts-pagination .page-numbers:not(.current):hover {
    color: #fff;
    border-color: #bf2025;
    background-size: 10% 10%;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-posts-pagination .page-numbers:not(.current):hover:before {
    width: calc(100% - 20%)
}

.ct-posts-pagination .page-numbers:not(.current):hover:after {
    height: calc(100% - 30%)
}

.ct-posts-pagination .posts-page-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: left
}

.entry-navigation {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap
}

.entry-navigation .nav-links {
    display: flex;
    position: relative;
    justify-content: space-between;
    width: 100%
}

@media screen and (max-width:767px) {
    .entry-navigation .nav-links {
        flex-wrap: wrap
    }
}

@media screen and (max-width:575px) {
    .entry-navigation .nav-links .nav-item {
        width: 100%;
        justify-content: left
    }
}

.entry-navigation .nav-post-meta {
    max-width: 260px
}

@media screen and (max-width:767px) {
    .entry-navigation .nav-post-meta {
        max-width: 100%
    }
}

.entry-navigation .nav-post-meta a.nav-post-label {
    display: block;
    color: #c6c6c6;
    font-size: 14px;
    line-height: 1.2;
    font-family: mulish, sans-serif
}

.entry-navigation .nav-post-meta a.nav-post-label:hover {
    color: #bf2025
}

.entry-navigation .nav-post-meta a.nav-post-link {
    font-weight: 600;
    line-height: 1.17;
    color: #ededed;
    margin-top: 3px;
    display: inline-block
}

.entry-navigation .nav-post-meta a.nav-post-link:hover {
    color: #bf2025
}

@media screen and (max-width:767px) {
    .entry-navigation .nav-post-meta a.nav-post-link {
        font-size: 14px
    }
}

.entry-navigation .nav-post-prev {
    flex-direction: row-reverse;
    padding-right: 20px
}

@media screen and (max-width:575px) {
    .entry-navigation .nav-post-prev {
        padding-right: 0
    }
}

.entry-navigation .nav-post-prev .nav-post-meta {
    padding-left: 18px
}

.entry-navigation .nav-post-prev .nav-post-meta a,
.entry-navigation .nav-post-prev .nav-post-button i {
    font-weight: 700;
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: -100%
}

.entry-navigation .nav-post-prev .nav-post-meta a {
    -webkit-transition: background-position 200ms ease 150ms;
    -khtml-transition: background-position 200ms ease 150ms;
    -moz-transition: background-position 200ms ease 150ms;
    -ms-transition: background-position 200ms ease 150ms;
    -o-transition: background-position 200ms ease 150ms;
    transition: background-position 200ms ease 150ms
}

.entry-navigation .nav-post-prev .nav-post-button i {
    -webkit-transition: background-position 200ms ease;
    -khtml-transition: background-position 200ms ease;
    -moz-transition: background-position 200ms ease;
    -ms-transition: background-position 200ms ease;
    -o-transition: background-position 200ms ease;
    transition: background-position 200ms ease
}

.entry-navigation .nav-post-prev:hover .nav-post-meta a {
    background-position: 0 100%;
    -webkit-transition: background-position 250ms ease;
    -khtml-transition: background-position 250ms ease;
    -moz-transition: background-position 250ms ease;
    -ms-transition: background-position 250ms ease;
    -o-transition: background-position 250ms ease;
    transition: background-position 250ms ease
}

.entry-navigation .nav-post-prev:hover .nav-post-button i {
    background-position: 0 100%;
    -webkit-transition: background-position 250ms ease 150ms;
    -khtml-transition: background-position 250ms ease 150ms;
    -moz-transition: background-position 250ms ease 150ms;
    -ms-transition: background-position 250ms ease 150ms;
    -o-transition: background-position 250ms ease 150ms;
    transition: background-position 250ms ease 150ms
}

.entry-navigation .nav-post-next {
    text-align: right;
    padding-left: 20px
}

.entry-navigation .nav-post-next .nav-post-holder {
    justify-content: flex-end
}

.entry-navigation .nav-post-next .nav-post-meta {
    padding-right: 18px
}

.entry-navigation .nav-post-next .nav-post-meta a,
.entry-navigation .nav-post-next .nav-post-button i {
    font-weight: 700;
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%
}

.entry-navigation .nav-post-next .nav-post-meta a {
    -webkit-transition: background-position 200ms ease 150ms;
    -khtml-transition: background-position 200ms ease 150ms;
    -moz-transition: background-position 200ms ease 150ms;
    -ms-transition: background-position 200ms ease 150ms;
    -o-transition: background-position 200ms ease 150ms;
    transition: background-position 200ms ease 150ms
}

.entry-navigation .nav-post-next .nav-post-button i {
    -webkit-transition: background-position 200ms ease;
    -khtml-transition: background-position 200ms ease;
    -moz-transition: background-position 200ms ease;
    -ms-transition: background-position 200ms ease;
    -o-transition: background-position 200ms ease;
    transition: background-position 200ms ease
}

.entry-navigation .nav-post-next:hover .nav-post-meta a {
    background-position: 0 100%;
    -webkit-transition: background-position 250ms ease;
    -khtml-transition: background-position 250ms ease;
    -moz-transition: background-position 250ms ease;
    -ms-transition: background-position 250ms ease;
    -o-transition: background-position 250ms ease;
    transition: background-position 250ms ease
}

.entry-navigation .nav-post-next:hover .nav-post-button i {
    background-position: 0 100%;
    -webkit-transition: background-position 250ms ease 150ms;
    -khtml-transition: background-position 250ms ease 150ms;
    -moz-transition: background-position 250ms ease 150ms;
    -ms-transition: background-position 250ms ease 150ms;
    -o-transition: background-position 250ms ease 150ms;
    transition: background-position 250ms ease 150ms
}

@media screen and (max-width:767px) {
    .entry-navigation .nav-post-next {
        flex-direction: row-reverse;
        padding-left: 0;
        margin-top: 10px;
        text-align: left
    }

    .entry-navigation .nav-post-next .nav-post-meta {
        padding: 0 0 0 18px
    }

    .entry-navigation .nav-post-next .nav-post-meta a {
        -webkit-transition: background-position 200ms ease;
        -khtml-transition: background-position 200ms ease;
        -moz-transition: background-position 200ms ease;
        -ms-transition: background-position 200ms ease;
        -o-transition: background-position 200ms ease;
        transition: background-position 200ms ease
    }

    .entry-navigation .nav-post-next .nav-post-button i {
        -webkit-transition: background-position 200ms ease 150ms;
        -khtml-transition: background-position 200ms ease 150ms;
        -moz-transition: background-position 200ms ease 150ms;
        -ms-transition: background-position 200ms ease 150ms;
        -o-transition: background-position 200ms ease 150ms;
        transition: background-position 200ms ease 150ms
    }

    .entry-navigation .nav-post-next:hover .nav-post-meta a {
        background-position: 0 100%;
        -webkit-transition: background-position 250ms ease 150ms;
        -khtml-transition: background-position 250ms ease 150ms;
        -moz-transition: background-position 250ms ease 150ms;
        -ms-transition: background-position 250ms ease 150ms;
        -o-transition: background-position 250ms ease 150ms;
        transition: background-position 250ms ease 150ms
    }

    .entry-navigation .nav-post-next:hover .nav-post-button i {
        background-position: 0 100%;
        -webkit-transition: background-position 250ms ease;
        -khtml-transition: background-position 250ms ease;
        -moz-transition: background-position 250ms ease;
        -ms-transition: background-position 250ms ease;
        -o-transition: background-position 250ms ease;
        transition: background-position 250ms ease
    }
}

.entry-navigation .nav-post-button {
    position: relative;
    font-size: 16px;
    padding: 17.5px 23.5px;
    margin-top: 8px;
    background-color: #bf2025;
    clip-path: polygon(35% 0, 100% 0, 100% calc(100% - 35%), calc(100% - 35%) 100%, 0 100%, 0 35%)
}

.entry-navigation .nav-post-button:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #161616;
    clip-path: polygon(35% 0, 100% 0, 100% calc(100% - 35%), calc(100% - 35%) 100%, 0 100%, 0 35%);
    z-index: -1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.entry-navigation .nav-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

.ct-item-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin-bottom: 15px
}

.ct-item-meta li {
    font-size: 14px;
    line-height: 1.714;
    color: #ededed;
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

.ct-item-meta li a {
    color: inherit;
    position: relative
}

.ct-item-meta li a:hover {
    color: #bf2025
}

.ct-item-meta li:last-child {
    margin-right: 0
}

.ct-item-meta li+li {
    position: relative;
    padding-left: 25px
}

.ct-item-meta li+li:before {
    content: "\f45c";
    position: absolute;
    color: #bf2025;
    left: 10px;
    font-size: 5px;
    top: 8px;
    font-weight: 900;
    font-family: "font awesome 5 pro"
}

.meta-style2 li {
    margin-bottom: 0 !important
}

.page-links {
    margin-top: 24px;
    clear: left
}

.page-links .post-page-numbers {
    background-color: #ededed;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-weight: 700
}

.page-links .post-page-numbers.current,
.page-links .post-page-numbers:hover {
    background-color: #bf2025
}

.page-links .post-page-numbers+.post-page-numbers {
    margin-left: 4px
}

.single-post .site-content .site-main.post-padding .entry-featured+.entry-body {
    padding-top: 37px
}

.single-post .site-content .site-main.post-padding .ct-item-meta {
    margin-bottom: 9px
}

.single-post .site-content .site-main.post-padding .entry-footer .entry-content {
    align-items: start;
    padding-top: 80px
}

@media screen and (max-width:991px) {

    .single-post .site-content .site-main.post-padding .single-hentry .entry-body,
    .single-post .site-content .site-main.post-padding .single-hentry .entry-footer,
    .single-post .site-content .site-main.post-padding .single-hentry .entry-author-info,
    .single-post .site-content .site-main.post-padding .single-hentry .entry-navigation,
    .single-post .site-content .site-main.post-padding #comments {
        padding-right: 0 !important;
        padding-left: 0 !important
    }
}

body.error404 {
    background-image: url(../images/404-bg.jpg);
    background-size: cover;
    background-position: 50%
}

body.error404 .site-content {
    padding: 0
}

body.error404 .error-404 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    height: 100vh
}

body.error404 .error-404-content {
    position: relative;
    margin: auto;
    padding: 0 15px;
    z-index: 99;
    -webkit-animation: icon-bounce .5s linear 1 2.5s;
    -khtml-animation: icon-bounce .5s linear 1 2.5s;
    -moz-animation: icon-bounce .5s linear 1 2.5s;
    -ms-animation: icon-bounce .5s linear 1 2.5s;
    -o-animation: icon-bounce .5s linear 1 2.5s;
    animation: icon-bounce .5s linear 1 2.5s
}

body.error404 .error-404-title {
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    body.error404 .error-404-title {
        font-size: 60px
    }
}

@media screen and (max-width:575px) {
    body.error404 .error-404-title {
        font-size: 50px
    }
}

@media screen and (max-width:480px) {
    body.error404 .error-404-title {
        font-size: 30px;
        margin-bottom: 15px
    }
}

body.error404 .error-404-desc {
    margin: 0 auto 33px;
    max-width: 500px;
    color: #ededed
}

@media screen and (max-width:480px) {
    body.error404 .error-404-desc {
        max-width: 400px
    }
}

@media screen and (min-width:1200px) {

    .sidebar-sticky,
    .col-sidebar-fixed>.vc_column-inner {
        position: -webkit-sticky;
        position: sticky;
        top: 40px
    }

    .admin-bar .sidebar-sticky,
    .admin-bar .col-sidebar-fixed>.vc_column-inner {
        top: 72px
    }

    .header-sticky .sidebar-sticky,
    .header-sticky .col-sidebar-fixed>.vc_column-inner {
        top: 120px
    }

    .admin-bar.header-sticky .sidebar-sticky,
    .admin-bar.header-sticky .col-sidebar-fixed>.vc_column-inner {
        top: 152px
    }
}

@media screen and (max-width:991px) {
    #secondary {
        margin-top: 80px
    }
}

#secondary .widget {
    padding: 29px 0 50px
}

#secondary .widget:last-child {
    padding-bottom: 0
}

#secondary .widget.widget_search .widget-title {
    padding-bottom: 0;
    margin-bottom: 30px;
    border-bottom: none
}

#secondary .widget.widget_search .widget-title:before {
    display: none
}

#secondary .widget.widget_tag_cloud {
    padding: 29px 0 30px
}

#secondary .widget.widget_ct_recent_posts .entry-title a {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

#secondary .widget.widget_search .wp-block-search__button {
    color: #fff;
    padding: 0;
    width: 150px;
    height: 50px
}

#secondary .widget.widget_recent_comments .recentcomments {
    font-size: 16px;
    padding-left: 18px
}

#secondary .widget.widget_recent_comments .recentcomments .comment-author-link {
    position: relative;
    font-weight: 500
}

#secondary .widget.widget_recent_comments .recentcomments .comment-author-link:before {
    position: absolute;
    content: '';
    background-color: #bf2025;
    top: 50%;
    left: -18px;
    width: 8px;
    height: 8px;
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

#secondary .widget.widget_recent_comments .recentcomments+.recentcomments {
    margin-top: 12px
}

ul.product-categories {
    list-style: none
}

.widget select {
    max-width: 100%
}

.widget span.count {
    display: inline-block;
    line-height: 32px;
    font-weight: 500;
    color: #ededed;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.logged-in .hide-logged {
    display: none
}

.widget_categories ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_archive ul,
.widget_meta ul {
    list-style: none;
    margin-bottom: 0
}

.widget_archive .widget-title {
    margin-bottom: 14px !important
}

#content .widget_pages ul ul ul ul ul,
#content .widget_nav_menu ul ul ul ul ul,
#content .widget_meta ul ul ul ul ul,
#content .widget_recent_entries ul ul ul ul ul {
    padding-left: 0
}

#content .widget_pages .widget-title,
#content .widget_nav_menu .widget-title,
#content .widget_meta .widget-title,
#content .widget_recent_entries .widget-title {
    margin-bottom: 22px
}

#content .widget_product_categories .widget-content>ul,
#content .widget_categories .widget-content>ul,
#content .widget_nav_menu .widget-content>ul,
#content .widget_pages .widget-content>ul,
#content .widget_archive .widget-content>ul,
#content .widget_meta .widget-content>ul,
#content .widget_recent_entries .widget-content>ul,
#content .widget_product_categories .menu-testing-menu-container ul,
#content .widget_categories .menu-testing-menu-container ul,
#content .widget_nav_menu .menu-testing-menu-container ul,
#content .widget_pages .menu-testing-menu-container ul,
#content .widget_archive .menu-testing-menu-container ul,
#content .widget_meta .menu-testing-menu-container ul,
#content .widget_recent_entries .menu-testing-menu-container ul {
    overflow: hidden
}

#content .widget_product_categories ul li:not(:last-child),
#content .widget_categories ul li:not(:last-child),
#content .widget_nav_menu ul li:not(:last-child),
#content .widget_pages ul li:not(:last-child),
#content .widget_archive ul li:not(:last-child),
#content .widget_meta ul li:not(:last-child),
#content .widget_recent_entries ul li:not(:last-child) {
    padding-bottom: 8px
}

#content .widget_product_categories ul li,
#content .widget_categories ul li,
#content .widget_nav_menu ul li,
#content .widget_pages ul li,
#content .widget_archive ul li,
#content .widget_meta ul li,
#content .widget_recent_entries ul li {
    font-size: 0
}

#content .widget_product_categories ul li a,
#content .widget_categories ul li a,
#content .widget_nav_menu ul li a,
#content .widget_pages ul li a,
#content .widget_archive ul li a,
#content .widget_meta ul li a,
#content .widget_recent_entries ul li a {
    color: #ededed;
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 500;
    padding-left: 18px;
    z-index: 1;
    font-family: mulish, sans-serif
}

#content .widget_product_categories ul li a:before,
#content .widget_categories ul li a:before,
#content .widget_nav_menu ul li a:before,
#content .widget_pages ul li a:before,
#content .widget_archive ul li a:before,
#content .widget_meta ul li a:before,
#content .widget_recent_entries ul li a:before {
    position: absolute;
    content: '';
    background-color: #bf2025;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%)
}

#content .widget_product_categories ul li a .count,
#content .widget_categories ul li a .count,
#content .widget_nav_menu ul li a .count,
#content .widget_pages ul li a .count,
#content .widget_archive ul li a .count,
#content .widget_meta ul li a .count,
#content .widget_recent_entries ul li a .count {
    position: relative;
    padding: 0 5px;
    color: #c6c6c6
}

#content .widget_product_categories ul li a:hover,
#content .widget_categories ul li a:hover,
#content .widget_nav_menu ul li a:hover,
#content .widget_pages ul li a:hover,
#content .widget_archive ul li a:hover,
#content .widget_meta ul li a:hover,
#content .widget_recent_entries ul li a:hover {
    color: #bf2025
}

#content .widget_product_categories ul li a:hover .count,
#content .widget_categories ul li a:hover .count,
#content .widget_nav_menu ul li a:hover .count,
#content .widget_pages ul li a:hover .count,
#content .widget_archive ul li a:hover .count,
#content .widget_meta ul li a:hover .count,
#content .widget_recent_entries ul li a:hover .count {
    color: #bf2025
}

#content .widget_product_categories ul li a:hover .count:before,
#content .widget_categories ul li a:hover .count:before,
#content .widget_nav_menu ul li a:hover .count:before,
#content .widget_pages ul li a:hover .count:before,
#content .widget_archive ul li a:hover .count:before,
#content .widget_meta ul li a:hover .count:before,
#content .widget_recent_entries ul li a:hover .count:before,
#content .widget_product_categories ul li a:hover .count:after,
#content .widget_categories ul li a:hover .count:after,
#content .widget_nav_menu ul li a:hover .count:after,
#content .widget_pages ul li a:hover .count:after,
#content .widget_archive ul li a:hover .count:after,
#content .widget_meta ul li a:hover .count:after,
#content .widget_recent_entries ul li a:hover .count:after {
    color: inherit
}

#content .widget_product_categories ul li.current-menu-item>a,
#content .widget_categories ul li.current-menu-item>a,
#content .widget_nav_menu ul li.current-menu-item>a,
#content .widget_pages ul li.current-menu-item>a,
#content .widget_archive ul li.current-menu-item>a,
#content .widget_meta ul li.current-menu-item>a,
#content .widget_recent_entries ul li.current-menu-item>a,
#content .widget_product_categories ul li.current-cat>a,
#content .widget_categories ul li.current-cat>a,
#content .widget_nav_menu ul li.current-cat>a,
#content .widget_pages ul li.current-cat>a,
#content .widget_archive ul li.current-cat>a,
#content .widget_meta ul li.current-cat>a,
#content .widget_recent_entries ul li.current-cat>a,
#content .widget_product_categories ul li.current-cat-parent>a,
#content .widget_categories ul li.current-cat-parent>a,
#content .widget_nav_menu ul li.current-cat-parent>a,
#content .widget_pages ul li.current-cat-parent>a,
#content .widget_archive ul li.current-cat-parent>a,
#content .widget_meta ul li.current-cat-parent>a,
#content .widget_recent_entries ul li.current-cat-parent>a,
#content .widget_product_categories ul li>a:hover,
#content .widget_categories ul li>a:hover,
#content .widget_nav_menu ul li>a:hover,
#content .widget_pages ul li>a:hover,
#content .widget_archive ul li>a:hover,
#content .widget_meta ul li>a:hover,
#content .widget_recent_entries ul li>a:hover {
    color: #bf2025
}

#content .widget_product_categories ul li .sub-menu,
#content .widget_categories ul li .sub-menu,
#content .widget_nav_menu ul li .sub-menu,
#content .widget_pages ul li .sub-menu,
#content .widget_archive ul li .sub-menu,
#content .widget_meta ul li .sub-menu,
#content .widget_recent_entries ul li .sub-menu,
#content .widget_product_categories ul li .children,
#content .widget_categories ul li .children,
#content .widget_nav_menu ul li .children,
#content .widget_pages ul li .children,
#content .widget_archive ul li .children,
#content .widget_meta ul li .children,
#content .widget_recent_entries ul li .children {
    padding-left: 20px
}

#content .widget_product_categories .nice-select ul li,
#content .widget_categories .nice-select ul li,
#content .widget_nav_menu .nice-select ul li,
#content .widget_pages .nice-select ul li,
#content .widget_archive .nice-select ul li,
#content .widget_meta .nice-select ul li,
#content .widget_recent_entries .nice-select ul li {
    border: none;
    font-size: 13px;
    padding: 8px 24px;
    font-weight: 400
}

.widget_recent_entries a,
.widget_recent_comments a {
    font-weight: 500
}

.widget_recent_entries ul,
.widget_recent_comments ul {
    list-style: none
}

.widget_rss ul {
    list-style: none;
    padding: 0
}

.widget_rss li {
    margin-bottom: 16px
}

.widget_rss li:last-child {
    margin-bottom: 0
}

.widget_rss .rsswidget {
    font-weight: 700;
    display: inline-block
}

.widget_rss .rss-date {
    font-size: .875em;
    font-style: italic;
    display: block
}

.widget_rss cite {
    font-weight: 700;
    font-size: .875em
}

.widget_calendar th,
.widget_calendar td {
    color: #ededed;
    text-align: center;
    line-height: normal;
    padding: 10px
}

.widget_calendar th a,
.widget_calendar td a {
    font-weight: 700
}

.widget_calendar th {
    font-size: 15px;
    font-family: chakra petch, sans-serif
}

.widget_calendar td {
    font-size: 14px
}

.widget_calendar table {
    margin: 0
}

.widget_calendar table>caption {
    caption-side: top;
    background-color: #121212;
    text-transform: uppercase;
    padding: 9.5px 0;
    margin-bottom: 13px;
    border-top: none;
    line-height: normal;
    font-weight: 700;
    font-size: 16px;
    color: #ededed;
    text-align: center;
    font-family: chakra petch, sans-serif
}

.widget_calendar #today {
    background-color: #bf2025
}

.widget_calendar #today a {
    color: #ededed
}

.widget_calendar .wp-calendar-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 10px
}

.widget_calendar .wp-calendar-nav a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    line-height: 40px;
    padding: 0 20px
}

.widget_calendar .wp-calendar-nav a:hover {
    color: #bf2025
}

.widget_calendar .wp-calendar-nav .wp-calendar-nav-prev {
    margin-right: 20px;
    flex-grow: 1
}

.widget_ef_recent_posts li {
    padding-bottom: 14px
}

.widget_ef_recent_posts li:last-child {
    padding-bottom: 0
}

.widget_ef_recent_posts .entry-posted-in a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, .66)
}

.widget_ef_recent_posts .entry-posted-in a:hover {
    color: #bf2025
}

.widget_ef_recent_posts .entry-title {
    font-size: 18px;
    line-height: 24px;
    margin-top: 4px
}

.widget_ef_recent_posts .entry-title a {
    color: #222
}

.widget_ef_recent_posts .entry-title a:hover {
    color: #bf2025
}

.widget_ef_recent_posts .entry-title+.entry-meta {
    margin-top: 15px
}

.ct-social {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap
}

.ct-social li {
    margin-right: 7px;
    margin-bottom: 4px
}

.ct-social a {
    font-size: 14px;
    color: #fff;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    display: inline-block;
    background-color: #bf2025
}

.ct-social a:hover {
    color: #fff;
    background-color: #ededed
}

.ct-social a:hover:before {
    opacity: 0
}

.ct-social a:hover:after {
    opacity: 1
}

.widget_newsletterwidget {
    background-color: #061b49;
    padding: 32px 40px 40px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px
}

@media screen and (max-width:1199px) {
    .widget_newsletterwidget {
        padding-left: 30px;
        padding-right: 30px
    }
}

.widget_newsletterwidget .description {
    padding-bottom: 22px
}

.widget_newsletterwidget .tnp-widget {
    position: relative
}

.widget_newsletterwidget .tnp-widget .tnp-field-email {
    margin-bottom: 0
}

.widget_newsletterwidget .tnp-widget .tnp-field-email .tnp-email {
    height: 51px;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    background-color: initial;
    border: 1px solid #283a62;
    background-color: initial;
    font-size: 13px;
    color: #6b89c1;
    font-style: normal;
    padding: 0 19px
}

.widget_newsletterwidget .tnp-widget .tnp-field-email .tnp-email:focus {
    border-color: #bf2025
}

.widget_newsletterwidget .tnp-widget .tnp-field-button {
    margin: 0;
    width: 51px;
    height: 51px;
    position: absolute;
    top: 0;
    right: 0
}

.widget_newsletterwidget .tnp-widget .tnp-field-button:before {
    content: '\f061';
    font-size: 11px;
    color: #fff;
    height: 22px;
    width: 22px;
    line-height: 22px;
    -webkit-border-radius: 22px;
    -khtml-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
    background-color: #bf2025;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: Grandicon;
    text-align: center
}

.widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
    top: 0;
    right: 0;
    opacity: 0;
    padding: 0;
    height: 51px;
    width: 51px;
    position: absolute
}

.widget_ct_recent_posts .entry-brief {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.widget_ct_recent_posts .entry-brief img {
    width: 100%
}

.widget_ct_recent_posts .entry-brief:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.widget_ct_recent_posts .entry-brief .entry-media {
    display: block;
    position: relative;
    width: 140px;
    min-width: 140px;
    margin-right: 20px;
    overflow: hidden;
    z-index: 1
}

@media screen and (max-width:575px) {
    .widget_ct_recent_posts .entry-brief .entry-media {
        width: 100px;
        min-width: 100px
    }
}

.widget_ct_recent_posts .entry-brief .entry-media:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    opacity: 0;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.widget_ct_recent_posts .entry-brief:hover .entry-media:before {
    -webkit-animation: overlay_circle .5s;
    -khtml-animation: overlay_circle .5s;
    -moz-animation: overlay_circle .5s;
    -ms-animation: overlay_circle .5s;
    -o-animation: overlay_circle .5s;
    animation: overlay_circle .5s
}

.widget_ct_recent_posts .entry-content {
    align-self: center
}

.widget_ct_recent_posts .entry-content .entry-title {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 23px;
    font-weight: 600
}

@media screen and (max-width:480px) {
    .widget_ct_recent_posts .entry-content .entry-title {
        font-size: 14px;
        margin-bottom: 0
    }
}

.tagcloud a,
.entry-tags a {
    padding: 7px 15px 6px;
    margin: 0 16px 20px 0;
    font-weight: 500;
    color: #ededed;
    background-color: #121212;
    border: 1px solid transparent;
    display: inline-block;
    font-size: 15px !important;
    line-height: 1.666;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    -webkit-transition: .7s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .7s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .7s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .7s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .7s cubic-bezier(.24, .74, .58, 1);
    transition: .7s cubic-bezier(.24, .74, .58, 1)
}

.tagcloud a:before,
.entry-tags a:before,
.tagcloud a:after,
.entry-tags a:after {
    content: '';
    position: absolute;
    background: #121212;
    z-index: -1;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.tagcloud a:before,
.entry-tags a:before {
    width: 0;
    height: calc(100% + 3px);
    top: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.tagcloud a:after,
.entry-tags a:after {
    height: 0;
    width: calc(100% + 3px);
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.tagcloud a:hover,
.entry-tags a:hover {
    color: #fff;
    border-color: #bf2025;
    background-size: 10% 10%;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.tagcloud a:hover:before,
.entry-tags a:hover:before {
    width: calc(100% - 20%)
}

.tagcloud a:hover:after,
.entry-tags a:hover:after {
    height: calc(100% - 30%)
}

.widget_search .search-form {
    position: relative
}

.widget_search .search-form .search-submit {
    padding: 0;
    border: none;
    line-height: 45px;
    height: 45px;
    width: 45px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #bf2025;
    font-weight: 400;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .1s;
    -khtml-transition: all .1s;
    -moz-transition: all .1s;
    -ms-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    background-color: initial;
    background-image: none
}

.widget_search .search-form .search-submit i {
    font-size: 13px
}

.widget_search .search-form .search-submit:before,
.widget_search .search-form .search-submit:after {
    display: none
}

.widget_search .search-form .search-submit:hover {
    color: #ededed
}

.widget_search .search-form .search-field {
    border: 2px solid #ddd;
    padding: 12px 40px 12px 12px;
    font-size: 13px;
    line-height: 1.923;
    font-weight: 400;
    height: 53px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    color: #ededed
}

.widget_search .search-form .search-field:focus {
    border-color: #bf2025
}

.ct-getintouch .ct-getintouch-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 15px
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-icon i {
    font-size: 32px;
    color: #fff
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-icon i.fac-clock {
    font-size: 26px
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-icon {
    line-height: 1;
    min-width: 25px;
    text-align: center
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-icon .flaticon-map {
    margin-top: 2px
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-meta {
    font-size: 15px
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-meta label {
    line-height: 20px
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-meta span {
    display: block;
    line-height: 24px
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-meta i {
    -webkit-transition: all 300ms linear 100ms;
    -khtml-transition: all 300ms linear 100ms;
    -moz-transition: all 300ms linear 100ms;
    -ms-transition: all 300ms linear 100ms;
    -o-transition: all 300ms linear 100ms;
    transition: all 300ms linear 100ms
}

.ct-getintouch .ct-getintouch-item .ct-getintouch-meta:hover i {
    -webkit-animation: icon-bounce .5s linear 1;
    -khtml-animation: icon-bounce .5s linear 1;
    -moz-animation: icon-bounce .5s linear 1;
    -ms-animation: icon-bounce .5s linear 1;
    -o-animation: icon-bounce .5s linear 1;
    animation: icon-bounce .5s linear 1
}

.ct-getintouch .ct-getintouch-item a.btn,
.ct-getintouch .ct-getintouch-item a[type=submit],
.ct-getintouch .ct-getintouch-item .btn-form a[type=submit],
.btn-form .ct-getintouch .ct-getintouch-item a[type=submit] {
    height: 45px;
    line-height: 41px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.ct-getintouch .ct-getintouch-item a.btn:after,
.ct-getintouch .ct-getintouch-item a[type=submit]:after,
.ct-getintouch .ct-getintouch-item .btn-form a[type=submit]:after,
.btn-form .ct-getintouch .ct-getintouch-item a[type=submit]:after {
    content: "";
    background: #fff;
    -webkit-transition: all .8s;
    -khtml-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    position: absolute;
    height: 120%;
    width: 50px;
    opacity: .2;
    left: -65%;
    top: -10%;
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0)
}

.ct-getintouch .ct-getintouch-item a.btn:hover:after,
.ct-getintouch .ct-getintouch-item a[type=submit]:hover:after,
.ct-getintouch .ct-getintouch-item .btn-form a[type=submit]:hover:after,
.btn-form .ct-getintouch .ct-getintouch-item a[type=submit]:hover:after {
    left: 130%
}

.ct-getintouch .ct-getintouch-item+.ct-getintouch-item {
    margin-top: 30px
}

.widget_text p:last-child {
    margin-bottom: 0
}

.widget_media_gallery .gallery .gallery-item {
    width: inherit;
    padding: 0;
    margin: 2px !important;
    position: relative
}

.widget_media_gallery .gallery .gallery-item img {
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    width: 60px;
    height: 60px
}

.widget_media_gallery .gallery .gallery-item a {
    display: block;
    position: relative
}

.widget_media_gallery .gallery .gallery-item a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(209, 101, 39, .75);
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    transform: scale(0);
    z-index: 1;
    border-radius: 3px
}

.widget_media_gallery .gallery .gallery-item a:after {
    content: "\f06e";
    font-family: "font awesome 5 pro";
    font-size: 14px;
    line-height: 14px;
    font-weight: 900;
    color: #fff;
    z-index: 2;
    position: absolute;
    left: 37%;
    top: 37%;
    transform: scale(0);
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.widget_media_gallery .gallery .gallery-item a:hover:before,
.widget_media_gallery .gallery .gallery-item a:hover:after {
    transform: scale(1);
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.ct-newsletter.widget {
    background-color: #0e0e0e;
    padding: 32px 25px 42px
}

.ct-newsletter.widget .widget-title {
    padding-bottom: 22px;
    margin-bottom: 0;
    color: #fff;
    font-size: 22px
}

.ct-newsletter.widget .widget-title:before {
    content: '\f2b6';
    font-family: Grandicon;
    position: static;
    background-image: none;
    background-color: initial;
    font-size: 20px;
    margin-right: 14px
}

.ct-newsletter.widget .tnp-field-email {
    margin-bottom: 15px
}

.ct-newsletter.widget .tnp-field-email .tnp-email {
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ececec;
    height: 58px;
    font-size: 13px;
    text-align: center;
    color: #222
}

.ct-newsletter.widget .tnp-field-button .tnp-button {
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    line-height: 58px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #ededed
}

.ct-newsletter.widget .tnp-field-button .tnp-button:hover {
    background-color: #bf2025
}

#sb_instagram #sbi_images {
    padding: 0 !important;
    margin: -8px -4px 0;
    width: auto;
    float: none
}

#sb_instagram #sbi_images .sbi_item {
    padding: 0 4px !important;
    margin-top: 8px !important
}

#sb_instagram #sbi_images .sbi_item a {
    position: relative
}

#sb_instagram #sbi_images .sbi_item a img {
    width: 100%
}

#sb_instagram #sbi_images .sbi_item a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(209, 101, 39, .8);
    -webkit-transition: all 250ms linear 0ms;
    -khtml-transition: all 250ms linear 0ms;
    -moz-transition: all 250ms linear 0ms;
    -ms-transition: all 250ms linear 0ms;
    -o-transition: all 250ms linear 0ms;
    transition: all 250ms linear 0ms;
    opacity: 0;
    z-index: 1
}

#sb_instagram #sbi_images .sbi_item a:after {
    content: '\f16d';
    font-size: 18px;
    font-family: Grandicon;
    color: #fff;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 250ms linear 0ms;
    -khtml-transition: all 250ms linear 0ms;
    -moz-transition: all 250ms linear 0ms;
    -ms-transition: all 250ms linear 0ms;
    -o-transition: all 250ms linear 0ms;
    transition: all 250ms linear 0ms;
    opacity: 0
}

#sb_instagram #sbi_images .sbi_item a:hover:before,
#sb_instagram #sbi_images .sbi_item a:hover:after {
    opacity: 1
}

#sb_instagram .sbi-screenreader {
    opacity: 0
}

@media screen and (max-width:767px) {
    #sb_instagram.sbi_col_3 #sbi_images .sbi_item {
        width: 33.33% !important
    }
}

#sb_instagram.img-border-radius .sbi_item a {
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden
}

#sb_instagram #sbi_mod_error {
    display: none !important
}

.ct-wg-author {
    position: relative
}

.ct-wg-author .wg-author-dot1 {
    position: absolute;
    top: 8px;
    left: -9px;
    width: 34px;
    height: 85px;
    background-image: url(../images/box-author-dots.html);
    z-index: 99
}

.ct-wg-author .wg-author-dot2 {
    width: 20px;
    height: 70px;
    position: absolute;
    bottom: 17px;
    right: -8px;
    z-index: 99
}

.ct-wg-author .wg-author-dot2 span {
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: #bf2025;
    left: 0
}

.ct-wg-author .wg-author-dot2 span:nth-child(1) {
    top: 0
}

.ct-wg-author .wg-author-dot2 span:nth-child(2) {
    top: 25px;
    background-color: #c6c6c6
}

.ct-wg-author .wg-author-dot2 span:nth-child(3) {
    bottom: 0;
    background-color: #ededed
}

.ct-wg-author .wg-author-avatar {
    display: inline-block;
    max-width: 138px;
    margin-bottom: 13px
}

.ct-wg-author .wg-author-avatar img {
    width: 100%;
    border: 5px solid #fff;
    -webkit-border-radius: 138px;
    -khtml-border-radius: 138px;
    -moz-border-radius: 138px;
    -ms-border-radius: 138px;
    -o-border-radius: 138px;
    border-radius: 138px
}

.ct-wg-author .wg-author-name {
    font-size: 22px;
    color: #fff;
    margin-bottom: 2px
}

.ct-wg-author .wg-author-position {
    font-size: 14px;
    color: #d7e0f5
}

.ct-wg-author .wg-author-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px
}

.ct-wg-author .wg-author-social a {
    display: inline-block;
    font-size: 17px;
    width: 37px;
    height: 37px;
    line-height: 37px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    background-color: #fff;
    position: relative;
    margin: 0 4px 10px
}

.ct-wg-author .wg-author-social a:hover {
    -webkit-transform: translate(0, -4px);
    -khtml-transform: translate(0, -4px);
    -moz-transform: translate(0, -4px);
    -ms-transform: translate(0, -4px);
    -o-transform: translate(0, -4px);
    transform: translate(0, -4px)
}

.ct-wg-author .wg-author-social a i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-wg-author .wg-author-social a i.fac-facebook-f,
.ct-wg-author .wg-author-social a i.fa-facebook-f {
    color: #16599b
}

.ct-wg-author .wg-author-social a i.fac-twitter,
.ct-wg-author .wg-author-social a i.fa-twitter {
    color: #03a9f4
}

.ct-wg-author .wg-author-social a i.fac-dribbble,
.ct-wg-author .wg-author-social a i.fa-dribbble {
    color: #ea4c89
}

.ct-wg-author .wg-author-social a i.fac-behance,
.ct-wg-author .wg-author-social a i.fa-behance {
    color: #0067ff
}

.ct-wg-author .ct-wg-author-inner {
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 35px 30px;
    text-align: center
}

@media screen and (max-width:991px) {
    .ct-wg-author .ct-wg-author-inner {
        padding-left: 15px;
        padding-right: 15px
    }
}

.ct-wg-author .ct-wg-author-inner:before {
    background-color: rgba(0, 21, 85, .65);
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ct-gallery {
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap
}

.ct-gallery .ct-gallery-item {
    margin-bottom: 30px;
    padding: 0 15px;
    position: relative
}

.ct-gallery .ct-gallery-item img {
    width: 100%;
    -webkit-border-radius: 7px;
    -khtml-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px
}

.ct-gallery .btn-video {
    height: 80px;
    width: 80px;
    line-height: 80px;
    position: absolute;
    background-color: #fff;
    -webkit-border-radius: 80px;
    -khtml-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    border-radius: 80px;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #bf2025
}

.ct-gallery .btn-video:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .63);
    border-radius: 50%;
    animation: pulse-border2 1500ms ease-out infinite;
    -webkit-animation: pulse-border2 1500ms ease-out infinite;
    z-index: -2
}

.ct-gallery .btn-video:after {
    display: block;
    content: '';
    background-color: inherit;
    background-image: inherit;
    -webkit-border-radius: inherit;
    -khtml-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.ct-gallery .btn-video:hover,
.ct-gallery .btn-video:focus,
.ct-gallery .btn-video:active {
    color: #bf2025
}

.ct-gallery .btn-video:hover:before,
.ct-gallery .btn-video:focus:before,
.ct-gallery .btn-video:active:before {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

.ct-gallery .btn-video:hover {
    background-color: #bf2025;
    color: #fff
}

.ct-gallery.gallery-2-columns .ct-gallery-item {
    width: 50%
}

@media screen and (max-width:575px) {
    .ct-gallery.gallery-2-columns .ct-gallery-item {
        width: 100%
    }
}

.ct-gallery.gallery-3-columns .ct-gallery-item {
    width: 33.33%
}

@media screen and (max-width:767px) {
    .ct-gallery.gallery-3-columns .ct-gallery-item {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .ct-gallery.gallery-3-columns .ct-gallery-item {
        width: 100%
    }
}

.ct-gallery.gallery-4-columns .ct-gallery-item {
    width: 25%
}

@media screen and (max-width:767px) {
    .ct-gallery.gallery-4-columns .ct-gallery-item {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .ct-gallery.gallery-4-columns .ct-gallery-item {
        width: 100%
    }
}

.ct-gallery.gallery-5-columns .ct-gallery-item {
    width: 20%
}

@media screen and (max-width:991px) {
    .ct-gallery.gallery-5-columns .ct-gallery-item {
        width: 33.33%
    }
}

@media screen and (max-width:767px) {
    .ct-gallery.gallery-5-columns .ct-gallery-item {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .ct-gallery.gallery-5-columns .ct-gallery-item {
        width: 100%
    }
}

.ct-wg-bannerbox1 .wg-title {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 37px;
    color: #fff
}

.ct-wg-bannerbox1 .wg-sub-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    font-family: mulish, sans-serif
}

.ct-wg-bannerbox1 .wg-description {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 35px
}

@media screen and (min-width:768px) {
    .ct-wg-bannerbox1 .wg-description {
        max-width: 80%
    }
}

.ct-wg-bannerbox1 .btn,
.ct-wg-bannerbox1 input[type=submit],
.ct-wg-bannerbox1 .btn-form button[type=submit],
.btn-form .ct-wg-bannerbox1 button[type=submit] {
    background-color: #161616;
    line-height: 45px;
    height: 45px;
    padding: 0 35px;
    position: relative;
    -webkit-border-radius: 35px;
    -khtml-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 14px
}

.ct-wg-bannerbox1 .btn i,
.ct-wg-bannerbox1 input[type=submit] i,
.ct-wg-bannerbox1 .btn-form button[type=submit] i,
.btn-form .ct-wg-bannerbox1 button[type=submit] i {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px
}

.ct-wg-bannerbox1 .btn:hover,
.ct-wg-bannerbox1 input[type=submit]:hover,
.ct-wg-bannerbox1 .btn-form button[type=submit]:hover,
.btn-form .ct-wg-bannerbox1 button[type=submit]:hover,
.ct-wg-bannerbox1 .btn:focus,
.ct-wg-bannerbox1 input[type=submit]:focus,
.ct-wg-bannerbox1 .btn-form button[type=submit]:focus,
.btn-form .ct-wg-bannerbox1 button[type=submit]:focus {
    padding-left: 30px;
    padding-right: 40px;
    background-color: #fff;
    color: #bf2025
}

.ct-wg-bannerbox1 .btn:hover i,
.ct-wg-bannerbox1 input[type=submit]:hover i,
.ct-wg-bannerbox1 .btn-form button[type=submit]:hover i,
.btn-form .ct-wg-bannerbox1 button[type=submit]:hover i,
.ct-wg-bannerbox1 .btn:focus i,
.ct-wg-bannerbox1 input[type=submit]:focus i,
.ct-wg-bannerbox1 .btn-form button[type=submit]:focus i,
.btn-form .ct-wg-bannerbox1 button[type=submit]:focus i {
    opacity: 1;
    right: 20px
}

.ct-wg-bannerbox1 .ct-wg-bannerbox-inner {
    background-color: #ededed;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    padding: 55px 40px 60px;
    background-position: 50% 100%;
    position: relative;
    z-index: 1
}

.ct-wg-bannerbox1 .ct-wg-bannerbox-inner:before {
    display: block;
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    background-color: rgba(209, 101, 39, .9)30%;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(209, 101, 39, .9) 30%), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(left, rgba(209, 101, 39, .9) 30%, rgba(255, 255, 255, 0));
    background-image: -moz-linear-gradient(left, rgba(209, 101, 39, .9) 30%, rgba(255, 255, 255, 0));
    background-image: -ms-linear-gradient(left, rgba(209, 101, 39, .9) 30%, rgba(255, 255, 255, 0));
    background-image: -o-linear-gradient(left, rgba(209, 101, 39, .9) 30%, rgba(255, 255, 255, 0));
    background-image: linear-gradient(left, rgba(209, 101, 39, .9) 30%, rgba(255, 255, 255, 0));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(209, 101, 39, 0.9) 30%', endColorStr='rgba(255, 255, 255, 0)', gradientType='1')
}

@media screen and (max-width:767px) {
    .ct-wg-bannerbox1 .ct-wg-bannerbox-inner {
        padding: 35px 20px
    }
}

@media screen and (max-width:575px) {
    .ct-wg-bannerbox1 .ct-wg-bannerbox-inner {
        padding: 30px 15px
    }
}

.ct-blog-grid-layout1.ct-container {
    width: 840px;
    margin: 0 auto
}

@media screen and (max-width:991px) {
    .ct-blog-grid-layout1.ct-container {
        width: auto
    }
}

.bypostauthor {
    display: block
}

.comments-area {
    margin-top: 90px
}

@media screen and (max-width:991px) {
    .comments-area {
        margin-top: 25px
    }
}

.comments-area .comment-respond .logged-in-as {
    font-size: 18px;
    margin-bottom: 25px;
    padding-top: 8px
}

.comments-area .comment-respond .logged-in-as a {
    color: inherit;
    font-weight: 500
}

.comments-area .comment-respond .logged-in-as a:hover {
    color: #bf2025
}

.comments-area .no-comments {
    display: none
}

.comment-title {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 24px;
    color: #ededed
}

.comment-title a {
    color: inherit
}

.comment-title a:hover {
    color: #bf2025
}

.comment-list {
    list-style: none
}

.comment-list .comment-body {
    padding-bottom: 40px;
    border-bottom: 1px solid #343434
}

.comment-list li:last-child .comment-body {
    border-bottom: none;
    padding-bottom: 0
}

.comment-list li .children {
    padding-left: 88px
}

@media screen and (max-width:575px) {
    .comment-list li .children {
        padding-left: 0
    }
}

.comment-list li .children li {
    list-style: none
}

.comment-list li .children .comment-body {
    border-bottom: 1px solid #343434
}

.comment-list li .comment-respond {
    margin: 20px 0
}

.comment-list li .comment-respond .row>div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.comment-list>li:last-child {
    margin-bottom: 53px
}

.comment-list>li>.children>li>.children>li>.children>li>.children {
    padding-left: 0
}

.comment-list>li>.children>li>.children>li>.children>li>.children .children {
    padding-left: 0
}

.comment-list .comment-reply-title {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap
}

.comment-inner {
    display: flex;
    flex-wrap: nowrap
}

@media screen and (max-width:575px) {
    .comment-inner {
        display: block
    }
}

.comment-inner img.avatar {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-right: 20px;
    float: left
}

@media screen and (max-width:767px) {
    .comment-inner img.avatar {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-right: 18px
    }
}

@media screen and (max-width:575px) {
    .comment-inner img.avatar {
        float: none;
        margin: 0 auto;
        width: 92px;
        height: 92px;
        min-width: 92px
    }
}

.comment-inner .comment-meta {
    margin-bottom: 10px
}

@media screen and (max-width:575px) {
    .comment-inner .comment-meta {
        margin-top: 20px
    }
}

.comment-date {
    display: inline-block;
    font-size: 14px;
    line-height: 1.923;
    font-weight: 700;
    color: #bf2025
}

.comment-content {
    background-color: #161616;
    position: relative;
    flex-grow: 1;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.comment-content a {
    word-wrap: break-word
}

.comment-content .comment-text {
    color: inherit;
    margin-bottom: 15px
}

.comment-content .comment-text p:last-child {
    margin-bottom: 0
}

.comment-content .comment-text ol,
.comment-content .comment-text ul {
    margin-bottom: 32px
}

.comment-content .comment-text ol ul,
.comment-content .comment-text ul ul,
.comment-content .comment-text ol ol,
.comment-content .comment-text ul ol {
    margin-bottom: 0
}

.comment-content .comment-text ul li {
    list-style: outside
}

.comment-content .comment-text img {
    margin: 6px 0
}

@media screen and (max-width:575px) {
    .comment-reply {
        margin-top: 20px
    }
}

.comment-reply a {
    display: inline-block;
    font-size: 13px;
    color: #c6c6c6;
    font-weight: 600;
    border: 1px solid #ededed;
    padding: 4px 10px
}

.comment-reply a:hover {
    color: #fff;
    border-color: #bf2025
}

.comment-reply a i {
    display: none
}

.comment-reply-title small {
    display: inline-block;
    vertical-align: top;
    margin: 10px 0 10px 10px
}

.comment-reply-title small a {
    line-height: 35px;
    display: inline-block;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #bf2025;
    background-color: #bf2025;
    text-transform: uppercase
}

.comment-reply-title small a i {
    margin-left: 4px
}

.comment-reply-title small a:hover {
    background-color: initial
}

.comment-holder {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 5px
}

.comment-holder .comment-meta {
    flex-grow: 1;
    margin-right: 30px
}

@media screen and (max-width:575px) {
    .comment-holder {
        display: block;
        margin-top: 0;
        margin-bottom: 14px
    }

    .comment-holder .comment-meta {
        margin-right: 0
    }
}

.comment-form .row>div {
    margin-top: 30px
}

.comment-form textarea,
.comment-form input[type=text],
.comment-form input[type=email] {
    padding: 12px 0;
    border-bottom: 1px solid #343434
}

.comment-form textarea:focus,
.comment-form input[type=text]:focus,
.comment-form input[type=email]:focus,
.comment-form textarea:active,
.comment-form input[type=text]:active,
.comment-form input[type=email]:active {
    border-color: #bf2025
}

.comment-form input[type=text],
.comment-form input[type=email] {
    height: 53px
}

.comment-form .form-submit {
    margin-top: 60px;
    margin-bottom: 0
}

.comment-form .form-submit .submit:hover,
.comment-form .form-submit .submit:focus {
    background-color: initial
}

.comment-form .comment-form-comment {
    display: flex;
    flex-wrap: wrap;
    margin-top: 29px
}

.comment-form-cookies-consent {
    font-size: 15px;
    line-height: 24px;
    padding-left: 20px;
    position: relative;
    margin-top: 40px
}

.comment-form-cookies-consent input,
.comment-form-cookies-consent label:before,
.comment-form-cookies-consent label:after {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    top: 5px;
    cursor: pointer
}

.comment-form-cookies-consent label {
    cursor: pointer
}

.comment-form-cookies-consent label:before {
    content: '';
    z-index: 1;
    border: 2px solid #bf2025;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px
}

.comment-form-cookies-consent label:after {
    content: '\f10c';
    font-family: Grandicon;
    font-weight: 400;
    z-index: 2;
    font-size: 8px;
    color: #bf2025;
    opacity: 0;
    line-height: 12px;
    text-align: center;
    top: 6px
}

.comment-form-cookies-consent input {
    z-index: 99;
    opacity: 0
}

.comment-form-cookies-consent input:checked+label:after {
    opacity: 1
}

.page-template-default .comments-area .comment-respond {
    padding-top: 50px;
    margin-top: 50px
}

.page-template-default .comments-area .comment-respond:before {
    display: none
}

.comments-title,
.comment-reply-title {
    font-size: 42px
}

@media screen and (max-width:575px) {

    .comments-title,
    .comment-reply-title {
        font-size: 38px
    }
}

@media screen and (max-width:480px) {

    .comments-title,
    .comment-reply-title {
        font-size: 30px
    }
}

.comments-title {
    text-transform: uppercase;
    margin-bottom: 20px
}

.comment-reply-title {
    margin-top: 10px
}

.comment-list .comment {
    padding-top: 40px
}

.comment-list .children>.comment .comment-body {
    padding-bottom: 40px
}

@media screen and (min-width:1200px) {
    .fixed-footer .site-footer-custom {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: -1
    }

    .fixed-footer #ct-masthead,
    .fixed-footer .site-content {
        background-color: #161616
    }
}

@media screen and (max-width:1199px) {
    .fixed-footer .site-content {
        margin-bottom: 0 !important
    }
}

.logo-footer .ct-image-single img {
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 43px rgba(12, 12, 12, .16);
    -khtml-box-shadow: 0 0 43px rgba(12, 12, 12, .16);
    -moz-box-shadow: 0 0 43px rgba(12, 12, 12, .16);
    -ms-box-shadow: 0 0 43px rgba(12, 12, 12, .16);
    -o-box-shadow: 0 0 43px rgba(12, 12, 12, .16);
    box-shadow: 0 0 43px rgba(12, 12, 12, .16)
}

.site-footer-default {
    background-color: #121212;
    padding: 26px 0;
    text-align: center;
    color: #c6c6c6
}

.site-footer-default a {
    color: #ededed
}

.site-footer-default a:hover {
    color: #bf2025;
    text-decoration: underline
}

.site-footer-custom {
    margin-top: -1px
}

.scroll-top {
    position: fixed;
    display: none;
    bottom: 20px;
    right: 0;
    height: 55px;
    width: 55px;
    cursor: pointer;
    visibility: hidden;
    overflow: hidden;
    place-items: center;
    z-index: 1001;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}

.scroll-top.on {
    display: grid;
    right: 20px;
    visibility: visible
}

.scroll-top .scrolltop-progress-value {
    display: grid;
    font-size: 25px;
    color: #c6c6c6;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    background-color: #121212;
    place-items: center;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}

.scroll-top:hover .scrolltop-progress-value,
.scroll-top:focus .scrolltop-progress-value {
    color: #bf2025
}

#ct-footer-bottom #ct-copyright {
    margin-top: 45px
}

#ct-footer-bottom #ct-copyright strong {
    color: #161616
}

@media screen and (max-width:1600px) {
    #ct-footer-bottom #ct-copyright {
        margin-top: 30px
    }
}

@media screen and (max-width:991px) {
    #ct-footer-bottom #ct-copyright {
        margin-top: 0
    }
}

@media screen and (min-width:2200px) {
    #ct-footer-bottom #ct-copyright {
        margin-top: 90px
    }
}

.text-footer-copyright p strong {
    font-weight: 400;
    color: #161616
}

.text-footer-copyright2 p strong {
    font-weight: 400;
    color: #21cdc0
}

.footer-3-bg-custom {
    position: relative
}

.footer-3-bg-custom:before {
    position: absolute;
    height: 139px;
    background-color: #fff;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    display: block;
    content: ""
}

.bg-section-50-white-bottom {
    position: relative
}

.bg-section-50-white-bottom:before {
    position: absolute;
    height: 50%;
    background-color: #fff;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    content: ""
}

.footer-3-bg-custom-gray {
    position: relative
}

.footer-3-bg-custom-gray:before {
    position: absolute;
    height: 139px;
    background-color: #f3f5f8;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    display: block;
    content: ""
}

@media {
    .bg-gray-half-sectionn {
        position: relative
    }

    .bg-gray-half-sectionn:before {
        position: absolute;
        height: 112%;
        width: 50%;
        background-color: #f3f5f8;
        right: 0;
        bottom: 145px;
        display: block;
        z-index: -1;
        content: ""
    }
}

.bg-before-gray {
    position: relative
}

.bg-before-gray:before {
    position: absolute;
    background-color: #f3f5f8;
    display: block;
    z-index: -1;
    content: "";
    bottom: 0;
    top: 0;
    left: 0;
    right: 0
}

@media screen and (min-width:1400px) {
    .bg-before-gray:before {
        left: 150px;
        right: 150px
    }
}

.ct-grid .grid-sizer {
    visibility: hidden
}

.ct-grid .ct-grid-inner,
.ct-grid .grid-item-inner {
    position: relative
}

.ct-grid .grid-item.ct-animated .grid-item-inner {
    animation: .65s ease 0s normal forwards 1 running moveUp;
    -webkit-animation: .65s ease 0s normal forwards 1 running moveUp;
    -webkit-transform: translateY(200px);
    -khtml-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px)
}

.ct-grid .ct-load-more {
    margin-top: 10px
}

.ct-grid .ct-load-more .btn i,
.ct-grid .ct-load-more input[type=submit] i,
.ct-grid .ct-load-more .btn-form button[type=submit] i,
.btn-form .ct-grid .ct-load-more button[type=submit] i {
    font-style: normal
}

.ct-grid .ct-load-more .btn:before,
.ct-grid .ct-load-more input[type=submit]:before,
.ct-grid .ct-load-more .btn-form button[type=submit]:before,
.btn-form .ct-grid .ct-load-more button[type=submit]:before {
    content: '';
    width: 22px;
    height: 22px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border-color: transparent #fff transparent #fff;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    animation: ctspin .6s infinite linear;
    -webkit-animation: ctspin .6s infinite linear;
    box-sizing: border-box;
    z-index: 2;
    opacity: 0
}

.ct-grid .ct-load-more .btn.loading-active i,
.ct-grid .ct-load-more input[type=submit].loading-active i,
.ct-grid .ct-load-more .btn-form button[type=submit].loading-active i,
.btn-form .ct-grid .ct-load-more button[type=submit].loading-active i {
    opacity: 0
}

.ct-grid .ct-load-more .btn.loading-active:before,
.ct-grid .ct-load-more input[type=submit].loading-active:before,
.ct-grid .ct-load-more .btn-form button[type=submit].loading-active:before,
.btn-form .ct-grid .ct-load-more button[type=submit].loading-active:before {
    opacity: 1
}

.ct-grid .ct-load-more .btn.style2:not(.loading-active),
.ct-grid .ct-load-more input[type=submit].style2:not(.loading-active),
.ct-grid .ct-load-more .btn-form button[type=submit].style2:not(.loading-active),
.btn-form .ct-grid .ct-load-more button[type=submit].style2:not(.loading-active) {
    border: 2px solid #efeff1;
    background-color: initial;
    line-height: 52px;
    color: #ededed;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

.ct-grid .ct-load-more .btn.style2:hover,
.ct-grid .ct-load-more input[type=submit].style2:hover,
.ct-grid .ct-load-more .btn-form button[type=submit].style2:hover,
.btn-form .ct-grid .ct-load-more button[type=submit].style2:hover {
    border-color: #ededed;
    background-color: #ededed;
    -webkit-box-shadow: 0 10px 30px rgba(237, 237, 237, .45);
    -khtml-box-shadow: 0 10px 30px rgba(237, 237, 237, .45);
    -moz-box-shadow: 0 10px 30px rgba(237, 237, 237, .45);
    -ms-box-shadow: 0 10px 30px rgba(237, 237, 237, .45);
    -o-box-shadow: 0 10px 30px rgba(237, 237, 237, .45);
    box-shadow: 0 10px 30px rgba(237, 237, 237, .45);
    color: #fff
}

.ct-grid .ct-grid-pagination {
    padding: 0 15px
}

.ct-grid .ct-grid-pagination .posts-page-links {
    justify-content: left
}

.ct-grid .item-featured a {
    display: block
}

.ct-grid .btn-loadmore i {
    margin-left: 0;
    margin-right: 0
}

.ct-grid .btn-loadmore i.fa-refresh {
    margin-right: 8px
}

.ct-grid.item--no-space {
    margin: 0
}

.ct-grid.item--no-space .grid-item {
    padding: 0
}

.ct-grid.item--no-space .grid-item .grid-item-inner {
    margin-bottom: 0 !important
}

.grid-filter-wrap {
    margin-bottom: 23px;
    text-align: center;
    padding: 0 15px
}

.grid-filter-wrap span {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    color: #ededed;
    font-weight: 600;
    cursor: pointer;
    padding: 0 20px;
    line-height: 40px;
    margin: 0 4px 12px;
    letter-spacing: .25px;
    border: 1px solid #ddd
}

.grid-filter-wrap span.active,
.grid-filter-wrap span:hover {
    color: #fff;
    background-color: #bf2025;
    border-color: #bf2025
}

.grid-filter-wrap.align-right {
    text-align: right
}

@media screen and (max-width:767px) {
    .grid-filter-wrap.align-right {
        text-align: center
    }
}

.hide-nav .slick-arrow {
    opacity: 0 !important;
    visibility: hidden !important;
    position: absolute;
    z-index: -99999
}

.hide-nav .ct-slick-carousel[data-arrows=true] {
    padding-bottom: 0
}

.slick-boxshadow .ct-slick-carousel {
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
    overflow: hidden
}

.slick-boxshadow .ct-slick-carousel .slick-list {
    overflow: visible
}

.slick-boxshadow .slick-slide {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    opacity: 0
}

.slick-boxshadow .slick-slide.slick-active {
    opacity: 1
}

.ct-nav-carousel {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.ct-nav-carousel .nav-prev,
.ct-nav-carousel .nav-next {
    height: 30px;
    width: 30px;
    position: relative;
    z-index: 1;
    display: inline-block;
    cursor: pointer;
    background-color: initial;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    color: #1a2428;
    border: 1px solid #1a2428
}

.ct-nav-carousel .nav-prev i,
.ct-nav-carousel .nav-next i {
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-nav-carousel .nav-prev:hover,
.ct-nav-carousel .nav-next:hover {
    background-color: #bf2025;
    border-color: #bf2025;
    color: #fff
}

.ct-nav-carousel .nav-prev {
    -webkit-transform: scaleX(-1);
    -khtml-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1)
}

.ct-nav-carousel .nav-next {
    margin-left: 16px
}

.ct-slick-carousel .slick-arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    padding: 0;
    background-color: #f2f6ff;
    background-image: none;
    font-size: 0;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -khtml-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    color: #bf2025
}

.ct-slick-carousel .slick-arrow:before,
.ct-slick-carousel .slick-arrow:after {
    font-family: grandicon;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-slick-carousel .slick-arrow:hover {
    background-color: #bf2025;
    color: #fff;
    -webkit-box-shadow: 0 10px 20px rgba(209, 101, 39, .45);
    -khtml-box-shadow: 0 10px 20px rgba(209, 101, 39, .45);
    -moz-box-shadow: 0 10px 20px rgba(209, 101, 39, .45);
    -ms-box-shadow: 0 10px 20px rgba(209, 101, 39, .45);
    -o-box-shadow: 0 10px 20px rgba(209, 101, 39, .45);
    box-shadow: 0 10px 20px rgba(209, 101, 39, .45)
}

.ct-slick-carousel .slick-arrow.slick-disabled {
    cursor: no-drop
}

.ct-slick-carousel .slick-prev {
    margin-left: -35px
}

.ct-slick-carousel .slick-prev:before {
    content: "\f103"
}

.ct-slick-carousel .slick-next {
    margin-left: 35px
}

.ct-slick-carousel .slick-next:before {
    content: "\f104"
}

.ct-slick-carousel[data-arrows=true] {
    padding-bottom: 95px
}

@media screen and (max-width:991px) {
    .ct-slick-carousel[data-arrows=true] {
        padding-bottom: 65px
    }
}

.ct-slick-carousel.ct-arrow-middle .slick-arrow {
    margin: 0;
    bottom: auto;
    top: 50%;
    z-index: 1;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.ct-slick-carousel.ct-arrow-middle .slick-arrow.slick-prev {
    left: 30px;
    right: auto
}

@media screen and (max-width:1199px) {
    .ct-slick-carousel.ct-arrow-middle .slick-arrow.slick-prev {
        left: 15px
    }
}

.ct-slick-carousel.ct-arrow-middle .slick-arrow.slick-next {
    left: auto;
    right: 30px
}

@media screen and (max-width:1199px) {
    .ct-slick-carousel.ct-arrow-middle .slick-arrow.slick-next {
        right: 15px
    }
}

.ct-slick-carousel.ct-arrow-middle.slick-shadow .slick-arrow.slick-prev {
    left: 20px;
    right: auto;
    z-index: 1
}

@media screen and (max-width:1199px) {
    .ct-slick-carousel.ct-arrow-middle.slick-shadow .slick-arrow.slick-prev {
        left: 65px
    }
}

.ct-slick-carousel.ct-arrow-middle.slick-shadow .slick-arrow.slick-next {
    left: auto;
    right: 20px
}

@media screen and (max-width:1199px) {
    .ct-slick-carousel.ct-arrow-middle.slick-shadow .slick-arrow.slick-next {
        right: 65px
    }
}

.ct-slick-carousel.ct-arrow-middle[data-arrows=true] {
    padding-bottom: 0
}

.slick-slider .slick-slide {
    outline: none
}

.slick-dots {
    margin: 41px 0 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center
}

.slick-dots li {
    display: flex;
    margin: 0 5px;
    line-height: 1
}

.slick-dots li button {
    width: 20px;
    height: 4px;
    text-indent: -9999px;
    padding: 0;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    background-color: #ededed;
    z-index: 1;
    overflow: visible !important;
    position: relative
}

.slick-dots li button:before {
    height: 14px;
    width: 14px;
    -webkit-border-radius: 14px;
    -khtml-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    border-radius: 14px
}

.slick-dots li:not(.slick-active) button {
    background-image: none
}

.slick-dots li.slick-active button {
    background-color: #bf2025
}

.dots-style2 .slick-dots {
    padding: 0 5px
}

.dots-style2 .slick-dots li {
    position: relative;
    margin: 0 10px
}

.dots-style2 .slick-dots li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #bf2025;
    z-index: 2;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.dots-style2 .slick-dots li button {
    width: 30px;
    height: 3px;
    background-color: #343434
}

.dots-style2 .slick-dots li.slick-active:before {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.dots-style2 .slick-dots li.slick-active button {
    background-color: #bf2025
}

.slider-dot-line .slick-dots {
    width: calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    flex-wrap: nowrap;
    margin: 26px 15px 0;
    height: 12px;
    background-color: #f0f0f0;
    -webkit-border-radius: 12px;
    -khtml-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px
}

@media screen and (max-width:767px) {
    .slider-dot-line .slick-dots {
        max-width: 280px
    }
}

.slider-dot-line .slick-dots li {
    margin: 0;
    width: 50%
}

.slider-dot-line .slick-dots li button {
    -webkit-border-radius: 12px;
    -khtml-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border-radius: 12px;
    width: 100%;
    height: 12px;
    background-color: initial;
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.slider-dot-line .slick-dots li button:before,
.slider-dot-line .slick-dots li button:after {
    display: none
}

.slider-dot-line .slick-dots li button:hover {
    background-color: #ededed;
    background-image: -webkit-gradient(linear, left top, right top, from(#ededed), to(#bf2025));
    background-image: -webkit-linear-gradient(left, #ededed, #bf2025);
    background-image: -moz-linear-gradient(left, #ededed, #bf2025);
    background-image: -ms-linear-gradient(left, #ededed, #bf2025);
    background-image: -o-linear-gradient(left, #ededed, #bf2025);
    background-image: linear-gradient(left, #ededed, #bf2025);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', endColorStr='#bf2025', gradientType='1')
}

.slider-dot-line .slick-dots li.slick-active button,
.slider-dot-line .slick-dots li.slick-active button:focus {
    background-color: #ededed;
    background-image: -webkit-gradient(linear, left top, right top, from(#ededed), to(#bf2025));
    background-image: -webkit-linear-gradient(left, #ededed, #bf2025);
    background-image: -moz-linear-gradient(left, #ededed, #bf2025);
    background-image: -ms-linear-gradient(left, #ededed, #bf2025);
    background-image: -o-linear-gradient(left, #ededed, #bf2025);
    background-image: linear-gradient(left, #ededed, #bf2025);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', endColorStr='#bf2025', gradientType='1')
}

.slider-dot-line.slider-dot-boxed .slick-dots {
    max-width: 560px;
    width: 100%;
    margin: 46px auto 0
}

.ct-slick-slider .ct-carousel-inner {
    margin: 0 -15px
}

.ct-slick-slider .ct-carousel-inner .slick-slide {
    padding: 0 15px
}

.ct-slick-carousel.slick-shadow {
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
    overflow: hidden
}

.ct-slick-carousel.slick-shadow .slick-list {
    overflow: visible
}

.ct-slick-carousel.slick-shadow .slick-slide {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    opacity: 0
}

.ct-slick-carousel.slick-shadow .slick-slide.slick-active {
    opacity: 1
}

#ct-loadding {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

#ct-loadding.ct-loaded {
    opacity: 1;
    visibility: hidden
}

#ct-loadding.ct-loaded.style9 {
    -webkit-transform: scale(1.5);
    -khtml-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5)
}

#ct-loadding .loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

#ct-loadding .loading-image img {
    max-height: 80px
}

#ct-loadding .ct-dual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px
}

#ct-loadding .ct-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
    border-right-color: transparent;
    border-left-color: transparent;
    animation: ct_dual_ring 1.2s linear infinite;
    border-bottom-color: #bf2025;
    border-top-color: #bf2025
}

#ct-loadding .loading-spin {
    display: block;
    height: 80px;
    margin: -40px auto 0;
    position: relative;
    top: 50%;
    width: 80px
}

#ct-loadding .loading-spin .spinner {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: spin-rotate-all 1s linear infinite;
    animation: spin-rotate-all 1s linear infinite
}

#ct-loadding .loading-spin .spinner .right-side,
#ct-loadding .loading-spin .spinner .left-side {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
    -webkit-animation: spin-fade-in-first 1.2s linear infinite alternate;
    animation: spin-fade-in-first 1.2s linear infinite alternate
}

#ct-loadding .loading-spin .spinner .left-side {
    left: 0
}

#ct-loadding .loading-spin .spinner .right-side {
    right: 0
}

#ct-loadding .loading-spin .spinner.color-2 .right-side,
#ct-loadding .loading-spin .spinner.color-2 .left-side {
    -webkit-animation: spin-fade-in-second 1.2s linear infinite alternate;
    animation: spin-fade-in-second 1.2s linear infinite alternate
}

#ct-loadding .loading-spin .spinner .bar {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 200px 0 0 200px;
    -khtml-border-radius: 200px 0 0 200px;
    -moz-border-radius: 200px 0 0 200px;
    -ms-border-radius: 200px 0 0 200px;
    -o-border-radius: 200px 0 0 200px;
    border-radius: 200px 0 0 200px;
    border: 4px solid #bf2025;
    position: relative
}

#ct-loadding .loading-spin .spinner .bar:after {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    background: #bf2025;
    position: absolute;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px
}

#ct-loadding .loading-spin .spinner .right-side .bar {
    -webkit-border-radius: 0 200px 200px 0;
    -khtml-border-radius: 0 200px 200px 0;
    -moz-border-radius: 0 200px 200px 0;
    -ms-border-radius: 0 200px 200px 0;
    -o-border-radius: 0 200px 200px 0;
    border-radius: 0 200px 200px 0;
    border-left: none;
    -webkit-transform: rotate(-10deg);
    -webkit-transform-origin: left center;
    transform: rotate(-10deg);
    transform-origin: left center;
    -webkit-animation: spin-rotate-right .75s linear infinite alternate;
    animation: spin-rotate-right .75s linear infinite alternate
}

#ct-loadding .loading-spin .spinner .right-side .bar:after {
    bottom: -4px;
    left: -2px
}

#ct-loadding .loading-spin .spinner .left-side .bar {
    border-right: none;
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-animation: spin-rotate-left .75s linear infinite alternate;
    animation: spin-rotate-left .75s linear infinite alternate
}

#ct-loadding .loading-spin .spinner .left-side .bar:after {
    bottom: -4px;
    right: -2px
}

#ct-loadding .ct-dot-square {
    display: block;
    font-size: 13px;
    width: 2px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: initial;
    transform: translate(-50%, -50%);
    animation: stevloader 3s infinite linear;
    -webkit-animation: stevloader 3s infinite linear
}

#ct-loadding.style11 .loading-spinner {
    color: #bf2025;
    font-size: 60px;
    text-indent: -9999em;
    overflow: hidden;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-animation: loading-run 1.7s infinite ease, loading-round 1.7s infinite ease;
    animation: loading-run 1.7s infinite ease, loading-round 1.7s infinite ease
}

#ct-loadding .loading-ring {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto
}

#ct-loadding .loading-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border-width: 6px;
    border-style: solid;
    border-color: #bf2025 transparent #bf2025 transparent;
    animation: lds-dual-ring 1.2s linear infinite
}

#ct-loadding.style5 {
    background-color: rgba(255, 255, 255, .8)
}

#ct-loadding:not(.style14) {
    background-color: #121212
}

.ct-spinner2 {
    width: 45px;
    height: 45px;
    background-color: #bf2025;
    margin: 100px auto;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0
}

.ct-spinner3 {
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0
}

.ct-spinner3 .double-bounce1,
.ct-spinner3 .double-bounce2 {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: #bf2025;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: ct-bounce 2s infinite ease-in-out;
    animation: ct-bounce 2s infinite ease-in-out
}

.ct-spinner3 .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.ct-spinner4 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 70px;
    height: 40px;
    text-align: center;
    font-size: 10px
}

.ct-spinner4>div {
    background-color: #bf2025;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: ct-stretchdelay 1.2s infinite ease-in-out;
    animation: ct-stretchdelay 1.2s infinite ease-in-out
}

.ct-spinner4 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.ct-spinner4 .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.ct-spinner4 .rect4 {
    -webkit-animation-delay: -.9s;
    animation-delay: -.9s
}

.ct-spinner4 .rect5 {
    -webkit-animation-delay: -.8s;
    animation-delay: -.8s
}

.ct-spinner5 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 130px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap
}

.ct-spinner5>div {
    margin: 0 8px;
    width: 20px;
    height: 20px;
    background-color: rgba(209, 101, 39, .8);
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: ct-bouncedelay 1.4s infinite ease-in-out both;
    animation: ct-bouncedelay 1.4s infinite ease-in-out both
}

.ct-spinner5 .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.ct-spinner5 .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

.ct-cube-grid {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0
}

.ct-cube-grid .ct-cube {
    width: 33%;
    height: 33%;
    background-color: #bf2025;
    float: left;
    -webkit-animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: ct-cubeGridScaleDelay 1.3s infinite ease-in-out
}

.ct-cube-grid .ct-cube1 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.ct-cube-grid .ct-cube2 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.ct-cube-grid .ct-cube3 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.ct-cube-grid .ct-cube4 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.ct-cube-grid .ct-cube5 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.ct-cube-grid .ct-cube6 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.ct-cube-grid .ct-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.ct-cube-grid .ct-cube8 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.ct-cube-grid .ct-cube9 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.ct-folding-cube {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg)
}

.ct-folding-cube .ct-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.ct-folding-cube .ct-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #bf2025;
    -webkit-animation: ct-foldCubeAngle 2.4s infinite linear both;
    -ms-animation: ct-foldCubeAngle 2.4s infinite linear both;
    -o-animation: ct-foldCubeAngle 2.4s infinite linear both;
    animation: ct-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

.ct-folding-cube .ct-cube2 {
    -webkit-transform: scale(1.1)rotateZ(90deg);
    -ms-transform: scale(1.1)rotateZ(90deg);
    -o-transform: scale(1.1)rotateZ(90deg);
    transform: scale(1.1)rotateZ(90deg)
}

.ct-folding-cube .ct-cube2:before {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.ct-folding-cube .ct-cube3 {
    -webkit-transform: scale(1.1)rotateZ(180deg);
    -ms-transform: scale(1.1)rotateZ(180deg);
    -o-transform: scale(1.1)rotateZ(180deg);
    transform: scale(1.1)rotateZ(180deg)
}

.ct-folding-cube .ct-cube3:before {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.ct-folding-cube .ct-cube4 {
    -webkit-transform: scale(1.1)rotateZ(270deg);
    -ms-transform: scale(1.1)rotateZ(270deg);
    -o-transform: scale(1.1)rotateZ(270deg);
    transform: scale(1.1)rotateZ(270deg)
}

.ct-folding-cube .ct-cube4:before {
    -webkit-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s
}

.ct-loading-stairs {
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 75px;
    margin-top: -25px
}

.ct-loading-stairs .loader-bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 50%;
    background: #bf2025;
    transform-origin: center bottom;
    -webkit-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    -khtml-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    -ms-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    -o-box-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    box-shadow: 1px 1px rgba(0, 0, 0, .2)
}

.ct-loading-stairs .loader-bar:nth-child(1) {
    left: 0;
    -webkit-transform: scale(1, .2);
    -khtml-transform: scale(1, .2);
    -moz-transform: scale(1, .2);
    -ms-transform: scale(1, .2);
    -o-transform: scale(1, .2);
    transform: scale(1, .2);
    animation: barUp1 4s infinite;
    -webkit-animation: barUp1 4s infinite;
    -ms-animation: barUp1 4s infinite
}

.ct-loading-stairs .loader-bar:nth-child(2) {
    left: 15px;
    -webkit-transform: scale(1, .4);
    -khtml-transform: scale(1, .4);
    -moz-transform: scale(1, .4);
    -ms-transform: scale(1, .4);
    -o-transform: scale(1, .4);
    transform: scale(1, .4);
    animation: barUp2 4s infinite;
    -webkit-animation: barUp2 4s infinite;
    -ms-animation: barUp2 4s infinite
}

.ct-loading-stairs .loader-bar:nth-child(3) {
    left: 30px;
    -webkit-transform: scale(1, .6);
    -khtml-transform: scale(1, .6);
    -moz-transform: scale(1, .6);
    -ms-transform: scale(1, .6);
    -o-transform: scale(1, .6);
    transform: scale(1, .6);
    animation: barUp3 4s infinite;
    -webkit-animation: barUp3 4s infinite;
    -ms-animation: barUp3 4s infinite
}

.ct-loading-stairs .loader-bar:nth-child(4) {
    left: 45px;
    -webkit-transform: scale(1, .8);
    -khtml-transform: scale(1, .8);
    -moz-transform: scale(1, .8);
    -ms-transform: scale(1, .8);
    -o-transform: scale(1, .8);
    transform: scale(1, .8);
    animation: barUp4 4s infinite;
    -webkit-animation: barUp4 4s infinite;
    -ms-animation: barUp4 4s infinite
}

.ct-loading-stairs .loader-bar:nth-child(5) {
    left: 60px;
    -webkit-transform: scale(1, 1);
    -khtml-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    animation: barUp5 4s infinite;
    -webkit-animation: barUp5 4s infinite;
    -ms-animation: barUp5 4s infinite
}

.ct-loading-stairs .loader-ball {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #bf2025;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    animation: ball 4s infinite;
    -webkit-animation: ball 4s infinite;
    -ms-animation: ball 4s infinite
}

.ct-spinner9-wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    width: 45px;
    height: 45px;
    margin: auto
}

.ct-spinner9 {
    margin: 0 auto;
    width: 45px;
    height: 45px;
    position: relative;
    text-align: center;
    -webkit-animation: ct-rotate 2s infinite linear;
    animation: ct-rotate 2s infinite linear
}

.ct-spinner9 .dot1,
.ct-spinner9 .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #bf2025;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: ct-bounce1 2s infinite ease-in-out;
    animation: ct-bounce1 2s infinite ease-in-out
}

.ct-spinner9 .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.loading-infinity {
    width: 120px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.loading-infinity div,
.loading-infinity span {
    position: absolute
}

.loading-infinity div {
    top: 0;
    left: 50%;
    width: 70px;
    height: 70px;
    animation: ctLoadingrotate 6.9s linear infinite
}

.loading-infinity div span {
    left: -10px;
    top: 50%;
    margin: -10px 0 0;
    width: 20px;
    height: 20px;
    display: block;
    background: #bf2025;
    box-shadow: 2px 2px 8px rgba(209, 101, 39, 9%);
    border-radius: 50%;
    transform: rotate(90deg);
    animation: ctLoadingmove 6.9s linear infinite
}

.loading-infinity div span:before,
.loading-infinity div span:after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: inherit;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    box-shadow: inherit
}

.loading-infinity div span:before {
    animation: ctLoadingdrop1 .8s linear infinite
}

.loading-infinity div span:after {
    animation: ctLoadingdrop2 .8s linear infinite .4s
}

.loading-infinity div:nth-child(2) {
    animation-delay: -2.3s
}

.loading-infinity div:nth-child(2) span {
    animation-delay: -2.3s
}

.loading-infinity div:nth-child(3) {
    animation-delay: -4.6s
}

.loading-infinity div:nth-child(3) span {
    animation-delay: -4.6s
}

.handle-preloader {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s ease;
    -khtml-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.handle-preloader .ct-preloader {
    position: absolute;
    z-index: 2;
    top: 45%;
    -webkit-transform: translateY(-45%);
    -khtml-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -o-transform: translateY(-45%);
    transform: translateY(-45%);
    -webkit-transition: .4s;
    -khtml-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.handle-preloader .ct-preloader .ct-spinner {
    position: relative
}

.handle-preloader .ct-preloader .ct-spinner .loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    font-family: chakra petch, sans-serif;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.handle-preloader .ct-preloader .spinner {
    border: 8px solid #bf2025;
    border-top-color: rgba(255, 255, 255, .1);
    width: 12em;
    height: 12em;
    margin: 0 auto 45px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spinner 1s infinite linear;
    -khtml-animation: spinner 1s infinite linear;
    -moz-animation: spinner 1s infinite linear;
    -ms-animation: spinner 1s infinite linear;
    -o-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear
}

@media screen and (max-width:575px) {
    .handle-preloader .ct-preloader .spinner {
        height: 8em;
        width: 8em
    }
}

.handle-preloader .ct-preloader .txt-loading {
    text-align: center;
    user-select: none
}

.handle-preloader .ct-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: chakra petch, sans-serif;
    font-weight: 600;
    color: #fff;
    letter-spacing: 15px;
    margin-left: 15px;
    font-size: 2vw;
    line-height: 1.2
}

@media screen and (max-width:991px) {
    .handle-preloader .ct-preloader .txt-loading .letters-loading {
        font-size: 7vw
    }
}

@media screen and (max-width:575px) {
    .handle-preloader .ct-preloader .txt-loading .letters-loading {
        font-size: 8vw;
        letter-spacing: 10px;
        margin-left: 10px
    }
}

.handle-preloader .ct-preloader .txt-loading .letters-loading:before {
    content: attr(data-text-preloader);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-animation: letters-loading 4s infinite;
    -khtml-animation: letters-loading 4s infinite;
    -moz-animation: letters-loading 4s infinite;
    -ms-animation: letters-loading 4s infinite;
    -o-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite
}

.handle-preloader:before,
.handle-preloader:after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #121212;
    z-index: 1;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.handle-preloader:before {
    left: 0
}

.handle-preloader:after {
    right: 0
}

.ct-loading-container {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-loading-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    -webkit-animation: ct_movingLine 2.4s infinite ease-in-out;
    -khtml-animation: ct_movingLine 2.4s infinite ease-in-out;
    -moz-animation: ct_movingLine 2.4s infinite ease-in-out;
    -ms-animation: ct_movingLine 2.4s infinite ease-in-out;
    -o-animation: ct_movingLine 2.4s infinite ease-in-out;
    animation: ct_movingLine 2.4s infinite ease-in-out
}

@media screen and (max-width:575px) {
    .ct-loading-container:before {
        height: 2px
    }
}

.ct-loading-container .loading-text {
    font-size: 5vw;
    line-height: 64px;
    letter-spacing: 10px;
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:575px) {
    .ct-loading-container .loading-text {
        margin-bottom: 0
    }
}

.ct-loading-container .loading-text span {
    position: relative;
    display: inline-block;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(46, 74, 81, .3);
    -webkit-animation: ct_moveLetters 2.4s infinite ease-in-out;
    -khtml-animation: ct_moveLetters 2.4s infinite ease-in-out;
    -moz-animation: ct_moveLetters 2.4s infinite ease-in-out;
    -ms-animation: ct_moveLetters 2.4s infinite ease-in-out;
    -o-animation: ct_moveLetters 2.4s infinite ease-in-out;
    animation: ct_moveLetters 2.4s infinite ease-in-out;
    -webkit-transform: translatex(0);
    -khtml-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0)
}

.ct-loading-container .loading-text span:nth-child(1) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.ct-loading-container .loading-text span:nth-child(2) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.ct-loading-container .loading-text span:nth-child(3) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.ct-loading-container .loading-text span:nth-child(4) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.ct-loading-container .loading-text span:nth-child(5) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.ct-loading-container .loading-text span:nth-child(6) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.ct-loading-container .loading-text span:nth-child(7) {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

.ct-loading-container .loading-text span:nth-child(8) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.ct-loading-container .loading-text span:nth-child(9) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s
}

.ct-loading-container .loading-text span:nth-child(10) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.ct-loading-container .loading-text span:nth-child(11) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s
}

.ct-loading-container .loading-text span:nth-child(12) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.ct-loading-container .loading-text span:nth-child(13) {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s
}

.ct-loading-container .loading-text span:nth-child(14) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.ct-loading-container .loading-text span:nth-child(15) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.ct-loading-container .loading-text span:nth-child(16) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s
}

.ct-loading-container .loading-text span:nth-child(17) {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s
}

.ct-loading-container .loading-text span:nth-child(18) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s
}

.ct-loading-container .loading-text span:nth-child(19) {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s
}

.ct-loading-container .loading-text span:nth-child(20) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.ct-loading-container .loading-text span:nth-child(21) {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s
}

.ct-loading-container .loading-text span:nth-child(22) {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s
}

.ct-loading-container .loading-text span:nth-child(23) {
    -webkit-animation-delay: 2.3s;
    animation-delay: 2.3s
}

.ct-loading-container .loading-text span:nth-child(24) {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s
}

.ct-loading-container .loading-text span:nth-child(25) {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.ct-loading-container .loading-text span:nth-child(26) {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s
}

.ct-loading-container .loading-text span:nth-child(27) {
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s
}

.ct-loading-container .loading-text span:nth-child(28) {
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s
}

.ct-loading-container .loading-text span:nth-child(29) {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s
}

.ct-loading-container .loading-text span:nth-child(30) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.ct-loading-container .loading-text span:nth-child(31) {
    -webkit-animation-delay: 3.1s;
    animation-delay: 3.1s
}

.ct-loading-container .loading-text span:nth-child(32) {
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s
}

.ct-loading-container .loading-text span:nth-child(33) {
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s
}

.ct-loading-container .loading-text span:nth-child(34) {
    -webkit-animation-delay: 3.4s;
    animation-delay: 3.4s
}

.ct-loading-container .loading-text span:nth-child(35) {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s
}

.ct-loading-container .loading-text span:nth-child(36) {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s
}

.ct-loading-container .loading-text span:nth-child(37) {
    -webkit-animation-delay: 3.7s;
    animation-delay: 3.7s
}

.ct-loading-container .loading-text span:nth-child(38) {
    -webkit-animation-delay: 3.8s;
    animation-delay: 3.8s
}

.ct-loading-container .loading-text span:nth-child(39) {
    -webkit-animation-delay: 3.9s;
    animation-delay: 3.9s
}

.ct-loading-container .loading-text span:nth-child(40) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.ct-loading-container .loading-text span:nth-child(41) {
    -webkit-animation-delay: 4.1s;
    animation-delay: 4.1s
}

.ct-loading-container .loading-text span:nth-child(42) {
    -webkit-animation-delay: 4.2s;
    animation-delay: 4.2s
}

.ct-loading-container .loading-text span:nth-child(43) {
    -webkit-animation-delay: 4.3s;
    animation-delay: 4.3s
}

.ct-loading-container .loading-text span:nth-child(44) {
    -webkit-animation-delay: 4.4s;
    animation-delay: 4.4s
}

.ct-loading-container .loading-text span:nth-child(45) {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s
}

.ct-loading-container .loading-text span:nth-child(46) {
    -webkit-animation-delay: 4.6s;
    animation-delay: 4.6s
}

.ct-loading-container .loading-text span:nth-child(47) {
    -webkit-animation-delay: 4.7s;
    animation-delay: 4.7s
}

.ct-loading-container .loading-text span:nth-child(48) {
    -webkit-animation-delay: 4.8s;
    animation-delay: 4.8s
}

.ct-loading-container .loading-text span:nth-child(49) {
    -webkit-animation-delay: 4.9s;
    animation-delay: 4.9s
}

.ct-loading-container .loading-text span:nth-child(50) {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.ct-loading-container .loading-text span:nth-child(51) {
    -webkit-animation-delay: 5.1s;
    animation-delay: 5.1s
}

.ct-loading-container .loading-text span:nth-child(52) {
    -webkit-animation-delay: 5.2s;
    animation-delay: 5.2s
}

.ct-loading-container .loading-text span:nth-child(53) {
    -webkit-animation-delay: 5.3s;
    animation-delay: 5.3s
}

.ct-loading-container .loading-text span:nth-child(54) {
    -webkit-animation-delay: 5.4s;
    animation-delay: 5.4s
}

.ct-loading-container .loading-text span:nth-child(55) {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s
}

.ct-loading-container .loading-text span:nth-child(56) {
    -webkit-animation-delay: 5.6s;
    animation-delay: 5.6s
}

.ct-loading-container .loading-text span:nth-child(57) {
    -webkit-animation-delay: 5.7s;
    animation-delay: 5.7s
}

.ct-loading-container .loading-text span:nth-child(58) {
    -webkit-animation-delay: 5.8s;
    animation-delay: 5.8s
}

.ct-loading-container .loading-text span:nth-child(59) {
    -webkit-animation-delay: 5.9s;
    animation-delay: 5.9s
}

.ct-loading-container .loading-text span:nth-child(60) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

.ct-loading-container .loading-text span:nth-child(61) {
    -webkit-animation-delay: 6.1s;
    animation-delay: 6.1s
}

.ct-loading-container .loading-text span:nth-child(62) {
    -webkit-animation-delay: 6.2s;
    animation-delay: 6.2s
}

.ct-loading-container .loading-text span:nth-child(63) {
    -webkit-animation-delay: 6.3s;
    animation-delay: 6.3s
}

.ct-loading-container .loading-text span:nth-child(64) {
    -webkit-animation-delay: 6.4s;
    animation-delay: 6.4s
}

.ct-loading-container .loading-text span:nth-child(65) {
    -webkit-animation-delay: 6.5s;
    animation-delay: 6.5s
}

.ct-loading-container .loading-text span:nth-child(66) {
    -webkit-animation-delay: 6.6s;
    animation-delay: 6.6s
}

.ct-loading-container .loading-text span:nth-child(67) {
    -webkit-animation-delay: 6.7s;
    animation-delay: 6.7s
}

.ct-loading-container .loading-text span:nth-child(68) {
    -webkit-animation-delay: 6.8s;
    animation-delay: 6.8s
}

.ct-loading-container .loading-text span:nth-child(69) {
    -webkit-animation-delay: 6.9s;
    animation-delay: 6.9s
}

.ct-loading-container .loading-text span:nth-child(70) {
    -webkit-animation-delay: 7s;
    animation-delay: 7s
}

.ct-loading-container .loading-text span:nth-child(71) {
    -webkit-animation-delay: 7.1s;
    animation-delay: 7.1s
}

.ct-loading-container .loading-text span:nth-child(72) {
    -webkit-animation-delay: 7.2s;
    animation-delay: 7.2s
}

.ct-loading-container .loading-text span:nth-child(73) {
    -webkit-animation-delay: 7.3s;
    animation-delay: 7.3s
}

.ct-loading-container .loading-text span:nth-child(74) {
    -webkit-animation-delay: 7.4s;
    animation-delay: 7.4s
}

.ct-loading-container .loading-text span:nth-child(75) {
    -webkit-animation-delay: 7.5s;
    animation-delay: 7.5s
}

.ct-loading-container .loading-text span:nth-child(76) {
    -webkit-animation-delay: 7.6s;
    animation-delay: 7.6s
}

.ct-loading-container .loading-text span:nth-child(77) {
    -webkit-animation-delay: 7.7s;
    animation-delay: 7.7s
}

.ct-loading-container .loading-text span:nth-child(78) {
    -webkit-animation-delay: 7.8s;
    animation-delay: 7.8s
}

.ct-loading-container .loading-text span:nth-child(79) {
    -webkit-animation-delay: 7.9s;
    animation-delay: 7.9s
}

.ct-loading-container .loading-text span:nth-child(80) {
    -webkit-animation-delay: 8s;
    animation-delay: 8s
}

.ct-loading-container .loading-text span:nth-child(81) {
    -webkit-animation-delay: 8.1s;
    animation-delay: 8.1s
}

.ct-loading-container .loading-text span:nth-child(82) {
    -webkit-animation-delay: 8.2s;
    animation-delay: 8.2s
}

.ct-loading-container .loading-text span:nth-child(83) {
    -webkit-animation-delay: 8.3s;
    animation-delay: 8.3s
}

.ct-loading-container .loading-text span:nth-child(84) {
    -webkit-animation-delay: 8.4s;
    animation-delay: 8.4s
}

.ct-loading-container .loading-text span:nth-child(85) {
    -webkit-animation-delay: 8.5s;
    animation-delay: 8.5s
}

.ct-loading-container .loading-text span:nth-child(86) {
    -webkit-animation-delay: 8.6s;
    animation-delay: 8.6s
}

.ct-loading-container .loading-text span:nth-child(87) {
    -webkit-animation-delay: 8.7s;
    animation-delay: 8.7s
}

.ct-loading-container .loading-text span:nth-child(88) {
    -webkit-animation-delay: 8.8s;
    animation-delay: 8.8s
}

.ct-loading-container .loading-text span:nth-child(89) {
    -webkit-animation-delay: 8.9s;
    animation-delay: 8.9s
}

.ct-loading-container .loading-text span:nth-child(90) {
    -webkit-animation-delay: 9s;
    animation-delay: 9s
}

.ct-loading-container .loading-text span:nth-child(91) {
    -webkit-animation-delay: 9.1s;
    animation-delay: 9.1s
}

.ct-loading-container .loading-text span:nth-child(92) {
    -webkit-animation-delay: 9.2s;
    animation-delay: 9.2s
}

.ct-loading-container .loading-text span:nth-child(93) {
    -webkit-animation-delay: 9.3s;
    animation-delay: 9.3s
}

.ct-loading-container .loading-text span:nth-child(94) {
    -webkit-animation-delay: 9.4s;
    animation-delay: 9.4s
}

.ct-loading-container .loading-text span:nth-child(95) {
    -webkit-animation-delay: 9.5s;
    animation-delay: 9.5s
}

.ct-loading-container .loading-text span:nth-child(96) {
    -webkit-animation-delay: 9.6s;
    animation-delay: 9.6s
}

.ct-loading-container .loading-text span:nth-child(97) {
    -webkit-animation-delay: 9.7s;
    animation-delay: 9.7s
}

.ct-loading-container .loading-text span:nth-child(98) {
    -webkit-animation-delay: 9.8s;
    animation-delay: 9.8s
}

.ct-loading-container .loading-text span:nth-child(99) {
    -webkit-animation-delay: 9.9s;
    animation-delay: 9.9s
}

.ct-loading-container .loading-text span:nth-child(100) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s
}

.ct-loading-container .loading-text span:nth-child(101) {
    -webkit-animation-delay: 10.1s;
    animation-delay: 10.1s
}

.ct-loading-container .loading-text span:nth-child(102) {
    -webkit-animation-delay: 10.2s;
    animation-delay: 10.2s
}

.ct-loading-container .loading-text span:nth-child(103) {
    -webkit-animation-delay: 10.3s;
    animation-delay: 10.3s
}

.ct-loading-container .loading-text span:nth-child(104) {
    -webkit-animation-delay: 10.4s;
    animation-delay: 10.4s
}

.ct-loading-container .loading-text span:nth-child(105) {
    -webkit-animation-delay: 10.5s;
    animation-delay: 10.5s
}

.ct-loading-container .loading-text span:nth-child(106) {
    -webkit-animation-delay: 10.6s;
    animation-delay: 10.6s
}

.ct-loading-container .loading-text span:nth-child(107) {
    -webkit-animation-delay: 10.7s;
    animation-delay: 10.7s
}

.ct-loading-container .loading-text span:nth-child(108) {
    -webkit-animation-delay: 10.8s;
    animation-delay: 10.8s
}

.ct-loading-container .loading-text span:nth-child(109) {
    -webkit-animation-delay: 10.9s;
    animation-delay: 10.9s
}

.ct-loading-container .loading-text span:nth-child(110) {
    -webkit-animation-delay: 11s;
    animation-delay: 11s
}

.ct-loading-container .loading-text span:nth-child(111) {
    -webkit-animation-delay: 11.1s;
    animation-delay: 11.1s
}

.ct-loading-container .loading-text span:nth-child(112) {
    -webkit-animation-delay: 11.2s;
    animation-delay: 11.2s
}

.ct-loading-container .loading-text span:nth-child(113) {
    -webkit-animation-delay: 11.3s;
    animation-delay: 11.3s
}

.ct-loading-container .loading-text span:nth-child(114) {
    -webkit-animation-delay: 11.4s;
    animation-delay: 11.4s
}

.ct-loading-container .loading-text span:nth-child(115) {
    -webkit-animation-delay: 11.5s;
    animation-delay: 11.5s
}

.ct-loading-container .loading-text span:nth-child(116) {
    -webkit-animation-delay: 11.6s;
    animation-delay: 11.6s
}

.ct-loading-container .loading-text span:nth-child(117) {
    -webkit-animation-delay: 11.7s;
    animation-delay: 11.7s
}

.ct-loading-container .loading-text span:nth-child(118) {
    -webkit-animation-delay: 11.8s;
    animation-delay: 11.8s
}

.ct-loading-container .loading-text span:nth-child(119) {
    -webkit-animation-delay: 11.9s;
    animation-delay: 11.9s
}

.ct-loading-container .loading-text span:nth-child(120) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s
}

.ct-loading-container .loading-text span:nth-child(121) {
    -webkit-animation-delay: 12.1s;
    animation-delay: 12.1s
}

.ct-loading-container .loading-text span:nth-child(122) {
    -webkit-animation-delay: 12.2s;
    animation-delay: 12.2s
}

.ct-loading-container .loading-text span:nth-child(123) {
    -webkit-animation-delay: 12.3s;
    animation-delay: 12.3s
}

.ct-loading-container .loading-text span:nth-child(124) {
    -webkit-animation-delay: 12.4s;
    animation-delay: 12.4s
}

.ct-loading-container .loading-text span:nth-child(125) {
    -webkit-animation-delay: 12.5s;
    animation-delay: 12.5s
}

.ct-loading-container .loading-text span:nth-child(126) {
    -webkit-animation-delay: 12.6s;
    animation-delay: 12.6s
}

.ct-loading-container .loading-text span:nth-child(127) {
    -webkit-animation-delay: 12.7s;
    animation-delay: 12.7s
}

.ct-loading-container .loading-text span:nth-child(128) {
    -webkit-animation-delay: 12.8s;
    animation-delay: 12.8s
}

.ct-loading-container .loading-text span:nth-child(129) {
    -webkit-animation-delay: 12.9s;
    animation-delay: 12.9s
}

.ct-loading-container .loading-text span:nth-child(130) {
    -webkit-animation-delay: 13s;
    animation-delay: 13s
}

.ct-loading-container .loading-text span:nth-child(131) {
    -webkit-animation-delay: 13.1s;
    animation-delay: 13.1s
}

.ct-loading-container .loading-text span:nth-child(132) {
    -webkit-animation-delay: 13.2s;
    animation-delay: 13.2s
}

.ct-loading-container .loading-text span:nth-child(133) {
    -webkit-animation-delay: 13.3s;
    animation-delay: 13.3s
}

.ct-loading-container .loading-text span:nth-child(134) {
    -webkit-animation-delay: 13.4s;
    animation-delay: 13.4s
}

.ct-loading-container .loading-text span:nth-child(135) {
    -webkit-animation-delay: 13.5s;
    animation-delay: 13.5s
}

.ct-loading-container .loading-text span:nth-child(136) {
    -webkit-animation-delay: 13.6s;
    animation-delay: 13.6s
}

.ct-loading-container .loading-text span:nth-child(137) {
    -webkit-animation-delay: 13.7s;
    animation-delay: 13.7s
}

.ct-loading-container .loading-text span:nth-child(138) {
    -webkit-animation-delay: 13.8s;
    animation-delay: 13.8s
}

.ct-loading-container .loading-text span:nth-child(139) {
    -webkit-animation-delay: 13.9s;
    animation-delay: 13.9s
}

.ct-loading-container .loading-text span:nth-child(140) {
    -webkit-animation-delay: 14s;
    animation-delay: 14s
}

.ct-loading-container .loading-text span:nth-child(141) {
    -webkit-animation-delay: 14.1s;
    animation-delay: 14.1s
}

.ct-loading-container .loading-text span:nth-child(142) {
    -webkit-animation-delay: 14.2s;
    animation-delay: 14.2s
}

.ct-loading-container .loading-text span:nth-child(143) {
    -webkit-animation-delay: 14.3s;
    animation-delay: 14.3s
}

.ct-loading-container .loading-text span:nth-child(144) {
    -webkit-animation-delay: 14.4s;
    animation-delay: 14.4s
}

.ct-loading-container .loading-text span:nth-child(145) {
    -webkit-animation-delay: 14.5s;
    animation-delay: 14.5s
}

.ct-loading-container .loading-text span:nth-child(146) {
    -webkit-animation-delay: 14.6s;
    animation-delay: 14.6s
}

.ct-loading-container .loading-text span:nth-child(147) {
    -webkit-animation-delay: 14.7s;
    animation-delay: 14.7s
}

.ct-loading-container .loading-text span:nth-child(148) {
    -webkit-animation-delay: 14.8s;
    animation-delay: 14.8s
}

.ct-loading-container .loading-text span:nth-child(149) {
    -webkit-animation-delay: 14.9s;
    animation-delay: 14.9s
}

.ct-loading-container .loading-text span:nth-child(150) {
    -webkit-animation-delay: 15s;
    animation-delay: 15s
}

.ct-loading-container .loading-text span:nth-child(151) {
    -webkit-animation-delay: 15.1s;
    animation-delay: 15.1s
}

.ct-loading-container .loading-text span:nth-child(152) {
    -webkit-animation-delay: 15.2s;
    animation-delay: 15.2s
}

.ct-loading-container .loading-text span:nth-child(153) {
    -webkit-animation-delay: 15.3s;
    animation-delay: 15.3s
}

.ct-loading-container .loading-text span:nth-child(154) {
    -webkit-animation-delay: 15.4s;
    animation-delay: 15.4s
}

.ct-loading-container .loading-text span:nth-child(155) {
    -webkit-animation-delay: 15.5s;
    animation-delay: 15.5s
}

.ct-loading-container .loading-text span:nth-child(156) {
    -webkit-animation-delay: 15.6s;
    animation-delay: 15.6s
}

.ct-loading-container .loading-text span:nth-child(157) {
    -webkit-animation-delay: 15.7s;
    animation-delay: 15.7s
}

.ct-loading-container .loading-text span:nth-child(158) {
    -webkit-animation-delay: 15.8s;
    animation-delay: 15.8s
}

.ct-loading-container .loading-text span:nth-child(159) {
    -webkit-animation-delay: 15.9s;
    animation-delay: 15.9s
}

.ct-loading-container .loading-text span:nth-child(160) {
    -webkit-animation-delay: 16s;
    animation-delay: 16s
}

.ct-loading-container .loading-text span:nth-child(161) {
    -webkit-animation-delay: 16.1s;
    animation-delay: 16.1s
}

.ct-loading-container .loading-text span:nth-child(162) {
    -webkit-animation-delay: 16.2s;
    animation-delay: 16.2s
}

.ct-loading-container .loading-text span:nth-child(163) {
    -webkit-animation-delay: 16.3s;
    animation-delay: 16.3s
}

.ct-loading-container .loading-text span:nth-child(164) {
    -webkit-animation-delay: 16.4s;
    animation-delay: 16.4s
}

.ct-loading-container .loading-text span:nth-child(165) {
    -webkit-animation-delay: 16.5s;
    animation-delay: 16.5s
}

.ct-loading-container .loading-text span:nth-child(166) {
    -webkit-animation-delay: 16.6s;
    animation-delay: 16.6s
}

.ct-loading-container .loading-text span:nth-child(167) {
    -webkit-animation-delay: 16.7s;
    animation-delay: 16.7s
}

.ct-loading-container .loading-text span:nth-child(168) {
    -webkit-animation-delay: 16.8s;
    animation-delay: 16.8s
}

.ct-loading-container .loading-text span:nth-child(169) {
    -webkit-animation-delay: 16.9s;
    animation-delay: 16.9s
}

.ct-loading-container .loading-text span:nth-child(170) {
    -webkit-animation-delay: 17s;
    animation-delay: 17s
}

.ct-loading-container .loading-text span:nth-child(171) {
    -webkit-animation-delay: 17.1s;
    animation-delay: 17.1s
}

.ct-loading-container .loading-text span:nth-child(172) {
    -webkit-animation-delay: 17.2s;
    animation-delay: 17.2s
}

.ct-loading-container .loading-text span:nth-child(173) {
    -webkit-animation-delay: 17.3s;
    animation-delay: 17.3s
}

.ct-loading-container .loading-text span:nth-child(174) {
    -webkit-animation-delay: 17.4s;
    animation-delay: 17.4s
}

.ct-loading-container .loading-text span:nth-child(175) {
    -webkit-animation-delay: 17.5s;
    animation-delay: 17.5s
}

.ct-loading-container .loading-text span:nth-child(176) {
    -webkit-animation-delay: 17.6s;
    animation-delay: 17.6s
}

.ct-loading-container .loading-text span:nth-child(177) {
    -webkit-animation-delay: 17.7s;
    animation-delay: 17.7s
}

.ct-loading-container .loading-text span:nth-child(178) {
    -webkit-animation-delay: 17.8s;
    animation-delay: 17.8s
}

.ct-loading-container .loading-text span:nth-child(179) {
    -webkit-animation-delay: 17.9s;
    animation-delay: 17.9s
}

.ct-loading-container .loading-text span:nth-child(180) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s
}

.ct-loading-container .loading-text span:nth-child(181) {
    -webkit-animation-delay: 18.1s;
    animation-delay: 18.1s
}

.ct-loading-container .loading-text span:nth-child(182) {
    -webkit-animation-delay: 18.2s;
    animation-delay: 18.2s
}

.ct-loading-container .loading-text span:nth-child(183) {
    -webkit-animation-delay: 18.3s;
    animation-delay: 18.3s
}

.ct-loading-container .loading-text span:nth-child(184) {
    -webkit-animation-delay: 18.4s;
    animation-delay: 18.4s
}

.ct-loading-container .loading-text span:nth-child(185) {
    -webkit-animation-delay: 18.5s;
    animation-delay: 18.5s
}

.ct-loading-container .loading-text span:nth-child(186) {
    -webkit-animation-delay: 18.6s;
    animation-delay: 18.6s
}

.ct-loading-container .loading-text span:nth-child(187) {
    -webkit-animation-delay: 18.7s;
    animation-delay: 18.7s
}

.ct-loading-container .loading-text span:nth-child(188) {
    -webkit-animation-delay: 18.8s;
    animation-delay: 18.8s
}

.ct-loading-container .loading-text span:nth-child(189) {
    -webkit-animation-delay: 18.9s;
    animation-delay: 18.9s
}

.ct-loading-container .loading-text span:nth-child(190) {
    -webkit-animation-delay: 19s;
    animation-delay: 19s
}

.ct-loading-container .loading-text span:nth-child(191) {
    -webkit-animation-delay: 19.1s;
    animation-delay: 19.1s
}

.ct-loading-container .loading-text span:nth-child(192) {
    -webkit-animation-delay: 19.2s;
    animation-delay: 19.2s
}

.ct-loading-container .loading-text span:nth-child(193) {
    -webkit-animation-delay: 19.3s;
    animation-delay: 19.3s
}

.ct-loading-container .loading-text span:nth-child(194) {
    -webkit-animation-delay: 19.4s;
    animation-delay: 19.4s
}

.ct-loading-container .loading-text span:nth-child(195) {
    -webkit-animation-delay: 19.5s;
    animation-delay: 19.5s
}

.ct-loading-container .loading-text span:nth-child(196) {
    -webkit-animation-delay: 19.6s;
    animation-delay: 19.6s
}

.ct-loading-container .loading-text span:nth-child(197) {
    -webkit-animation-delay: 19.7s;
    animation-delay: 19.7s
}

.ct-loading-container .loading-text span:nth-child(198) {
    -webkit-animation-delay: 19.8s;
    animation-delay: 19.8s
}

.ct-loading-container .loading-text span:nth-child(199) {
    -webkit-animation-delay: 19.9s;
    animation-delay: 19.9s
}

.ct-loading-container .loading-text span:nth-child(200) {
    -webkit-animation-delay: 20s;
    animation-delay: 20s
}

.ct-loading-container .loading-text span:nth-child(201) {
    -webkit-animation-delay: 20.1s;
    animation-delay: 20.1s
}

.ct-loading-container .loading-text span:nth-child(202) {
    -webkit-animation-delay: 20.2s;
    animation-delay: 20.2s
}

.ct-loading-container .loading-text span:nth-child(203) {
    -webkit-animation-delay: 20.3s;
    animation-delay: 20.3s
}

.ct-loading-container .loading-text span:nth-child(204) {
    -webkit-animation-delay: 20.4s;
    animation-delay: 20.4s
}

.ct-loading-container .loading-text span:nth-child(205) {
    -webkit-animation-delay: 20.5s;
    animation-delay: 20.5s
}

.ct-loading-container .loading-text span:nth-child(206) {
    -webkit-animation-delay: 20.6s;
    animation-delay: 20.6s
}

.ct-loading-container .loading-text span:nth-child(207) {
    -webkit-animation-delay: 20.7s;
    animation-delay: 20.7s
}

.ct-loading-container .loading-text span:nth-child(208) {
    -webkit-animation-delay: 20.8s;
    animation-delay: 20.8s
}

.ct-loading-container .loading-text span:nth-child(209) {
    -webkit-animation-delay: 20.9s;
    animation-delay: 20.9s
}

.ct-loading-container .loading-text span:nth-child(210) {
    -webkit-animation-delay: 21s;
    animation-delay: 21s
}

.ct-loading-container .loading-text span:nth-child(211) {
    -webkit-animation-delay: 21.1s;
    animation-delay: 21.1s
}

.ct-loading-container .loading-text span:nth-child(212) {
    -webkit-animation-delay: 21.2s;
    animation-delay: 21.2s
}

.ct-loading-container .loading-text span:nth-child(213) {
    -webkit-animation-delay: 21.3s;
    animation-delay: 21.3s
}

.ct-loading-container .loading-text span:nth-child(214) {
    -webkit-animation-delay: 21.4s;
    animation-delay: 21.4s
}

.ct-loading-container .loading-text span:nth-child(215) {
    -webkit-animation-delay: 21.5s;
    animation-delay: 21.5s
}

.ct-loading-container .loading-text span:nth-child(216) {
    -webkit-animation-delay: 21.6s;
    animation-delay: 21.6s
}

.ct-loading-container .loading-text span:nth-child(217) {
    -webkit-animation-delay: 21.7s;
    animation-delay: 21.7s
}

.ct-loading-container .loading-text span:nth-child(218) {
    -webkit-animation-delay: 21.8s;
    animation-delay: 21.8s
}

.ct-loading-container .loading-text span:nth-child(219) {
    -webkit-animation-delay: 21.9s;
    animation-delay: 21.9s
}

.ct-loading-container .loading-text span:nth-child(220) {
    -webkit-animation-delay: 22s;
    animation-delay: 22s
}

.ct-loading-container .loading-text span:nth-child(221) {
    -webkit-animation-delay: 22.1s;
    animation-delay: 22.1s
}

.ct-loading-container .loading-text span:nth-child(222) {
    -webkit-animation-delay: 22.2s;
    animation-delay: 22.2s
}

.ct-loading-container .loading-text span:nth-child(223) {
    -webkit-animation-delay: 22.3s;
    animation-delay: 22.3s
}

.ct-loading-container .loading-text span:nth-child(224) {
    -webkit-animation-delay: 22.4s;
    animation-delay: 22.4s
}

.ct-loading-container .loading-text span:nth-child(225) {
    -webkit-animation-delay: 22.5s;
    animation-delay: 22.5s
}

.ct-loading-container .loading-text span:nth-child(226) {
    -webkit-animation-delay: 22.6s;
    animation-delay: 22.6s
}

.ct-loading-container .loading-text span:nth-child(227) {
    -webkit-animation-delay: 22.7s;
    animation-delay: 22.7s
}

.ct-loading-container .loading-text span:nth-child(228) {
    -webkit-animation-delay: 22.8s;
    animation-delay: 22.8s
}

.ct-loading-container .loading-text span:nth-child(229) {
    -webkit-animation-delay: 22.9s;
    animation-delay: 22.9s
}

.ct-loading-container .loading-text span:nth-child(230) {
    -webkit-animation-delay: 23s;
    animation-delay: 23s
}

.ct-loading-container .loading-text span:nth-child(231) {
    -webkit-animation-delay: 23.1s;
    animation-delay: 23.1s
}

.ct-loading-container .loading-text span:nth-child(232) {
    -webkit-animation-delay: 23.2s;
    animation-delay: 23.2s
}

.ct-loading-container .loading-text span:nth-child(233) {
    -webkit-animation-delay: 23.3s;
    animation-delay: 23.3s
}

.ct-loading-container .loading-text span:nth-child(234) {
    -webkit-animation-delay: 23.4s;
    animation-delay: 23.4s
}

.ct-loading-container .loading-text span:nth-child(235) {
    -webkit-animation-delay: 23.5s;
    animation-delay: 23.5s
}

.ct-loading-container .loading-text span:nth-child(236) {
    -webkit-animation-delay: 23.6s;
    animation-delay: 23.6s
}

.ct-loading-container .loading-text span:nth-child(237) {
    -webkit-animation-delay: 23.7s;
    animation-delay: 23.7s
}

.ct-loading-container .loading-text span:nth-child(238) {
    -webkit-animation-delay: 23.8s;
    animation-delay: 23.8s
}

.ct-loading-container .loading-text span:nth-child(239) {
    -webkit-animation-delay: 23.9s;
    animation-delay: 23.9s
}

.ct-loading-container .loading-text span:nth-child(240) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s
}

.ct-loading-container .loading-text span:nth-child(241) {
    -webkit-animation-delay: 24.1s;
    animation-delay: 24.1s
}

.ct-loading-container .loading-text span:nth-child(242) {
    -webkit-animation-delay: 24.2s;
    animation-delay: 24.2s
}

.ct-loading-container .loading-text span:nth-child(243) {
    -webkit-animation-delay: 24.3s;
    animation-delay: 24.3s
}

.ct-loading-container .loading-text span:nth-child(244) {
    -webkit-animation-delay: 24.4s;
    animation-delay: 24.4s
}

.ct-loading-container .loading-text span:nth-child(245) {
    -webkit-animation-delay: 24.5s;
    animation-delay: 24.5s
}

.ct-loading-container .loading-text span:nth-child(246) {
    -webkit-animation-delay: 24.6s;
    animation-delay: 24.6s
}

.ct-loading-container .loading-text span:nth-child(247) {
    -webkit-animation-delay: 24.7s;
    animation-delay: 24.7s
}

.ct-loading-container .loading-text span:nth-child(248) {
    -webkit-animation-delay: 24.8s;
    animation-delay: 24.8s
}

.ct-loading-container .loading-text span:nth-child(249) {
    -webkit-animation-delay: 24.9s;
    animation-delay: 24.9s
}

.ct-loading-container .loading-text span:nth-child(250) {
    -webkit-animation-delay: 25s;
    animation-delay: 25s
}

.ct-loading-container .loading-text span:nth-child(251) {
    -webkit-animation-delay: 25.1s;
    animation-delay: 25.1s
}

.ct-loading-container .loading-text span:nth-child(252) {
    -webkit-animation-delay: 25.2s;
    animation-delay: 25.2s
}

.ct-loading-container .loading-text span:nth-child(253) {
    -webkit-animation-delay: 25.3s;
    animation-delay: 25.3s
}

.ct-loading-container .loading-text span:nth-child(254) {
    -webkit-animation-delay: 25.4s;
    animation-delay: 25.4s
}

.ct-loading-container .loading-text span:nth-child(255) {
    -webkit-animation-delay: 25.5s;
    animation-delay: 25.5s
}

.ct-loading-container .loading-text span:nth-child(256) {
    -webkit-animation-delay: 25.6s;
    animation-delay: 25.6s
}

.ct-loading-container .loading-text span:nth-child(257) {
    -webkit-animation-delay: 25.7s;
    animation-delay: 25.7s
}

.ct-loading-container .loading-text span:nth-child(258) {
    -webkit-animation-delay: 25.8s;
    animation-delay: 25.8s
}

.ct-loading-container .loading-text span:nth-child(259) {
    -webkit-animation-delay: 25.9s;
    animation-delay: 25.9s
}

.ct-loading-container .loading-text span:nth-child(260) {
    -webkit-animation-delay: 26s;
    animation-delay: 26s
}

.ct-loading-container .loading-text span:nth-child(261) {
    -webkit-animation-delay: 26.1s;
    animation-delay: 26.1s
}

.ct-loading-container .loading-text span:nth-child(262) {
    -webkit-animation-delay: 26.2s;
    animation-delay: 26.2s
}

.ct-loading-container .loading-text span:nth-child(263) {
    -webkit-animation-delay: 26.3s;
    animation-delay: 26.3s
}

.ct-loading-container .loading-text span:nth-child(264) {
    -webkit-animation-delay: 26.4s;
    animation-delay: 26.4s
}

.ct-loading-container .loading-text span:nth-child(265) {
    -webkit-animation-delay: 26.5s;
    animation-delay: 26.5s
}

.ct-loading-container .loading-text span:nth-child(266) {
    -webkit-animation-delay: 26.6s;
    animation-delay: 26.6s
}

.ct-loading-container .loading-text span:nth-child(267) {
    -webkit-animation-delay: 26.7s;
    animation-delay: 26.7s
}

.ct-loading-container .loading-text span:nth-child(268) {
    -webkit-animation-delay: 26.8s;
    animation-delay: 26.8s
}

.ct-loading-container .loading-text span:nth-child(269) {
    -webkit-animation-delay: 26.9s;
    animation-delay: 26.9s
}

.ct-loading-container .loading-text span:nth-child(270) {
    -webkit-animation-delay: 27s;
    animation-delay: 27s
}

.ct-loading-container .loading-text span:nth-child(271) {
    -webkit-animation-delay: 27.1s;
    animation-delay: 27.1s
}

.ct-loading-container .loading-text span:nth-child(272) {
    -webkit-animation-delay: 27.2s;
    animation-delay: 27.2s
}

.ct-loading-container .loading-text span:nth-child(273) {
    -webkit-animation-delay: 27.3s;
    animation-delay: 27.3s
}

.ct-loading-container .loading-text span:nth-child(274) {
    -webkit-animation-delay: 27.4s;
    animation-delay: 27.4s
}

.ct-loading-container .loading-text span:nth-child(275) {
    -webkit-animation-delay: 27.5s;
    animation-delay: 27.5s
}

.ct-loading-container .loading-text span:nth-child(276) {
    -webkit-animation-delay: 27.6s;
    animation-delay: 27.6s
}

.ct-loading-container .loading-text span:nth-child(277) {
    -webkit-animation-delay: 27.7s;
    animation-delay: 27.7s
}

.ct-loading-container .loading-text span:nth-child(278) {
    -webkit-animation-delay: 27.8s;
    animation-delay: 27.8s
}

.ct-loading-container .loading-text span:nth-child(279) {
    -webkit-animation-delay: 27.9s;
    animation-delay: 27.9s
}

.ct-loading-container .loading-text span:nth-child(280) {
    -webkit-animation-delay: 28s;
    animation-delay: 28s
}

.ct-loading-container .loading-text span:nth-child(281) {
    -webkit-animation-delay: 28.1s;
    animation-delay: 28.1s
}

.ct-loading-container .loading-text span:nth-child(282) {
    -webkit-animation-delay: 28.2s;
    animation-delay: 28.2s
}

.ct-loading-container .loading-text span:nth-child(283) {
    -webkit-animation-delay: 28.3s;
    animation-delay: 28.3s
}

.ct-loading-container .loading-text span:nth-child(284) {
    -webkit-animation-delay: 28.4s;
    animation-delay: 28.4s
}

.ct-loading-container .loading-text span:nth-child(285) {
    -webkit-animation-delay: 28.5s;
    animation-delay: 28.5s
}

.ct-loading-container .loading-text span:nth-child(286) {
    -webkit-animation-delay: 28.6s;
    animation-delay: 28.6s
}

.ct-loading-container .loading-text span:nth-child(287) {
    -webkit-animation-delay: 28.7s;
    animation-delay: 28.7s
}

.ct-loading-container .loading-text span:nth-child(288) {
    -webkit-animation-delay: 28.8s;
    animation-delay: 28.8s
}

.ct-loading-container .loading-text span:nth-child(289) {
    -webkit-animation-delay: 28.9s;
    animation-delay: 28.9s
}

.ct-loading-container .loading-text span:nth-child(290) {
    -webkit-animation-delay: 29s;
    animation-delay: 29s
}

.ct-loading-container .loading-text span:nth-child(291) {
    -webkit-animation-delay: 29.1s;
    animation-delay: 29.1s
}

.ct-loading-container .loading-text span:nth-child(292) {
    -webkit-animation-delay: 29.2s;
    animation-delay: 29.2s
}

.ct-loading-container .loading-text span:nth-child(293) {
    -webkit-animation-delay: 29.3s;
    animation-delay: 29.3s
}

.ct-loading-container .loading-text span:nth-child(294) {
    -webkit-animation-delay: 29.4s;
    animation-delay: 29.4s
}

.ct-loading-container .loading-text span:nth-child(295) {
    -webkit-animation-delay: 29.5s;
    animation-delay: 29.5s
}

.ct-loading-container .loading-text span:nth-child(296) {
    -webkit-animation-delay: 29.6s;
    animation-delay: 29.6s
}

.ct-loading-container .loading-text span:nth-child(297) {
    -webkit-animation-delay: 29.7s;
    animation-delay: 29.7s
}

.ct-loading-container .loading-text span:nth-child(298) {
    -webkit-animation-delay: 29.8s;
    animation-delay: 29.8s
}

.ct-loading-container .loading-text span:nth-child(299) {
    -webkit-animation-delay: 29.9s;
    animation-delay: 29.9s
}

.ct-loading-container .loading-text span:nth-child(300) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s
}

.ct-loading-container .loading-text span:nth-child(301) {
    -webkit-animation-delay: 30.1s;
    animation-delay: 30.1s
}

.ct-loading-container .loading-text span:nth-child(302) {
    -webkit-animation-delay: 30.2s;
    animation-delay: 30.2s
}

.ct-loading-container .loading-text span:nth-child(303) {
    -webkit-animation-delay: 30.3s;
    animation-delay: 30.3s
}

.ct-loading-container .loading-text span:nth-child(304) {
    -webkit-animation-delay: 30.4s;
    animation-delay: 30.4s
}

.ct-loading-container .loading-text span:nth-child(305) {
    -webkit-animation-delay: 30.5s;
    animation-delay: 30.5s
}

.ct-loading-container .loading-text span:nth-child(306) {
    -webkit-animation-delay: 30.6s;
    animation-delay: 30.6s
}

.ct-loading-container .loading-text span:nth-child(307) {
    -webkit-animation-delay: 30.7s;
    animation-delay: 30.7s
}

.ct-loading-container .loading-text span:nth-child(308) {
    -webkit-animation-delay: 30.8s;
    animation-delay: 30.8s
}

.ct-loading-container .loading-text span:nth-child(309) {
    -webkit-animation-delay: 30.9s;
    animation-delay: 30.9s
}

.ct-loading-container .loading-text span:nth-child(310) {
    -webkit-animation-delay: 31s;
    animation-delay: 31s
}

.ct-loading-container .loading-text span:nth-child(311) {
    -webkit-animation-delay: 31.1s;
    animation-delay: 31.1s
}

.ct-loading-container .loading-text span:nth-child(312) {
    -webkit-animation-delay: 31.2s;
    animation-delay: 31.2s
}

.ct-loading-container .loading-text span:nth-child(313) {
    -webkit-animation-delay: 31.3s;
    animation-delay: 31.3s
}

.ct-loading-container .loading-text span:nth-child(314) {
    -webkit-animation-delay: 31.4s;
    animation-delay: 31.4s
}

.ct-loading-container .loading-text span:nth-child(315) {
    -webkit-animation-delay: 31.5s;
    animation-delay: 31.5s
}

.ct-loading-container .loading-text span:nth-child(316) {
    -webkit-animation-delay: 31.6s;
    animation-delay: 31.6s
}

.ct-loading-container .loading-text span:nth-child(317) {
    -webkit-animation-delay: 31.7s;
    animation-delay: 31.7s
}

.ct-loading-container .loading-text span:nth-child(318) {
    -webkit-animation-delay: 31.8s;
    animation-delay: 31.8s
}

.ct-loading-container .loading-text span:nth-child(319) {
    -webkit-animation-delay: 31.9s;
    animation-delay: 31.9s
}

.ct-loading-container .loading-text span:nth-child(320) {
    -webkit-animation-delay: 32s;
    animation-delay: 32s
}

.ct-loading-container .loading-text span:nth-child(321) {
    -webkit-animation-delay: 32.1s;
    animation-delay: 32.1s
}

.ct-loading-container .loading-text span:nth-child(322) {
    -webkit-animation-delay: 32.2s;
    animation-delay: 32.2s
}

.ct-loading-container .loading-text span:nth-child(323) {
    -webkit-animation-delay: 32.3s;
    animation-delay: 32.3s
}

.ct-loading-container .loading-text span:nth-child(324) {
    -webkit-animation-delay: 32.4s;
    animation-delay: 32.4s
}

.ct-loading-container .loading-text span:nth-child(325) {
    -webkit-animation-delay: 32.5s;
    animation-delay: 32.5s
}

.ct-loading-container .loading-text span:nth-child(326) {
    -webkit-animation-delay: 32.6s;
    animation-delay: 32.6s
}

.ct-loading-container .loading-text span:nth-child(327) {
    -webkit-animation-delay: 32.7s;
    animation-delay: 32.7s
}

.ct-loading-container .loading-text span:nth-child(328) {
    -webkit-animation-delay: 32.8s;
    animation-delay: 32.8s
}

.ct-loading-container .loading-text span:nth-child(329) {
    -webkit-animation-delay: 32.9s;
    animation-delay: 32.9s
}

.ct-loading-container .loading-text span:nth-child(330) {
    -webkit-animation-delay: 33s;
    animation-delay: 33s
}

.ct-loading-container .loading-text span:nth-child(331) {
    -webkit-animation-delay: 33.1s;
    animation-delay: 33.1s
}

.ct-loading-container .loading-text span:nth-child(332) {
    -webkit-animation-delay: 33.2s;
    animation-delay: 33.2s
}

.ct-loading-container .loading-text span:nth-child(333) {
    -webkit-animation-delay: 33.3s;
    animation-delay: 33.3s
}

.ct-loading-container .loading-text span:nth-child(334) {
    -webkit-animation-delay: 33.4s;
    animation-delay: 33.4s
}

.ct-loading-container .loading-text span:nth-child(335) {
    -webkit-animation-delay: 33.5s;
    animation-delay: 33.5s
}

.ct-loading-container .loading-text span:nth-child(336) {
    -webkit-animation-delay: 33.6s;
    animation-delay: 33.6s
}

.ct-loading-container .loading-text span:nth-child(337) {
    -webkit-animation-delay: 33.7s;
    animation-delay: 33.7s
}

.ct-loading-container .loading-text span:nth-child(338) {
    -webkit-animation-delay: 33.8s;
    animation-delay: 33.8s
}

.ct-loading-container .loading-text span:nth-child(339) {
    -webkit-animation-delay: 33.9s;
    animation-delay: 33.9s
}

.ct-loading-container .loading-text span:nth-child(340) {
    -webkit-animation-delay: 34s;
    animation-delay: 34s
}

.ct-loading-container .loading-text span:nth-child(341) {
    -webkit-animation-delay: 34.1s;
    animation-delay: 34.1s
}

.ct-loading-container .loading-text span:nth-child(342) {
    -webkit-animation-delay: 34.2s;
    animation-delay: 34.2s
}

.ct-loading-container .loading-text span:nth-child(343) {
    -webkit-animation-delay: 34.3s;
    animation-delay: 34.3s
}

.ct-loading-container .loading-text span:nth-child(344) {
    -webkit-animation-delay: 34.4s;
    animation-delay: 34.4s
}

.ct-loading-container .loading-text span:nth-child(345) {
    -webkit-animation-delay: 34.5s;
    animation-delay: 34.5s
}

.ct-loading-container .loading-text span:nth-child(346) {
    -webkit-animation-delay: 34.6s;
    animation-delay: 34.6s
}

.ct-loading-container .loading-text span:nth-child(347) {
    -webkit-animation-delay: 34.7s;
    animation-delay: 34.7s
}

.ct-loading-container .loading-text span:nth-child(348) {
    -webkit-animation-delay: 34.8s;
    animation-delay: 34.8s
}

.ct-loading-container .loading-text span:nth-child(349) {
    -webkit-animation-delay: 34.9s;
    animation-delay: 34.9s
}

.ct-loading-container .loading-text span:nth-child(350) {
    -webkit-animation-delay: 35s;
    animation-delay: 35s
}

.ct-loading-container .loading-text span:nth-child(351) {
    -webkit-animation-delay: 35.1s;
    animation-delay: 35.1s
}

.ct-loading-container .loading-text span:nth-child(352) {
    -webkit-animation-delay: 35.2s;
    animation-delay: 35.2s
}

.ct-loading-container .loading-text span:nth-child(353) {
    -webkit-animation-delay: 35.3s;
    animation-delay: 35.3s
}

.ct-loading-container .loading-text span:nth-child(354) {
    -webkit-animation-delay: 35.4s;
    animation-delay: 35.4s
}

.ct-loading-container .loading-text span:nth-child(355) {
    -webkit-animation-delay: 35.5s;
    animation-delay: 35.5s
}

.ct-loading-container .loading-text span:nth-child(356) {
    -webkit-animation-delay: 35.6s;
    animation-delay: 35.6s
}

.ct-loading-container .loading-text span:nth-child(357) {
    -webkit-animation-delay: 35.7s;
    animation-delay: 35.7s
}

.ct-loading-container .loading-text span:nth-child(358) {
    -webkit-animation-delay: 35.8s;
    animation-delay: 35.8s
}

.ct-loading-container .loading-text span:nth-child(359) {
    -webkit-animation-delay: 35.9s;
    animation-delay: 35.9s
}

.ct-loading-container .loading-text span:nth-child(360) {
    -webkit-animation-delay: 36s;
    animation-delay: 36s
}

.ct-loading-container .loading-text span:nth-child(361) {
    -webkit-animation-delay: 36.1s;
    animation-delay: 36.1s
}

.ct-loading-container .loading-text span:nth-child(362) {
    -webkit-animation-delay: 36.2s;
    animation-delay: 36.2s
}

.ct-loading-container .loading-text span:nth-child(363) {
    -webkit-animation-delay: 36.3s;
    animation-delay: 36.3s
}

.ct-loading-container .loading-text span:nth-child(364) {
    -webkit-animation-delay: 36.4s;
    animation-delay: 36.4s
}

.ct-loading-container .loading-text span:nth-child(365) {
    -webkit-animation-delay: 36.5s;
    animation-delay: 36.5s
}

.ct-loading-container .loading-text span:nth-child(366) {
    -webkit-animation-delay: 36.6s;
    animation-delay: 36.6s
}

.ct-loading-container .loading-text span:nth-child(367) {
    -webkit-animation-delay: 36.7s;
    animation-delay: 36.7s
}

.ct-loading-container .loading-text span:nth-child(368) {
    -webkit-animation-delay: 36.8s;
    animation-delay: 36.8s
}

.ct-loading-container .loading-text span:nth-child(369) {
    -webkit-animation-delay: 36.9s;
    animation-delay: 36.9s
}

.ct-loading-container .loading-text span:nth-child(370) {
    -webkit-animation-delay: 37s;
    animation-delay: 37s
}

.ct-loading-container .loading-text span:nth-child(371) {
    -webkit-animation-delay: 37.1s;
    animation-delay: 37.1s
}

.ct-loading-container .loading-text span:nth-child(372) {
    -webkit-animation-delay: 37.2s;
    animation-delay: 37.2s
}

.ct-loading-container .loading-text span:nth-child(373) {
    -webkit-animation-delay: 37.3s;
    animation-delay: 37.3s
}

.ct-loading-container .loading-text span:nth-child(374) {
    -webkit-animation-delay: 37.4s;
    animation-delay: 37.4s
}

.ct-loading-container .loading-text span:nth-child(375) {
    -webkit-animation-delay: 37.5s;
    animation-delay: 37.5s
}

.ct-loading-container .loading-text span:nth-child(376) {
    -webkit-animation-delay: 37.6s;
    animation-delay: 37.6s
}

.ct-loading-container .loading-text span:nth-child(377) {
    -webkit-animation-delay: 37.7s;
    animation-delay: 37.7s
}

.ct-loading-container .loading-text span:nth-child(378) {
    -webkit-animation-delay: 37.8s;
    animation-delay: 37.8s
}

.ct-loading-container .loading-text span:nth-child(379) {
    -webkit-animation-delay: 37.9s;
    animation-delay: 37.9s
}

.ct-loading-container .loading-text span:nth-child(380) {
    -webkit-animation-delay: 38s;
    animation-delay: 38s
}

.ct-loading-container .loading-text span:nth-child(381) {
    -webkit-animation-delay: 38.1s;
    animation-delay: 38.1s
}

.ct-loading-container .loading-text span:nth-child(382) {
    -webkit-animation-delay: 38.2s;
    animation-delay: 38.2s
}

.ct-loading-container .loading-text span:nth-child(383) {
    -webkit-animation-delay: 38.3s;
    animation-delay: 38.3s
}

.ct-loading-container .loading-text span:nth-child(384) {
    -webkit-animation-delay: 38.4s;
    animation-delay: 38.4s
}

.ct-loading-container .loading-text span:nth-child(385) {
    -webkit-animation-delay: 38.5s;
    animation-delay: 38.5s
}

.ct-loading-container .loading-text span:nth-child(386) {
    -webkit-animation-delay: 38.6s;
    animation-delay: 38.6s
}

.ct-loading-container .loading-text span:nth-child(387) {
    -webkit-animation-delay: 38.7s;
    animation-delay: 38.7s
}

.ct-loading-container .loading-text span:nth-child(388) {
    -webkit-animation-delay: 38.8s;
    animation-delay: 38.8s
}

.ct-loading-container .loading-text span:nth-child(389) {
    -webkit-animation-delay: 38.9s;
    animation-delay: 38.9s
}

.ct-loading-container .loading-text span:nth-child(390) {
    -webkit-animation-delay: 39s;
    animation-delay: 39s
}

.ct-loading-container .loading-text span:nth-child(391) {
    -webkit-animation-delay: 39.1s;
    animation-delay: 39.1s
}

.ct-loading-container .loading-text span:nth-child(392) {
    -webkit-animation-delay: 39.2s;
    animation-delay: 39.2s
}

.ct-loading-container .loading-text span:nth-child(393) {
    -webkit-animation-delay: 39.3s;
    animation-delay: 39.3s
}

.ct-loading-container .loading-text span:nth-child(394) {
    -webkit-animation-delay: 39.4s;
    animation-delay: 39.4s
}

.ct-loading-container .loading-text span:nth-child(395) {
    -webkit-animation-delay: 39.5s;
    animation-delay: 39.5s
}

.ct-loading-container .loading-text span:nth-child(396) {
    -webkit-animation-delay: 39.6s;
    animation-delay: 39.6s
}

.ct-loading-container .loading-text span:nth-child(397) {
    -webkit-animation-delay: 39.7s;
    animation-delay: 39.7s
}

.ct-loading-container .loading-text span:nth-child(398) {
    -webkit-animation-delay: 39.8s;
    animation-delay: 39.8s
}

.ct-loading-container .loading-text span:nth-child(399) {
    -webkit-animation-delay: 39.9s;
    animation-delay: 39.9s
}

.ct-loading-container .loading-text span:nth-child(400) {
    -webkit-animation-delay: 40s;
    animation-delay: 40s
}

.ct-loading-container .loading-text span:nth-child(401) {
    -webkit-animation-delay: 40.1s;
    animation-delay: 40.1s
}

.ct-loading-container .loading-text span:nth-child(402) {
    -webkit-animation-delay: 40.2s;
    animation-delay: 40.2s
}

.ct-loading-container .loading-text span:nth-child(403) {
    -webkit-animation-delay: 40.3s;
    animation-delay: 40.3s
}

.ct-loading-container .loading-text span:nth-child(404) {
    -webkit-animation-delay: 40.4s;
    animation-delay: 40.4s
}

.ct-loading-container .loading-text span:nth-child(405) {
    -webkit-animation-delay: 40.5s;
    animation-delay: 40.5s
}

.ct-loading-container .loading-text span:nth-child(406) {
    -webkit-animation-delay: 40.6s;
    animation-delay: 40.6s
}

.ct-loading-container .loading-text span:nth-child(407) {
    -webkit-animation-delay: 40.7s;
    animation-delay: 40.7s
}

.ct-loading-container .loading-text span:nth-child(408) {
    -webkit-animation-delay: 40.8s;
    animation-delay: 40.8s
}

.ct-loading-container .loading-text span:nth-child(409) {
    -webkit-animation-delay: 40.9s;
    animation-delay: 40.9s
}

.ct-loading-container .loading-text span:nth-child(410) {
    -webkit-animation-delay: 41s;
    animation-delay: 41s
}

.ct-loading-container .loading-text span:nth-child(411) {
    -webkit-animation-delay: 41.1s;
    animation-delay: 41.1s
}

.ct-loading-container .loading-text span:nth-child(412) {
    -webkit-animation-delay: 41.2s;
    animation-delay: 41.2s
}

.ct-loading-container .loading-text span:nth-child(413) {
    -webkit-animation-delay: 41.3s;
    animation-delay: 41.3s
}

.ct-loading-container .loading-text span:nth-child(414) {
    -webkit-animation-delay: 41.4s;
    animation-delay: 41.4s
}

.ct-loading-container .loading-text span:nth-child(415) {
    -webkit-animation-delay: 41.5s;
    animation-delay: 41.5s
}

.ct-loading-container .loading-text span:nth-child(416) {
    -webkit-animation-delay: 41.6s;
    animation-delay: 41.6s
}

.ct-loading-container .loading-text span:nth-child(417) {
    -webkit-animation-delay: 41.7s;
    animation-delay: 41.7s
}

.ct-loading-container .loading-text span:nth-child(418) {
    -webkit-animation-delay: 41.8s;
    animation-delay: 41.8s
}

.ct-loading-container .loading-text span:nth-child(419) {
    -webkit-animation-delay: 41.9s;
    animation-delay: 41.9s
}

.ct-loading-container .loading-text span:nth-child(420) {
    -webkit-animation-delay: 42s;
    animation-delay: 42s
}

.ct-loading-container .loading-text span:nth-child(421) {
    -webkit-animation-delay: 42.1s;
    animation-delay: 42.1s
}

.ct-loading-container .loading-text span:nth-child(422) {
    -webkit-animation-delay: 42.2s;
    animation-delay: 42.2s
}

.ct-loading-container .loading-text span:nth-child(423) {
    -webkit-animation-delay: 42.3s;
    animation-delay: 42.3s
}

.ct-loading-container .loading-text span:nth-child(424) {
    -webkit-animation-delay: 42.4s;
    animation-delay: 42.4s
}

.ct-loading-container .loading-text span:nth-child(425) {
    -webkit-animation-delay: 42.5s;
    animation-delay: 42.5s
}

.ct-loading-container .loading-text span:nth-child(426) {
    -webkit-animation-delay: 42.6s;
    animation-delay: 42.6s
}

.ct-loading-container .loading-text span:nth-child(427) {
    -webkit-animation-delay: 42.7s;
    animation-delay: 42.7s
}

.ct-loading-container .loading-text span:nth-child(428) {
    -webkit-animation-delay: 42.8s;
    animation-delay: 42.8s
}

.ct-loading-container .loading-text span:nth-child(429) {
    -webkit-animation-delay: 42.9s;
    animation-delay: 42.9s
}

.ct-loading-container .loading-text span:nth-child(430) {
    -webkit-animation-delay: 43s;
    animation-delay: 43s
}

.ct-loading-container .loading-text span:nth-child(431) {
    -webkit-animation-delay: 43.1s;
    animation-delay: 43.1s
}

.ct-loading-container .loading-text span:nth-child(432) {
    -webkit-animation-delay: 43.2s;
    animation-delay: 43.2s
}

.ct-loading-container .loading-text span:nth-child(433) {
    -webkit-animation-delay: 43.3s;
    animation-delay: 43.3s
}

.ct-loading-container .loading-text span:nth-child(434) {
    -webkit-animation-delay: 43.4s;
    animation-delay: 43.4s
}

.ct-loading-container .loading-text span:nth-child(435) {
    -webkit-animation-delay: 43.5s;
    animation-delay: 43.5s
}

.ct-loading-container .loading-text span:nth-child(436) {
    -webkit-animation-delay: 43.6s;
    animation-delay: 43.6s
}

.ct-loading-container .loading-text span:nth-child(437) {
    -webkit-animation-delay: 43.7s;
    animation-delay: 43.7s
}

.ct-loading-container .loading-text span:nth-child(438) {
    -webkit-animation-delay: 43.8s;
    animation-delay: 43.8s
}

.ct-loading-container .loading-text span:nth-child(439) {
    -webkit-animation-delay: 43.9s;
    animation-delay: 43.9s
}

.ct-loading-container .loading-text span:nth-child(440) {
    -webkit-animation-delay: 44s;
    animation-delay: 44s
}

.ct-loading-container .loading-text span:nth-child(441) {
    -webkit-animation-delay: 44.1s;
    animation-delay: 44.1s
}

.ct-loading-container .loading-text span:nth-child(442) {
    -webkit-animation-delay: 44.2s;
    animation-delay: 44.2s
}

.ct-loading-container .loading-text span:nth-child(443) {
    -webkit-animation-delay: 44.3s;
    animation-delay: 44.3s
}

.ct-loading-container .loading-text span:nth-child(444) {
    -webkit-animation-delay: 44.4s;
    animation-delay: 44.4s
}

.ct-loading-container .loading-text span:nth-child(445) {
    -webkit-animation-delay: 44.5s;
    animation-delay: 44.5s
}

.ct-loading-container .loading-text span:nth-child(446) {
    -webkit-animation-delay: 44.6s;
    animation-delay: 44.6s
}

.ct-loading-container .loading-text span:nth-child(447) {
    -webkit-animation-delay: 44.7s;
    animation-delay: 44.7s
}

.ct-loading-container .loading-text span:nth-child(448) {
    -webkit-animation-delay: 44.8s;
    animation-delay: 44.8s
}

.ct-loading-container .loading-text span:nth-child(449) {
    -webkit-animation-delay: 44.9s;
    animation-delay: 44.9s
}

.ct-loading-container .loading-text span:nth-child(450) {
    -webkit-animation-delay: 45s;
    animation-delay: 45s
}

.ct-loading-container .loading-text span:nth-child(451) {
    -webkit-animation-delay: 45.1s;
    animation-delay: 45.1s
}

.ct-loading-container .loading-text span:nth-child(452) {
    -webkit-animation-delay: 45.2s;
    animation-delay: 45.2s
}

.ct-loading-container .loading-text span:nth-child(453) {
    -webkit-animation-delay: 45.3s;
    animation-delay: 45.3s
}

.ct-loading-container .loading-text span:nth-child(454) {
    -webkit-animation-delay: 45.4s;
    animation-delay: 45.4s
}

.ct-loading-container .loading-text span:nth-child(455) {
    -webkit-animation-delay: 45.5s;
    animation-delay: 45.5s
}

.ct-loading-container .loading-text span:nth-child(456) {
    -webkit-animation-delay: 45.6s;
    animation-delay: 45.6s
}

.ct-loading-container .loading-text span:nth-child(457) {
    -webkit-animation-delay: 45.7s;
    animation-delay: 45.7s
}

.ct-loading-container .loading-text span:nth-child(458) {
    -webkit-animation-delay: 45.8s;
    animation-delay: 45.8s
}

.ct-loading-container .loading-text span:nth-child(459) {
    -webkit-animation-delay: 45.9s;
    animation-delay: 45.9s
}

.ct-loading-container .loading-text span:nth-child(460) {
    -webkit-animation-delay: 46s;
    animation-delay: 46s
}

.ct-loading-container .loading-text span:nth-child(461) {
    -webkit-animation-delay: 46.1s;
    animation-delay: 46.1s
}

.ct-loading-container .loading-text span:nth-child(462) {
    -webkit-animation-delay: 46.2s;
    animation-delay: 46.2s
}

.ct-loading-container .loading-text span:nth-child(463) {
    -webkit-animation-delay: 46.3s;
    animation-delay: 46.3s
}

.ct-loading-container .loading-text span:nth-child(464) {
    -webkit-animation-delay: 46.4s;
    animation-delay: 46.4s
}

.ct-loading-container .loading-text span:nth-child(465) {
    -webkit-animation-delay: 46.5s;
    animation-delay: 46.5s
}

.ct-loading-container .loading-text span:nth-child(466) {
    -webkit-animation-delay: 46.6s;
    animation-delay: 46.6s
}

.ct-loading-container .loading-text span:nth-child(467) {
    -webkit-animation-delay: 46.7s;
    animation-delay: 46.7s
}

.ct-loading-container .loading-text span:nth-child(468) {
    -webkit-animation-delay: 46.8s;
    animation-delay: 46.8s
}

.ct-loading-container .loading-text span:nth-child(469) {
    -webkit-animation-delay: 46.9s;
    animation-delay: 46.9s
}

.ct-loading-container .loading-text span:nth-child(470) {
    -webkit-animation-delay: 47s;
    animation-delay: 47s
}

.ct-loading-container .loading-text span:nth-child(471) {
    -webkit-animation-delay: 47.1s;
    animation-delay: 47.1s
}

.ct-loading-container .loading-text span:nth-child(472) {
    -webkit-animation-delay: 47.2s;
    animation-delay: 47.2s
}

.ct-loading-container .loading-text span:nth-child(473) {
    -webkit-animation-delay: 47.3s;
    animation-delay: 47.3s
}

.ct-loading-container .loading-text span:nth-child(474) {
    -webkit-animation-delay: 47.4s;
    animation-delay: 47.4s
}

.ct-loading-container .loading-text span:nth-child(475) {
    -webkit-animation-delay: 47.5s;
    animation-delay: 47.5s
}

.ct-loading-container .loading-text span:nth-child(476) {
    -webkit-animation-delay: 47.6s;
    animation-delay: 47.6s
}

.ct-loading-container .loading-text span:nth-child(477) {
    -webkit-animation-delay: 47.7s;
    animation-delay: 47.7s
}

.ct-loading-container .loading-text span:nth-child(478) {
    -webkit-animation-delay: 47.8s;
    animation-delay: 47.8s
}

.ct-loading-container .loading-text span:nth-child(479) {
    -webkit-animation-delay: 47.9s;
    animation-delay: 47.9s
}

.ct-loading-container .loading-text span:nth-child(480) {
    -webkit-animation-delay: 48s;
    animation-delay: 48s
}

.ct-loading-container .loading-text span:nth-child(481) {
    -webkit-animation-delay: 48.1s;
    animation-delay: 48.1s
}

.ct-loading-container .loading-text span:nth-child(482) {
    -webkit-animation-delay: 48.2s;
    animation-delay: 48.2s
}

.ct-loading-container .loading-text span:nth-child(483) {
    -webkit-animation-delay: 48.3s;
    animation-delay: 48.3s
}

.ct-loading-container .loading-text span:nth-child(484) {
    -webkit-animation-delay: 48.4s;
    animation-delay: 48.4s
}

.ct-loading-container .loading-text span:nth-child(485) {
    -webkit-animation-delay: 48.5s;
    animation-delay: 48.5s
}

.ct-loading-container .loading-text span:nth-child(486) {
    -webkit-animation-delay: 48.6s;
    animation-delay: 48.6s
}

.ct-loading-container .loading-text span:nth-child(487) {
    -webkit-animation-delay: 48.7s;
    animation-delay: 48.7s
}

.ct-loading-container .loading-text span:nth-child(488) {
    -webkit-animation-delay: 48.8s;
    animation-delay: 48.8s
}

.ct-loading-container .loading-text span:nth-child(489) {
    -webkit-animation-delay: 48.9s;
    animation-delay: 48.9s
}

.ct-loading-container .loading-text span:nth-child(490) {
    -webkit-animation-delay: 49s;
    animation-delay: 49s
}

.ct-loading-container .loading-text span:nth-child(491) {
    -webkit-animation-delay: 49.1s;
    animation-delay: 49.1s
}

.ct-loading-container .loading-text span:nth-child(492) {
    -webkit-animation-delay: 49.2s;
    animation-delay: 49.2s
}

.ct-loading-container .loading-text span:nth-child(493) {
    -webkit-animation-delay: 49.3s;
    animation-delay: 49.3s
}

.ct-loading-container .loading-text span:nth-child(494) {
    -webkit-animation-delay: 49.4s;
    animation-delay: 49.4s
}

.ct-loading-container .loading-text span:nth-child(495) {
    -webkit-animation-delay: 49.5s;
    animation-delay: 49.5s
}

.ct-loading-container .loading-text span:nth-child(496) {
    -webkit-animation-delay: 49.6s;
    animation-delay: 49.6s
}

.ct-loading-container .loading-text span:nth-child(497) {
    -webkit-animation-delay: 49.7s;
    animation-delay: 49.7s
}

.ct-loading-container .loading-text span:nth-child(498) {
    -webkit-animation-delay: 49.8s;
    animation-delay: 49.8s
}

.ct-loading-container .loading-text span:nth-child(499) {
    -webkit-animation-delay: 49.9s;
    animation-delay: 49.9s
}

.ct-loading-container .loading-text span:nth-child(500) {
    -webkit-animation-delay: 50s;
    animation-delay: 50s
}

.ct-loading-container .loading-text span:nth-child(501) {
    -webkit-animation-delay: 50.1s;
    animation-delay: 50.1s
}

.ct-loading-container .loading-text span:nth-child(502) {
    -webkit-animation-delay: 50.2s;
    animation-delay: 50.2s
}

.ct-loading-container .loading-text span:nth-child(503) {
    -webkit-animation-delay: 50.3s;
    animation-delay: 50.3s
}

.ct-loading-container .loading-text span:nth-child(504) {
    -webkit-animation-delay: 50.4s;
    animation-delay: 50.4s
}

.ct-loading-container .loading-text span:nth-child(505) {
    -webkit-animation-delay: 50.5s;
    animation-delay: 50.5s
}

.ct-loading-container .loading-text span:nth-child(506) {
    -webkit-animation-delay: 50.6s;
    animation-delay: 50.6s
}

.ct-loading-container .loading-text span:nth-child(507) {
    -webkit-animation-delay: 50.7s;
    animation-delay: 50.7s
}

.ct-loading-container .loading-text span:nth-child(508) {
    -webkit-animation-delay: 50.8s;
    animation-delay: 50.8s
}

.ct-loading-container .loading-text span:nth-child(509) {
    -webkit-animation-delay: 50.9s;
    animation-delay: 50.9s
}

.ct-loading-container .loading-text span:nth-child(510) {
    -webkit-animation-delay: 51s;
    animation-delay: 51s
}

.ct-loading-container .loading-text span:nth-child(511) {
    -webkit-animation-delay: 51.1s;
    animation-delay: 51.1s
}

.ct-loading-container .loading-text span:nth-child(512) {
    -webkit-animation-delay: 51.2s;
    animation-delay: 51.2s
}

.ct-loading-container .loading-text span:nth-child(513) {
    -webkit-animation-delay: 51.3s;
    animation-delay: 51.3s
}

.ct-loading-container .loading-text span:nth-child(514) {
    -webkit-animation-delay: 51.4s;
    animation-delay: 51.4s
}

.ct-loading-container .loading-text span:nth-child(515) {
    -webkit-animation-delay: 51.5s;
    animation-delay: 51.5s
}

.ct-loading-container .loading-text span:nth-child(516) {
    -webkit-animation-delay: 51.6s;
    animation-delay: 51.6s
}

.ct-loading-container .loading-text span:nth-child(517) {
    -webkit-animation-delay: 51.7s;
    animation-delay: 51.7s
}

.ct-loading-container .loading-text span:nth-child(518) {
    -webkit-animation-delay: 51.8s;
    animation-delay: 51.8s
}

.ct-loading-container .loading-text span:nth-child(519) {
    -webkit-animation-delay: 51.9s;
    animation-delay: 51.9s
}

.ct-loading-container .loading-text span:nth-child(520) {
    -webkit-animation-delay: 52s;
    animation-delay: 52s
}

.ct-loading-container .loading-text span:nth-child(521) {
    -webkit-animation-delay: 52.1s;
    animation-delay: 52.1s
}

.ct-loading-container .loading-text span:nth-child(522) {
    -webkit-animation-delay: 52.2s;
    animation-delay: 52.2s
}

.ct-loading-container .loading-text span:nth-child(523) {
    -webkit-animation-delay: 52.3s;
    animation-delay: 52.3s
}

.ct-loading-container .loading-text span:nth-child(524) {
    -webkit-animation-delay: 52.4s;
    animation-delay: 52.4s
}

.ct-loading-container .loading-text span:nth-child(525) {
    -webkit-animation-delay: 52.5s;
    animation-delay: 52.5s
}

.ct-loading-container .loading-text span:nth-child(526) {
    -webkit-animation-delay: 52.6s;
    animation-delay: 52.6s
}

.ct-loading-container .loading-text span:nth-child(527) {
    -webkit-animation-delay: 52.7s;
    animation-delay: 52.7s
}

.ct-loading-container .loading-text span:nth-child(528) {
    -webkit-animation-delay: 52.8s;
    animation-delay: 52.8s
}

.ct-loading-container .loading-text span:nth-child(529) {
    -webkit-animation-delay: 52.9s;
    animation-delay: 52.9s
}

.ct-loading-container .loading-text span:nth-child(530) {
    -webkit-animation-delay: 53s;
    animation-delay: 53s
}

.ct-loading-container .loading-text span:nth-child(531) {
    -webkit-animation-delay: 53.1s;
    animation-delay: 53.1s
}

.ct-loading-container .loading-text span:nth-child(532) {
    -webkit-animation-delay: 53.2s;
    animation-delay: 53.2s
}

.ct-loading-container .loading-text span:nth-child(533) {
    -webkit-animation-delay: 53.3s;
    animation-delay: 53.3s
}

.ct-loading-container .loading-text span:nth-child(534) {
    -webkit-animation-delay: 53.4s;
    animation-delay: 53.4s
}

.ct-loading-container .loading-text span:nth-child(535) {
    -webkit-animation-delay: 53.5s;
    animation-delay: 53.5s
}

.ct-loading-container .loading-text span:nth-child(536) {
    -webkit-animation-delay: 53.6s;
    animation-delay: 53.6s
}

.ct-loading-container .loading-text span:nth-child(537) {
    -webkit-animation-delay: 53.7s;
    animation-delay: 53.7s
}

.ct-loading-container .loading-text span:nth-child(538) {
    -webkit-animation-delay: 53.8s;
    animation-delay: 53.8s
}

.ct-loading-container .loading-text span:nth-child(539) {
    -webkit-animation-delay: 53.9s;
    animation-delay: 53.9s
}

.ct-loading-container .loading-text span:nth-child(540) {
    -webkit-animation-delay: 54s;
    animation-delay: 54s
}

.ct-loading-container .loading-text span:nth-child(541) {
    -webkit-animation-delay: 54.1s;
    animation-delay: 54.1s
}

.ct-loading-container .loading-text span:nth-child(542) {
    -webkit-animation-delay: 54.2s;
    animation-delay: 54.2s
}

.ct-loading-container .loading-text span:nth-child(543) {
    -webkit-animation-delay: 54.3s;
    animation-delay: 54.3s
}

.ct-loading-container .loading-text span:nth-child(544) {
    -webkit-animation-delay: 54.4s;
    animation-delay: 54.4s
}

.ct-loading-container .loading-text span:nth-child(545) {
    -webkit-animation-delay: 54.5s;
    animation-delay: 54.5s
}

.ct-loading-container .loading-text span:nth-child(546) {
    -webkit-animation-delay: 54.6s;
    animation-delay: 54.6s
}

.ct-loading-container .loading-text span:nth-child(547) {
    -webkit-animation-delay: 54.7s;
    animation-delay: 54.7s
}

.ct-loading-container .loading-text span:nth-child(548) {
    -webkit-animation-delay: 54.8s;
    animation-delay: 54.8s
}

.ct-loading-container .loading-text span:nth-child(549) {
    -webkit-animation-delay: 54.9s;
    animation-delay: 54.9s
}

.ct-loading-container .loading-text span:nth-child(550) {
    -webkit-animation-delay: 55s;
    animation-delay: 55s
}

.ct-loading-container .loading-text span:nth-child(551) {
    -webkit-animation-delay: 55.1s;
    animation-delay: 55.1s
}

.ct-loading-container .loading-text span:nth-child(552) {
    -webkit-animation-delay: 55.2s;
    animation-delay: 55.2s
}

.ct-loading-container .loading-text span:nth-child(553) {
    -webkit-animation-delay: 55.3s;
    animation-delay: 55.3s
}

.ct-loading-container .loading-text span:nth-child(554) {
    -webkit-animation-delay: 55.4s;
    animation-delay: 55.4s
}

.ct-loading-container .loading-text span:nth-child(555) {
    -webkit-animation-delay: 55.5s;
    animation-delay: 55.5s
}

.ct-loading-container .loading-text span:nth-child(556) {
    -webkit-animation-delay: 55.6s;
    animation-delay: 55.6s
}

.ct-loading-container .loading-text span:nth-child(557) {
    -webkit-animation-delay: 55.7s;
    animation-delay: 55.7s
}

.ct-loading-container .loading-text span:nth-child(558) {
    -webkit-animation-delay: 55.8s;
    animation-delay: 55.8s
}

.ct-loading-container .loading-text span:nth-child(559) {
    -webkit-animation-delay: 55.9s;
    animation-delay: 55.9s
}

.ct-loading-container .loading-text span:nth-child(560) {
    -webkit-animation-delay: 56s;
    animation-delay: 56s
}

.ct-loading-container .loading-text span:nth-child(561) {
    -webkit-animation-delay: 56.1s;
    animation-delay: 56.1s
}

.ct-loading-container .loading-text span:nth-child(562) {
    -webkit-animation-delay: 56.2s;
    animation-delay: 56.2s
}

.ct-loading-container .loading-text span:nth-child(563) {
    -webkit-animation-delay: 56.3s;
    animation-delay: 56.3s
}

.ct-loading-container .loading-text span:nth-child(564) {
    -webkit-animation-delay: 56.4s;
    animation-delay: 56.4s
}

.ct-loading-container .loading-text span:nth-child(565) {
    -webkit-animation-delay: 56.5s;
    animation-delay: 56.5s
}

.ct-loading-container .loading-text span:nth-child(566) {
    -webkit-animation-delay: 56.6s;
    animation-delay: 56.6s
}

.ct-loading-container .loading-text span:nth-child(567) {
    -webkit-animation-delay: 56.7s;
    animation-delay: 56.7s
}

.ct-loading-container .loading-text span:nth-child(568) {
    -webkit-animation-delay: 56.8s;
    animation-delay: 56.8s
}

.ct-loading-container .loading-text span:nth-child(569) {
    -webkit-animation-delay: 56.9s;
    animation-delay: 56.9s
}

.ct-loading-container .loading-text span:nth-child(570) {
    -webkit-animation-delay: 57s;
    animation-delay: 57s
}

.ct-loading-container .loading-text span:nth-child(571) {
    -webkit-animation-delay: 57.1s;
    animation-delay: 57.1s
}

.ct-loading-container .loading-text span:nth-child(572) {
    -webkit-animation-delay: 57.2s;
    animation-delay: 57.2s
}

.ct-loading-container .loading-text span:nth-child(573) {
    -webkit-animation-delay: 57.3s;
    animation-delay: 57.3s
}

.ct-loading-container .loading-text span:nth-child(574) {
    -webkit-animation-delay: 57.4s;
    animation-delay: 57.4s
}

.ct-loading-container .loading-text span:nth-child(575) {
    -webkit-animation-delay: 57.5s;
    animation-delay: 57.5s
}

.ct-loading-container .loading-text span:nth-child(576) {
    -webkit-animation-delay: 57.6s;
    animation-delay: 57.6s
}

.ct-loading-container .loading-text span:nth-child(577) {
    -webkit-animation-delay: 57.7s;
    animation-delay: 57.7s
}

.ct-loading-container .loading-text span:nth-child(578) {
    -webkit-animation-delay: 57.8s;
    animation-delay: 57.8s
}

.ct-loading-container .loading-text span:nth-child(579) {
    -webkit-animation-delay: 57.9s;
    animation-delay: 57.9s
}

.ct-loading-container .loading-text span:nth-child(580) {
    -webkit-animation-delay: 58s;
    animation-delay: 58s
}

.ct-loading-container .loading-text span:nth-child(581) {
    -webkit-animation-delay: 58.1s;
    animation-delay: 58.1s
}

.ct-loading-container .loading-text span:nth-child(582) {
    -webkit-animation-delay: 58.2s;
    animation-delay: 58.2s
}

.ct-loading-container .loading-text span:nth-child(583) {
    -webkit-animation-delay: 58.3s;
    animation-delay: 58.3s
}

.ct-loading-container .loading-text span:nth-child(584) {
    -webkit-animation-delay: 58.4s;
    animation-delay: 58.4s
}

.ct-loading-container .loading-text span:nth-child(585) {
    -webkit-animation-delay: 58.5s;
    animation-delay: 58.5s
}

.ct-loading-container .loading-text span:nth-child(586) {
    -webkit-animation-delay: 58.6s;
    animation-delay: 58.6s
}

.ct-loading-container .loading-text span:nth-child(587) {
    -webkit-animation-delay: 58.7s;
    animation-delay: 58.7s
}

.ct-loading-container .loading-text span:nth-child(588) {
    -webkit-animation-delay: 58.8s;
    animation-delay: 58.8s
}

.ct-loading-container .loading-text span:nth-child(589) {
    -webkit-animation-delay: 58.9s;
    animation-delay: 58.9s
}

.ct-loading-container .loading-text span:nth-child(590) {
    -webkit-animation-delay: 59s;
    animation-delay: 59s
}

.ct-loading-container .loading-text span:nth-child(591) {
    -webkit-animation-delay: 59.1s;
    animation-delay: 59.1s
}

.ct-loading-container .loading-text span:nth-child(592) {
    -webkit-animation-delay: 59.2s;
    animation-delay: 59.2s
}

.ct-loading-container .loading-text span:nth-child(593) {
    -webkit-animation-delay: 59.3s;
    animation-delay: 59.3s
}

.ct-loading-container .loading-text span:nth-child(594) {
    -webkit-animation-delay: 59.4s;
    animation-delay: 59.4s
}

.ct-loading-container .loading-text span:nth-child(595) {
    -webkit-animation-delay: 59.5s;
    animation-delay: 59.5s
}

.ct-loading-container .loading-text span:nth-child(596) {
    -webkit-animation-delay: 59.6s;
    animation-delay: 59.6s
}

.ct-loading-container .loading-text span:nth-child(597) {
    -webkit-animation-delay: 59.7s;
    animation-delay: 59.7s
}

.ct-loading-container .loading-text span:nth-child(598) {
    -webkit-animation-delay: 59.8s;
    animation-delay: 59.8s
}

.ct-loading-container .loading-text span:nth-child(599) {
    -webkit-animation-delay: 59.9s;
    animation-delay: 59.9s
}

.ct-loading-container .loading-text span:nth-child(600) {
    -webkit-animation-delay: 60s;
    animation-delay: 60s
}

.ct-loading-container .loading-text span:nth-child(601) {
    -webkit-animation-delay: 60.1s;
    animation-delay: 60.1s
}

.ct-loading-container .loading-text span:nth-child(602) {
    -webkit-animation-delay: 60.2s;
    animation-delay: 60.2s
}

.ct-loading-container .loading-text span:nth-child(603) {
    -webkit-animation-delay: 60.3s;
    animation-delay: 60.3s
}

.ct-loading-container .loading-text span:nth-child(604) {
    -webkit-animation-delay: 60.4s;
    animation-delay: 60.4s
}

.ct-loading-container .loading-text span:nth-child(605) {
    -webkit-animation-delay: 60.5s;
    animation-delay: 60.5s
}

.ct-loading-container .loading-text span:nth-child(606) {
    -webkit-animation-delay: 60.6s;
    animation-delay: 60.6s
}

.ct-loading-container .loading-text span:nth-child(607) {
    -webkit-animation-delay: 60.7s;
    animation-delay: 60.7s
}

.ct-loading-container .loading-text span:nth-child(608) {
    -webkit-animation-delay: 60.8s;
    animation-delay: 60.8s
}

.ct-loading-container .loading-text span:nth-child(609) {
    -webkit-animation-delay: 60.9s;
    animation-delay: 60.9s
}

.ct-loading-container .loading-text span:nth-child(610) {
    -webkit-animation-delay: 61s;
    animation-delay: 61s
}

.ct-loading-container .loading-text span:nth-child(611) {
    -webkit-animation-delay: 61.1s;
    animation-delay: 61.1s
}

.ct-loading-container .loading-text span:nth-child(612) {
    -webkit-animation-delay: 61.2s;
    animation-delay: 61.2s
}

.ct-loading-container .loading-text span:nth-child(613) {
    -webkit-animation-delay: 61.3s;
    animation-delay: 61.3s
}

.ct-loading-container .loading-text span:nth-child(614) {
    -webkit-animation-delay: 61.4s;
    animation-delay: 61.4s
}

.ct-loading-container .loading-text span:nth-child(615) {
    -webkit-animation-delay: 61.5s;
    animation-delay: 61.5s
}

.ct-loading-container .loading-text span:nth-child(616) {
    -webkit-animation-delay: 61.6s;
    animation-delay: 61.6s
}

.ct-loading-container .loading-text span:nth-child(617) {
    -webkit-animation-delay: 61.7s;
    animation-delay: 61.7s
}

.ct-loading-container .loading-text span:nth-child(618) {
    -webkit-animation-delay: 61.8s;
    animation-delay: 61.8s
}

.ct-loading-container .loading-text span:nth-child(619) {
    -webkit-animation-delay: 61.9s;
    animation-delay: 61.9s
}

.ct-loading-container .loading-text span:nth-child(620) {
    -webkit-animation-delay: 62s;
    animation-delay: 62s
}

.ct-loading-container .loading-text span:nth-child(621) {
    -webkit-animation-delay: 62.1s;
    animation-delay: 62.1s
}

.ct-loading-container .loading-text span:nth-child(622) {
    -webkit-animation-delay: 62.2s;
    animation-delay: 62.2s
}

.ct-loading-container .loading-text span:nth-child(623) {
    -webkit-animation-delay: 62.3s;
    animation-delay: 62.3s
}

.ct-loading-container .loading-text span:nth-child(624) {
    -webkit-animation-delay: 62.4s;
    animation-delay: 62.4s
}

.ct-loading-container .loading-text span:nth-child(625) {
    -webkit-animation-delay: 62.5s;
    animation-delay: 62.5s
}

.ct-loading-container .loading-text span:nth-child(626) {
    -webkit-animation-delay: 62.6s;
    animation-delay: 62.6s
}

.ct-loading-container .loading-text span:nth-child(627) {
    -webkit-animation-delay: 62.7s;
    animation-delay: 62.7s
}

.ct-loading-container .loading-text span:nth-child(628) {
    -webkit-animation-delay: 62.8s;
    animation-delay: 62.8s
}

.ct-loading-container .loading-text span:nth-child(629) {
    -webkit-animation-delay: 62.9s;
    animation-delay: 62.9s
}

.ct-loading-container .loading-text span:nth-child(630) {
    -webkit-animation-delay: 63s;
    animation-delay: 63s
}

.ct-loading-container .loading-text span:nth-child(631) {
    -webkit-animation-delay: 63.1s;
    animation-delay: 63.1s
}

.ct-loading-container .loading-text span:nth-child(632) {
    -webkit-animation-delay: 63.2s;
    animation-delay: 63.2s
}

.ct-loading-container .loading-text span:nth-child(633) {
    -webkit-animation-delay: 63.3s;
    animation-delay: 63.3s
}

.ct-loading-container .loading-text span:nth-child(634) {
    -webkit-animation-delay: 63.4s;
    animation-delay: 63.4s
}

.ct-loading-container .loading-text span:nth-child(635) {
    -webkit-animation-delay: 63.5s;
    animation-delay: 63.5s
}

.ct-loading-container .loading-text span:nth-child(636) {
    -webkit-animation-delay: 63.6s;
    animation-delay: 63.6s
}

.ct-loading-container .loading-text span:nth-child(637) {
    -webkit-animation-delay: 63.7s;
    animation-delay: 63.7s
}

.ct-loading-container .loading-text span:nth-child(638) {
    -webkit-animation-delay: 63.8s;
    animation-delay: 63.8s
}

.ct-loading-container .loading-text span:nth-child(639) {
    -webkit-animation-delay: 63.9s;
    animation-delay: 63.9s
}

.ct-loading-container .loading-text span:nth-child(640) {
    -webkit-animation-delay: 64s;
    animation-delay: 64s
}

.ct-loading-container .loading-text span:nth-child(641) {
    -webkit-animation-delay: 64.1s;
    animation-delay: 64.1s
}

.ct-loading-container .loading-text span:nth-child(642) {
    -webkit-animation-delay: 64.2s;
    animation-delay: 64.2s
}

.ct-loading-container .loading-text span:nth-child(643) {
    -webkit-animation-delay: 64.3s;
    animation-delay: 64.3s
}

.ct-loading-container .loading-text span:nth-child(644) {
    -webkit-animation-delay: 64.4s;
    animation-delay: 64.4s
}

.ct-loading-container .loading-text span:nth-child(645) {
    -webkit-animation-delay: 64.5s;
    animation-delay: 64.5s
}

.ct-loading-container .loading-text span:nth-child(646) {
    -webkit-animation-delay: 64.6s;
    animation-delay: 64.6s
}

.ct-loading-container .loading-text span:nth-child(647) {
    -webkit-animation-delay: 64.7s;
    animation-delay: 64.7s
}

.ct-loading-container .loading-text span:nth-child(648) {
    -webkit-animation-delay: 64.8s;
    animation-delay: 64.8s
}

.ct-loading-container .loading-text span:nth-child(649) {
    -webkit-animation-delay: 64.9s;
    animation-delay: 64.9s
}

.ct-loading-container .loading-text span:nth-child(650) {
    -webkit-animation-delay: 65s;
    animation-delay: 65s
}

.ct-loading-container .loading-text span:nth-child(651) {
    -webkit-animation-delay: 65.1s;
    animation-delay: 65.1s
}

.ct-loading-container .loading-text span:nth-child(652) {
    -webkit-animation-delay: 65.2s;
    animation-delay: 65.2s
}

.ct-loading-container .loading-text span:nth-child(653) {
    -webkit-animation-delay: 65.3s;
    animation-delay: 65.3s
}

.ct-loading-container .loading-text span:nth-child(654) {
    -webkit-animation-delay: 65.4s;
    animation-delay: 65.4s
}

.ct-loading-container .loading-text span:nth-child(655) {
    -webkit-animation-delay: 65.5s;
    animation-delay: 65.5s
}

.ct-loading-container .loading-text span:nth-child(656) {
    -webkit-animation-delay: 65.6s;
    animation-delay: 65.6s
}

.ct-loading-container .loading-text span:nth-child(657) {
    -webkit-animation-delay: 65.7s;
    animation-delay: 65.7s
}

.ct-loading-container .loading-text span:nth-child(658) {
    -webkit-animation-delay: 65.8s;
    animation-delay: 65.8s
}

.ct-loading-container .loading-text span:nth-child(659) {
    -webkit-animation-delay: 65.9s;
    animation-delay: 65.9s
}

.ct-loading-container .loading-text span:nth-child(660) {
    -webkit-animation-delay: 66s;
    animation-delay: 66s
}

.ct-loading-container .loading-text span:nth-child(661) {
    -webkit-animation-delay: 66.1s;
    animation-delay: 66.1s
}

.ct-loading-container .loading-text span:nth-child(662) {
    -webkit-animation-delay: 66.2s;
    animation-delay: 66.2s
}

.ct-loading-container .loading-text span:nth-child(663) {
    -webkit-animation-delay: 66.3s;
    animation-delay: 66.3s
}

.ct-loading-container .loading-text span:nth-child(664) {
    -webkit-animation-delay: 66.4s;
    animation-delay: 66.4s
}

.ct-loading-container .loading-text span:nth-child(665) {
    -webkit-animation-delay: 66.5s;
    animation-delay: 66.5s
}

.ct-loading-container .loading-text span:nth-child(666) {
    -webkit-animation-delay: 66.6s;
    animation-delay: 66.6s
}

.ct-loading-container .loading-text span:nth-child(667) {
    -webkit-animation-delay: 66.7s;
    animation-delay: 66.7s
}

.ct-loading-container .loading-text span:nth-child(668) {
    -webkit-animation-delay: 66.8s;
    animation-delay: 66.8s
}

.ct-loading-container .loading-text span:nth-child(669) {
    -webkit-animation-delay: 66.9s;
    animation-delay: 66.9s
}

.ct-loading-container .loading-text span:nth-child(670) {
    -webkit-animation-delay: 67s;
    animation-delay: 67s
}

.ct-loading-container .loading-text span:nth-child(671) {
    -webkit-animation-delay: 67.1s;
    animation-delay: 67.1s
}

.ct-loading-container .loading-text span:nth-child(672) {
    -webkit-animation-delay: 67.2s;
    animation-delay: 67.2s
}

.ct-loading-container .loading-text span:nth-child(673) {
    -webkit-animation-delay: 67.3s;
    animation-delay: 67.3s
}

.ct-loading-container .loading-text span:nth-child(674) {
    -webkit-animation-delay: 67.4s;
    animation-delay: 67.4s
}

.ct-loading-container .loading-text span:nth-child(675) {
    -webkit-animation-delay: 67.5s;
    animation-delay: 67.5s
}

.ct-loading-container .loading-text span:nth-child(676) {
    -webkit-animation-delay: 67.6s;
    animation-delay: 67.6s
}

.ct-loading-container .loading-text span:nth-child(677) {
    -webkit-animation-delay: 67.7s;
    animation-delay: 67.7s
}

.ct-loading-container .loading-text span:nth-child(678) {
    -webkit-animation-delay: 67.8s;
    animation-delay: 67.8s
}

.ct-loading-container .loading-text span:nth-child(679) {
    -webkit-animation-delay: 67.9s;
    animation-delay: 67.9s
}

.ct-loading-container .loading-text span:nth-child(680) {
    -webkit-animation-delay: 68s;
    animation-delay: 68s
}

.ct-loading-container .loading-text span:nth-child(681) {
    -webkit-animation-delay: 68.1s;
    animation-delay: 68.1s
}

.ct-loading-container .loading-text span:nth-child(682) {
    -webkit-animation-delay: 68.2s;
    animation-delay: 68.2s
}

.ct-loading-container .loading-text span:nth-child(683) {
    -webkit-animation-delay: 68.3s;
    animation-delay: 68.3s
}

.ct-loading-container .loading-text span:nth-child(684) {
    -webkit-animation-delay: 68.4s;
    animation-delay: 68.4s
}

.ct-loading-container .loading-text span:nth-child(685) {
    -webkit-animation-delay: 68.5s;
    animation-delay: 68.5s
}

.ct-loading-container .loading-text span:nth-child(686) {
    -webkit-animation-delay: 68.6s;
    animation-delay: 68.6s
}

.ct-loading-container .loading-text span:nth-child(687) {
    -webkit-animation-delay: 68.7s;
    animation-delay: 68.7s
}

.ct-loading-container .loading-text span:nth-child(688) {
    -webkit-animation-delay: 68.8s;
    animation-delay: 68.8s
}

.ct-loading-container .loading-text span:nth-child(689) {
    -webkit-animation-delay: 68.9s;
    animation-delay: 68.9s
}

.ct-loading-container .loading-text span:nth-child(690) {
    -webkit-animation-delay: 69s;
    animation-delay: 69s
}

.ct-loading-container .loading-text span:nth-child(691) {
    -webkit-animation-delay: 69.1s;
    animation-delay: 69.1s
}

.ct-loading-container .loading-text span:nth-child(692) {
    -webkit-animation-delay: 69.2s;
    animation-delay: 69.2s
}

.ct-loading-container .loading-text span:nth-child(693) {
    -webkit-animation-delay: 69.3s;
    animation-delay: 69.3s
}

.ct-loading-container .loading-text span:nth-child(694) {
    -webkit-animation-delay: 69.4s;
    animation-delay: 69.4s
}

.ct-loading-container .loading-text span:nth-child(695) {
    -webkit-animation-delay: 69.5s;
    animation-delay: 69.5s
}

.ct-loading-container .loading-text span:nth-child(696) {
    -webkit-animation-delay: 69.6s;
    animation-delay: 69.6s
}

.ct-loading-container .loading-text span:nth-child(697) {
    -webkit-animation-delay: 69.7s;
    animation-delay: 69.7s
}

.ct-loading-container .loading-text span:nth-child(698) {
    -webkit-animation-delay: 69.8s;
    animation-delay: 69.8s
}

.ct-loading-container .loading-text span:nth-child(699) {
    -webkit-animation-delay: 69.9s;
    animation-delay: 69.9s
}

.ct-loading-container .loading-text span:nth-child(700) {
    -webkit-animation-delay: 70s;
    animation-delay: 70s
}

.ct-loading-container .loading-text span:nth-child(701) {
    -webkit-animation-delay: 70.1s;
    animation-delay: 70.1s
}

.ct-loading-container .loading-text span:nth-child(702) {
    -webkit-animation-delay: 70.2s;
    animation-delay: 70.2s
}

.ct-loading-container .loading-text span:nth-child(703) {
    -webkit-animation-delay: 70.3s;
    animation-delay: 70.3s
}

.ct-loading-container .loading-text span:nth-child(704) {
    -webkit-animation-delay: 70.4s;
    animation-delay: 70.4s
}

.ct-loading-container .loading-text span:nth-child(705) {
    -webkit-animation-delay: 70.5s;
    animation-delay: 70.5s
}

.ct-loading-container .loading-text span:nth-child(706) {
    -webkit-animation-delay: 70.6s;
    animation-delay: 70.6s
}

.ct-loading-container .loading-text span:nth-child(707) {
    -webkit-animation-delay: 70.7s;
    animation-delay: 70.7s
}

.ct-loading-container .loading-text span:nth-child(708) {
    -webkit-animation-delay: 70.8s;
    animation-delay: 70.8s
}

.ct-loading-container .loading-text span:nth-child(709) {
    -webkit-animation-delay: 70.9s;
    animation-delay: 70.9s
}

.ct-loading-container .loading-text span:nth-child(710) {
    -webkit-animation-delay: 71s;
    animation-delay: 71s
}

.ct-loading-container .loading-text span:nth-child(711) {
    -webkit-animation-delay: 71.1s;
    animation-delay: 71.1s
}

.ct-loading-container .loading-text span:nth-child(712) {
    -webkit-animation-delay: 71.2s;
    animation-delay: 71.2s
}

.ct-loading-container .loading-text span:nth-child(713) {
    -webkit-animation-delay: 71.3s;
    animation-delay: 71.3s
}

.ct-loading-container .loading-text span:nth-child(714) {
    -webkit-animation-delay: 71.4s;
    animation-delay: 71.4s
}

.ct-loading-container .loading-text span:nth-child(715) {
    -webkit-animation-delay: 71.5s;
    animation-delay: 71.5s
}

.ct-loading-container .loading-text span:nth-child(716) {
    -webkit-animation-delay: 71.6s;
    animation-delay: 71.6s
}

.ct-loading-container .loading-text span:nth-child(717) {
    -webkit-animation-delay: 71.7s;
    animation-delay: 71.7s
}

.ct-loading-container .loading-text span:nth-child(718) {
    -webkit-animation-delay: 71.8s;
    animation-delay: 71.8s
}

.ct-loading-container .loading-text span:nth-child(719) {
    -webkit-animation-delay: 71.9s;
    animation-delay: 71.9s
}

.ct-loading-container .loading-text span:nth-child(720) {
    -webkit-animation-delay: 72s;
    animation-delay: 72s
}

.ct-loading-container .loading-text span:nth-child(721) {
    -webkit-animation-delay: 72.1s;
    animation-delay: 72.1s
}

.ct-loading-container .loading-text span:nth-child(722) {
    -webkit-animation-delay: 72.2s;
    animation-delay: 72.2s
}

.ct-loading-container .loading-text span:nth-child(723) {
    -webkit-animation-delay: 72.3s;
    animation-delay: 72.3s
}

.ct-loading-container .loading-text span:nth-child(724) {
    -webkit-animation-delay: 72.4s;
    animation-delay: 72.4s
}

.ct-loading-container .loading-text span:nth-child(725) {
    -webkit-animation-delay: 72.5s;
    animation-delay: 72.5s
}

.ct-loading-container .loading-text span:nth-child(726) {
    -webkit-animation-delay: 72.6s;
    animation-delay: 72.6s
}

.ct-loading-container .loading-text span:nth-child(727) {
    -webkit-animation-delay: 72.7s;
    animation-delay: 72.7s
}

.ct-loading-container .loading-text span:nth-child(728) {
    -webkit-animation-delay: 72.8s;
    animation-delay: 72.8s
}

.ct-loading-container .loading-text span:nth-child(729) {
    -webkit-animation-delay: 72.9s;
    animation-delay: 72.9s
}

.ct-loading-container .loading-text span:nth-child(730) {
    -webkit-animation-delay: 73s;
    animation-delay: 73s
}

.ct-loading-container .loading-text span:nth-child(731) {
    -webkit-animation-delay: 73.1s;
    animation-delay: 73.1s
}

.ct-loading-container .loading-text span:nth-child(732) {
    -webkit-animation-delay: 73.2s;
    animation-delay: 73.2s
}

.ct-loading-container .loading-text span:nth-child(733) {
    -webkit-animation-delay: 73.3s;
    animation-delay: 73.3s
}

.ct-loading-container .loading-text span:nth-child(734) {
    -webkit-animation-delay: 73.4s;
    animation-delay: 73.4s
}

.ct-loading-container .loading-text span:nth-child(735) {
    -webkit-animation-delay: 73.5s;
    animation-delay: 73.5s
}

.ct-loading-container .loading-text span:nth-child(736) {
    -webkit-animation-delay: 73.6s;
    animation-delay: 73.6s
}

.ct-loading-container .loading-text span:nth-child(737) {
    -webkit-animation-delay: 73.7s;
    animation-delay: 73.7s
}

.ct-loading-container .loading-text span:nth-child(738) {
    -webkit-animation-delay: 73.8s;
    animation-delay: 73.8s
}

.ct-loading-container .loading-text span:nth-child(739) {
    -webkit-animation-delay: 73.9s;
    animation-delay: 73.9s
}

.ct-loading-container .loading-text span:nth-child(740) {
    -webkit-animation-delay: 74s;
    animation-delay: 74s
}

.ct-loading-container .loading-text span:nth-child(741) {
    -webkit-animation-delay: 74.1s;
    animation-delay: 74.1s
}

.ct-loading-container .loading-text span:nth-child(742) {
    -webkit-animation-delay: 74.2s;
    animation-delay: 74.2s
}

.ct-loading-container .loading-text span:nth-child(743) {
    -webkit-animation-delay: 74.3s;
    animation-delay: 74.3s
}

.ct-loading-container .loading-text span:nth-child(744) {
    -webkit-animation-delay: 74.4s;
    animation-delay: 74.4s
}

.ct-loading-container .loading-text span:nth-child(745) {
    -webkit-animation-delay: 74.5s;
    animation-delay: 74.5s
}

.ct-loading-container .loading-text span:nth-child(746) {
    -webkit-animation-delay: 74.6s;
    animation-delay: 74.6s
}

.ct-loading-container .loading-text span:nth-child(747) {
    -webkit-animation-delay: 74.7s;
    animation-delay: 74.7s
}

.ct-loading-container .loading-text span:nth-child(748) {
    -webkit-animation-delay: 74.8s;
    animation-delay: 74.8s
}

.ct-loading-container .loading-text span:nth-child(749) {
    -webkit-animation-delay: 74.9s;
    animation-delay: 74.9s
}

.ct-loading-container .loading-text span:nth-child(750) {
    -webkit-animation-delay: 75s;
    animation-delay: 75s
}

.ct-loading-container .loading-text span:nth-child(751) {
    -webkit-animation-delay: 75.1s;
    animation-delay: 75.1s
}

.ct-loading-container .loading-text span:nth-child(752) {
    -webkit-animation-delay: 75.2s;
    animation-delay: 75.2s
}

.ct-loading-container .loading-text span:nth-child(753) {
    -webkit-animation-delay: 75.3s;
    animation-delay: 75.3s
}

.ct-loading-container .loading-text span:nth-child(754) {
    -webkit-animation-delay: 75.4s;
    animation-delay: 75.4s
}

.ct-loading-container .loading-text span:nth-child(755) {
    -webkit-animation-delay: 75.5s;
    animation-delay: 75.5s
}

.ct-loading-container .loading-text span:nth-child(756) {
    -webkit-animation-delay: 75.6s;
    animation-delay: 75.6s
}

.ct-loading-container .loading-text span:nth-child(757) {
    -webkit-animation-delay: 75.7s;
    animation-delay: 75.7s
}

.ct-loading-container .loading-text span:nth-child(758) {
    -webkit-animation-delay: 75.8s;
    animation-delay: 75.8s
}

.ct-loading-container .loading-text span:nth-child(759) {
    -webkit-animation-delay: 75.9s;
    animation-delay: 75.9s
}

.ct-loading-container .loading-text span:nth-child(760) {
    -webkit-animation-delay: 76s;
    animation-delay: 76s
}

.ct-loading-container .loading-text span:nth-child(761) {
    -webkit-animation-delay: 76.1s;
    animation-delay: 76.1s
}

.ct-loading-container .loading-text span:nth-child(762) {
    -webkit-animation-delay: 76.2s;
    animation-delay: 76.2s
}

.ct-loading-container .loading-text span:nth-child(763) {
    -webkit-animation-delay: 76.3s;
    animation-delay: 76.3s
}

.ct-loading-container .loading-text span:nth-child(764) {
    -webkit-animation-delay: 76.4s;
    animation-delay: 76.4s
}

.ct-loading-container .loading-text span:nth-child(765) {
    -webkit-animation-delay: 76.5s;
    animation-delay: 76.5s
}

.ct-loading-container .loading-text span:nth-child(766) {
    -webkit-animation-delay: 76.6s;
    animation-delay: 76.6s
}

.ct-loading-container .loading-text span:nth-child(767) {
    -webkit-animation-delay: 76.7s;
    animation-delay: 76.7s
}

.ct-loading-container .loading-text span:nth-child(768) {
    -webkit-animation-delay: 76.8s;
    animation-delay: 76.8s
}

.ct-loading-container .loading-text span:nth-child(769) {
    -webkit-animation-delay: 76.9s;
    animation-delay: 76.9s
}

.ct-loading-container .loading-text span:nth-child(770) {
    -webkit-animation-delay: 77s;
    animation-delay: 77s
}

.ct-loading-container .loading-text span:nth-child(771) {
    -webkit-animation-delay: 77.1s;
    animation-delay: 77.1s
}

.ct-loading-container .loading-text span:nth-child(772) {
    -webkit-animation-delay: 77.2s;
    animation-delay: 77.2s
}

.ct-loading-container .loading-text span:nth-child(773) {
    -webkit-animation-delay: 77.3s;
    animation-delay: 77.3s
}

.ct-loading-container .loading-text span:nth-child(774) {
    -webkit-animation-delay: 77.4s;
    animation-delay: 77.4s
}

.ct-loading-container .loading-text span:nth-child(775) {
    -webkit-animation-delay: 77.5s;
    animation-delay: 77.5s
}

.ct-loading-container .loading-text span:nth-child(776) {
    -webkit-animation-delay: 77.6s;
    animation-delay: 77.6s
}

.ct-loading-container .loading-text span:nth-child(777) {
    -webkit-animation-delay: 77.7s;
    animation-delay: 77.7s
}

.ct-loading-container .loading-text span:nth-child(778) {
    -webkit-animation-delay: 77.8s;
    animation-delay: 77.8s
}

.ct-loading-container .loading-text span:nth-child(779) {
    -webkit-animation-delay: 77.9s;
    animation-delay: 77.9s
}

.ct-loading-container .loading-text span:nth-child(780) {
    -webkit-animation-delay: 78s;
    animation-delay: 78s
}

.ct-loading-container .loading-text span:nth-child(781) {
    -webkit-animation-delay: 78.1s;
    animation-delay: 78.1s
}

.ct-loading-container .loading-text span:nth-child(782) {
    -webkit-animation-delay: 78.2s;
    animation-delay: 78.2s
}

.ct-loading-container .loading-text span:nth-child(783) {
    -webkit-animation-delay: 78.3s;
    animation-delay: 78.3s
}

.ct-loading-container .loading-text span:nth-child(784) {
    -webkit-animation-delay: 78.4s;
    animation-delay: 78.4s
}

.ct-loading-container .loading-text span:nth-child(785) {
    -webkit-animation-delay: 78.5s;
    animation-delay: 78.5s
}

.ct-loading-container .loading-text span:nth-child(786) {
    -webkit-animation-delay: 78.6s;
    animation-delay: 78.6s
}

.ct-loading-container .loading-text span:nth-child(787) {
    -webkit-animation-delay: 78.7s;
    animation-delay: 78.7s
}

.ct-loading-container .loading-text span:nth-child(788) {
    -webkit-animation-delay: 78.8s;
    animation-delay: 78.8s
}

.ct-loading-container .loading-text span:nth-child(789) {
    -webkit-animation-delay: 78.9s;
    animation-delay: 78.9s
}

.ct-loading-container .loading-text span:nth-child(790) {
    -webkit-animation-delay: 79s;
    animation-delay: 79s
}

.ct-loading-container .loading-text span:nth-child(791) {
    -webkit-animation-delay: 79.1s;
    animation-delay: 79.1s
}

.ct-loading-container .loading-text span:nth-child(792) {
    -webkit-animation-delay: 79.2s;
    animation-delay: 79.2s
}

.ct-loading-container .loading-text span:nth-child(793) {
    -webkit-animation-delay: 79.3s;
    animation-delay: 79.3s
}

.ct-loading-container .loading-text span:nth-child(794) {
    -webkit-animation-delay: 79.4s;
    animation-delay: 79.4s
}

.ct-loading-container .loading-text span:nth-child(795) {
    -webkit-animation-delay: 79.5s;
    animation-delay: 79.5s
}

.ct-loading-container .loading-text span:nth-child(796) {
    -webkit-animation-delay: 79.6s;
    animation-delay: 79.6s
}

.ct-loading-container .loading-text span:nth-child(797) {
    -webkit-animation-delay: 79.7s;
    animation-delay: 79.7s
}

.ct-loading-container .loading-text span:nth-child(798) {
    -webkit-animation-delay: 79.8s;
    animation-delay: 79.8s
}

.ct-loading-container .loading-text span:nth-child(799) {
    -webkit-animation-delay: 79.9s;
    animation-delay: 79.9s
}

.ct-loading-container .loading-text span:nth-child(800) {
    -webkit-animation-delay: 80s;
    animation-delay: 80s
}

.ct-loading-container .loading-text span:nth-child(801) {
    -webkit-animation-delay: 80.1s;
    animation-delay: 80.1s
}

.ct-loading-container .loading-text span:nth-child(802) {
    -webkit-animation-delay: 80.2s;
    animation-delay: 80.2s
}

.ct-loading-container .loading-text span:nth-child(803) {
    -webkit-animation-delay: 80.3s;
    animation-delay: 80.3s
}

.ct-loading-container .loading-text span:nth-child(804) {
    -webkit-animation-delay: 80.4s;
    animation-delay: 80.4s
}

.ct-loading-container .loading-text span:nth-child(805) {
    -webkit-animation-delay: 80.5s;
    animation-delay: 80.5s
}

.ct-loading-container .loading-text span:nth-child(806) {
    -webkit-animation-delay: 80.6s;
    animation-delay: 80.6s
}

.ct-loading-container .loading-text span:nth-child(807) {
    -webkit-animation-delay: 80.7s;
    animation-delay: 80.7s
}

.ct-loading-container .loading-text span:nth-child(808) {
    -webkit-animation-delay: 80.8s;
    animation-delay: 80.8s
}

.ct-loading-container .loading-text span:nth-child(809) {
    -webkit-animation-delay: 80.9s;
    animation-delay: 80.9s
}

.ct-loading-container .loading-text span:nth-child(810) {
    -webkit-animation-delay: 81s;
    animation-delay: 81s
}

.ct-loading-container .loading-text span:nth-child(811) {
    -webkit-animation-delay: 81.1s;
    animation-delay: 81.1s
}

.ct-loading-container .loading-text span:nth-child(812) {
    -webkit-animation-delay: 81.2s;
    animation-delay: 81.2s
}

.ct-loading-container .loading-text span:nth-child(813) {
    -webkit-animation-delay: 81.3s;
    animation-delay: 81.3s
}

.ct-loading-container .loading-text span:nth-child(814) {
    -webkit-animation-delay: 81.4s;
    animation-delay: 81.4s
}

.ct-loading-container .loading-text span:nth-child(815) {
    -webkit-animation-delay: 81.5s;
    animation-delay: 81.5s
}

.ct-loading-container .loading-text span:nth-child(816) {
    -webkit-animation-delay: 81.6s;
    animation-delay: 81.6s
}

.ct-loading-container .loading-text span:nth-child(817) {
    -webkit-animation-delay: 81.7s;
    animation-delay: 81.7s
}

.ct-loading-container .loading-text span:nth-child(818) {
    -webkit-animation-delay: 81.8s;
    animation-delay: 81.8s
}

.ct-loading-container .loading-text span:nth-child(819) {
    -webkit-animation-delay: 81.9s;
    animation-delay: 81.9s
}

.ct-loading-container .loading-text span:nth-child(820) {
    -webkit-animation-delay: 82s;
    animation-delay: 82s
}

.ct-loading-container .loading-text span:nth-child(821) {
    -webkit-animation-delay: 82.1s;
    animation-delay: 82.1s
}

.ct-loading-container .loading-text span:nth-child(822) {
    -webkit-animation-delay: 82.2s;
    animation-delay: 82.2s
}

.ct-loading-container .loading-text span:nth-child(823) {
    -webkit-animation-delay: 82.3s;
    animation-delay: 82.3s
}

.ct-loading-container .loading-text span:nth-child(824) {
    -webkit-animation-delay: 82.4s;
    animation-delay: 82.4s
}

.ct-loading-container .loading-text span:nth-child(825) {
    -webkit-animation-delay: 82.5s;
    animation-delay: 82.5s
}

.ct-loading-container .loading-text span:nth-child(826) {
    -webkit-animation-delay: 82.6s;
    animation-delay: 82.6s
}

.ct-loading-container .loading-text span:nth-child(827) {
    -webkit-animation-delay: 82.7s;
    animation-delay: 82.7s
}

.ct-loading-container .loading-text span:nth-child(828) {
    -webkit-animation-delay: 82.8s;
    animation-delay: 82.8s
}

.ct-loading-container .loading-text span:nth-child(829) {
    -webkit-animation-delay: 82.9s;
    animation-delay: 82.9s
}

.ct-loading-container .loading-text span:nth-child(830) {
    -webkit-animation-delay: 83s;
    animation-delay: 83s
}

.ct-loading-container .loading-text span:nth-child(831) {
    -webkit-animation-delay: 83.1s;
    animation-delay: 83.1s
}

.ct-loading-container .loading-text span:nth-child(832) {
    -webkit-animation-delay: 83.2s;
    animation-delay: 83.2s
}

.ct-loading-container .loading-text span:nth-child(833) {
    -webkit-animation-delay: 83.3s;
    animation-delay: 83.3s
}

.ct-loading-container .loading-text span:nth-child(834) {
    -webkit-animation-delay: 83.4s;
    animation-delay: 83.4s
}

.ct-loading-container .loading-text span:nth-child(835) {
    -webkit-animation-delay: 83.5s;
    animation-delay: 83.5s
}

.ct-loading-container .loading-text span:nth-child(836) {
    -webkit-animation-delay: 83.6s;
    animation-delay: 83.6s
}

.ct-loading-container .loading-text span:nth-child(837) {
    -webkit-animation-delay: 83.7s;
    animation-delay: 83.7s
}

.ct-loading-container .loading-text span:nth-child(838) {
    -webkit-animation-delay: 83.8s;
    animation-delay: 83.8s
}

.ct-loading-container .loading-text span:nth-child(839) {
    -webkit-animation-delay: 83.9s;
    animation-delay: 83.9s
}

.ct-loading-container .loading-text span:nth-child(840) {
    -webkit-animation-delay: 84s;
    animation-delay: 84s
}

.ct-loading-container .loading-text span:nth-child(841) {
    -webkit-animation-delay: 84.1s;
    animation-delay: 84.1s
}

.ct-loading-container .loading-text span:nth-child(842) {
    -webkit-animation-delay: 84.2s;
    animation-delay: 84.2s
}

.ct-loading-container .loading-text span:nth-child(843) {
    -webkit-animation-delay: 84.3s;
    animation-delay: 84.3s
}

.ct-loading-container .loading-text span:nth-child(844) {
    -webkit-animation-delay: 84.4s;
    animation-delay: 84.4s
}

.ct-loading-container .loading-text span:nth-child(845) {
    -webkit-animation-delay: 84.5s;
    animation-delay: 84.5s
}

.ct-loading-container .loading-text span:nth-child(846) {
    -webkit-animation-delay: 84.6s;
    animation-delay: 84.6s
}

.ct-loading-container .loading-text span:nth-child(847) {
    -webkit-animation-delay: 84.7s;
    animation-delay: 84.7s
}

.ct-loading-container .loading-text span:nth-child(848) {
    -webkit-animation-delay: 84.8s;
    animation-delay: 84.8s
}

.ct-loading-container .loading-text span:nth-child(849) {
    -webkit-animation-delay: 84.9s;
    animation-delay: 84.9s
}

.ct-loading-container .loading-text span:nth-child(850) {
    -webkit-animation-delay: 85s;
    animation-delay: 85s
}

.ct-loading-container .loading-text span:nth-child(851) {
    -webkit-animation-delay: 85.1s;
    animation-delay: 85.1s
}

.ct-loading-container .loading-text span:nth-child(852) {
    -webkit-animation-delay: 85.2s;
    animation-delay: 85.2s
}

.ct-loading-container .loading-text span:nth-child(853) {
    -webkit-animation-delay: 85.3s;
    animation-delay: 85.3s
}

.ct-loading-container .loading-text span:nth-child(854) {
    -webkit-animation-delay: 85.4s;
    animation-delay: 85.4s
}

.ct-loading-container .loading-text span:nth-child(855) {
    -webkit-animation-delay: 85.5s;
    animation-delay: 85.5s
}

.ct-loading-container .loading-text span:nth-child(856) {
    -webkit-animation-delay: 85.6s;
    animation-delay: 85.6s
}

.ct-loading-container .loading-text span:nth-child(857) {
    -webkit-animation-delay: 85.7s;
    animation-delay: 85.7s
}

.ct-loading-container .loading-text span:nth-child(858) {
    -webkit-animation-delay: 85.8s;
    animation-delay: 85.8s
}

.ct-loading-container .loading-text span:nth-child(859) {
    -webkit-animation-delay: 85.9s;
    animation-delay: 85.9s
}

.ct-loading-container .loading-text span:nth-child(860) {
    -webkit-animation-delay: 86s;
    animation-delay: 86s
}

.ct-loading-container .loading-text span:nth-child(861) {
    -webkit-animation-delay: 86.1s;
    animation-delay: 86.1s
}

.ct-loading-container .loading-text span:nth-child(862) {
    -webkit-animation-delay: 86.2s;
    animation-delay: 86.2s
}

.ct-loading-container .loading-text span:nth-child(863) {
    -webkit-animation-delay: 86.3s;
    animation-delay: 86.3s
}

.ct-loading-container .loading-text span:nth-child(864) {
    -webkit-animation-delay: 86.4s;
    animation-delay: 86.4s
}

.ct-loading-container .loading-text span:nth-child(865) {
    -webkit-animation-delay: 86.5s;
    animation-delay: 86.5s
}

.ct-loading-container .loading-text span:nth-child(866) {
    -webkit-animation-delay: 86.6s;
    animation-delay: 86.6s
}

.ct-loading-container .loading-text span:nth-child(867) {
    -webkit-animation-delay: 86.7s;
    animation-delay: 86.7s
}

.ct-loading-container .loading-text span:nth-child(868) {
    -webkit-animation-delay: 86.8s;
    animation-delay: 86.8s
}

.ct-loading-container .loading-text span:nth-child(869) {
    -webkit-animation-delay: 86.9s;
    animation-delay: 86.9s
}

.ct-loading-container .loading-text span:nth-child(870) {
    -webkit-animation-delay: 87s;
    animation-delay: 87s
}

.ct-loading-container .loading-text span:nth-child(871) {
    -webkit-animation-delay: 87.1s;
    animation-delay: 87.1s
}

.ct-loading-container .loading-text span:nth-child(872) {
    -webkit-animation-delay: 87.2s;
    animation-delay: 87.2s
}

.ct-loading-container .loading-text span:nth-child(873) {
    -webkit-animation-delay: 87.3s;
    animation-delay: 87.3s
}

.ct-loading-container .loading-text span:nth-child(874) {
    -webkit-animation-delay: 87.4s;
    animation-delay: 87.4s
}

.ct-loading-container .loading-text span:nth-child(875) {
    -webkit-animation-delay: 87.5s;
    animation-delay: 87.5s
}

.ct-loading-container .loading-text span:nth-child(876) {
    -webkit-animation-delay: 87.6s;
    animation-delay: 87.6s
}

.ct-loading-container .loading-text span:nth-child(877) {
    -webkit-animation-delay: 87.7s;
    animation-delay: 87.7s
}

.ct-loading-container .loading-text span:nth-child(878) {
    -webkit-animation-delay: 87.8s;
    animation-delay: 87.8s
}

.ct-loading-container .loading-text span:nth-child(879) {
    -webkit-animation-delay: 87.9s;
    animation-delay: 87.9s
}

.ct-loading-container .loading-text span:nth-child(880) {
    -webkit-animation-delay: 88s;
    animation-delay: 88s
}

.ct-loading-container .loading-text span:nth-child(881) {
    -webkit-animation-delay: 88.1s;
    animation-delay: 88.1s
}

.ct-loading-container .loading-text span:nth-child(882) {
    -webkit-animation-delay: 88.2s;
    animation-delay: 88.2s
}

.ct-loading-container .loading-text span:nth-child(883) {
    -webkit-animation-delay: 88.3s;
    animation-delay: 88.3s
}

.ct-loading-container .loading-text span:nth-child(884) {
    -webkit-animation-delay: 88.4s;
    animation-delay: 88.4s
}

.ct-loading-container .loading-text span:nth-child(885) {
    -webkit-animation-delay: 88.5s;
    animation-delay: 88.5s
}

.ct-loading-container .loading-text span:nth-child(886) {
    -webkit-animation-delay: 88.6s;
    animation-delay: 88.6s
}

.ct-loading-container .loading-text span:nth-child(887) {
    -webkit-animation-delay: 88.7s;
    animation-delay: 88.7s
}

.ct-loading-container .loading-text span:nth-child(888) {
    -webkit-animation-delay: 88.8s;
    animation-delay: 88.8s
}

.ct-loading-container .loading-text span:nth-child(889) {
    -webkit-animation-delay: 88.9s;
    animation-delay: 88.9s
}

.ct-loading-container .loading-text span:nth-child(890) {
    -webkit-animation-delay: 89s;
    animation-delay: 89s
}

.ct-loading-container .loading-text span:nth-child(891) {
    -webkit-animation-delay: 89.1s;
    animation-delay: 89.1s
}

.ct-loading-container .loading-text span:nth-child(892) {
    -webkit-animation-delay: 89.2s;
    animation-delay: 89.2s
}

.ct-loading-container .loading-text span:nth-child(893) {
    -webkit-animation-delay: 89.3s;
    animation-delay: 89.3s
}

.ct-loading-container .loading-text span:nth-child(894) {
    -webkit-animation-delay: 89.4s;
    animation-delay: 89.4s
}

.ct-loading-container .loading-text span:nth-child(895) {
    -webkit-animation-delay: 89.5s;
    animation-delay: 89.5s
}

.ct-loading-container .loading-text span:nth-child(896) {
    -webkit-animation-delay: 89.6s;
    animation-delay: 89.6s
}

.ct-loading-container .loading-text span:nth-child(897) {
    -webkit-animation-delay: 89.7s;
    animation-delay: 89.7s
}

.ct-loading-container .loading-text span:nth-child(898) {
    -webkit-animation-delay: 89.8s;
    animation-delay: 89.8s
}

.ct-loading-container .loading-text span:nth-child(899) {
    -webkit-animation-delay: 89.9s;
    animation-delay: 89.9s
}

.ct-loading-container .loading-text span:nth-child(900) {
    -webkit-animation-delay: 90s;
    animation-delay: 90s
}

.ct-loading-container .loading-text span:nth-child(901) {
    -webkit-animation-delay: 90.1s;
    animation-delay: 90.1s
}

.ct-loading-container .loading-text span:nth-child(902) {
    -webkit-animation-delay: 90.2s;
    animation-delay: 90.2s
}

.ct-loading-container .loading-text span:nth-child(903) {
    -webkit-animation-delay: 90.3s;
    animation-delay: 90.3s
}

.ct-loading-container .loading-text span:nth-child(904) {
    -webkit-animation-delay: 90.4s;
    animation-delay: 90.4s
}

.ct-loading-container .loading-text span:nth-child(905) {
    -webkit-animation-delay: 90.5s;
    animation-delay: 90.5s
}

.ct-loading-container .loading-text span:nth-child(906) {
    -webkit-animation-delay: 90.6s;
    animation-delay: 90.6s
}

.ct-loading-container .loading-text span:nth-child(907) {
    -webkit-animation-delay: 90.7s;
    animation-delay: 90.7s
}

.ct-loading-container .loading-text span:nth-child(908) {
    -webkit-animation-delay: 90.8s;
    animation-delay: 90.8s
}

.ct-loading-container .loading-text span:nth-child(909) {
    -webkit-animation-delay: 90.9s;
    animation-delay: 90.9s
}

.ct-loading-container .loading-text span:nth-child(910) {
    -webkit-animation-delay: 91s;
    animation-delay: 91s
}

.ct-loading-container .loading-text span:nth-child(911) {
    -webkit-animation-delay: 91.1s;
    animation-delay: 91.1s
}

.ct-loading-container .loading-text span:nth-child(912) {
    -webkit-animation-delay: 91.2s;
    animation-delay: 91.2s
}

.ct-loading-container .loading-text span:nth-child(913) {
    -webkit-animation-delay: 91.3s;
    animation-delay: 91.3s
}

.ct-loading-container .loading-text span:nth-child(914) {
    -webkit-animation-delay: 91.4s;
    animation-delay: 91.4s
}

.ct-loading-container .loading-text span:nth-child(915) {
    -webkit-animation-delay: 91.5s;
    animation-delay: 91.5s
}

.ct-loading-container .loading-text span:nth-child(916) {
    -webkit-animation-delay: 91.6s;
    animation-delay: 91.6s
}

.ct-loading-container .loading-text span:nth-child(917) {
    -webkit-animation-delay: 91.7s;
    animation-delay: 91.7s
}

.ct-loading-container .loading-text span:nth-child(918) {
    -webkit-animation-delay: 91.8s;
    animation-delay: 91.8s
}

.ct-loading-container .loading-text span:nth-child(919) {
    -webkit-animation-delay: 91.9s;
    animation-delay: 91.9s
}

.ct-loading-container .loading-text span:nth-child(920) {
    -webkit-animation-delay: 92s;
    animation-delay: 92s
}

.ct-loading-container .loading-text span:nth-child(921) {
    -webkit-animation-delay: 92.1s;
    animation-delay: 92.1s
}

.ct-loading-container .loading-text span:nth-child(922) {
    -webkit-animation-delay: 92.2s;
    animation-delay: 92.2s
}

.ct-loading-container .loading-text span:nth-child(923) {
    -webkit-animation-delay: 92.3s;
    animation-delay: 92.3s
}

.ct-loading-container .loading-text span:nth-child(924) {
    -webkit-animation-delay: 92.4s;
    animation-delay: 92.4s
}

.ct-loading-container .loading-text span:nth-child(925) {
    -webkit-animation-delay: 92.5s;
    animation-delay: 92.5s
}

.ct-loading-container .loading-text span:nth-child(926) {
    -webkit-animation-delay: 92.6s;
    animation-delay: 92.6s
}

.ct-loading-container .loading-text span:nth-child(927) {
    -webkit-animation-delay: 92.7s;
    animation-delay: 92.7s
}

.ct-loading-container .loading-text span:nth-child(928) {
    -webkit-animation-delay: 92.8s;
    animation-delay: 92.8s
}

.ct-loading-container .loading-text span:nth-child(929) {
    -webkit-animation-delay: 92.9s;
    animation-delay: 92.9s
}

.ct-loading-container .loading-text span:nth-child(930) {
    -webkit-animation-delay: 93s;
    animation-delay: 93s
}

.ct-loading-container .loading-text span:nth-child(931) {
    -webkit-animation-delay: 93.1s;
    animation-delay: 93.1s
}

.ct-loading-container .loading-text span:nth-child(932) {
    -webkit-animation-delay: 93.2s;
    animation-delay: 93.2s
}

.ct-loading-container .loading-text span:nth-child(933) {
    -webkit-animation-delay: 93.3s;
    animation-delay: 93.3s
}

.ct-loading-container .loading-text span:nth-child(934) {
    -webkit-animation-delay: 93.4s;
    animation-delay: 93.4s
}

.ct-loading-container .loading-text span:nth-child(935) {
    -webkit-animation-delay: 93.5s;
    animation-delay: 93.5s
}

.ct-loading-container .loading-text span:nth-child(936) {
    -webkit-animation-delay: 93.6s;
    animation-delay: 93.6s
}

.ct-loading-container .loading-text span:nth-child(937) {
    -webkit-animation-delay: 93.7s;
    animation-delay: 93.7s
}

.ct-loading-container .loading-text span:nth-child(938) {
    -webkit-animation-delay: 93.8s;
    animation-delay: 93.8s
}

.ct-loading-container .loading-text span:nth-child(939) {
    -webkit-animation-delay: 93.9s;
    animation-delay: 93.9s
}

.ct-loading-container .loading-text span:nth-child(940) {
    -webkit-animation-delay: 94s;
    animation-delay: 94s
}

.ct-loading-container .loading-text span:nth-child(941) {
    -webkit-animation-delay: 94.1s;
    animation-delay: 94.1s
}

.ct-loading-container .loading-text span:nth-child(942) {
    -webkit-animation-delay: 94.2s;
    animation-delay: 94.2s
}

.ct-loading-container .loading-text span:nth-child(943) {
    -webkit-animation-delay: 94.3s;
    animation-delay: 94.3s
}

.ct-loading-container .loading-text span:nth-child(944) {
    -webkit-animation-delay: 94.4s;
    animation-delay: 94.4s
}

.ct-loading-container .loading-text span:nth-child(945) {
    -webkit-animation-delay: 94.5s;
    animation-delay: 94.5s
}

.ct-loading-container .loading-text span:nth-child(946) {
    -webkit-animation-delay: 94.6s;
    animation-delay: 94.6s
}

.ct-loading-container .loading-text span:nth-child(947) {
    -webkit-animation-delay: 94.7s;
    animation-delay: 94.7s
}

.ct-loading-container .loading-text span:nth-child(948) {
    -webkit-animation-delay: 94.8s;
    animation-delay: 94.8s
}

.ct-loading-container .loading-text span:nth-child(949) {
    -webkit-animation-delay: 94.9s;
    animation-delay: 94.9s
}

.ct-loading-container .loading-text span:nth-child(950) {
    -webkit-animation-delay: 95s;
    animation-delay: 95s
}

.ct-loading-container .loading-text span:nth-child(951) {
    -webkit-animation-delay: 95.1s;
    animation-delay: 95.1s
}

.ct-loading-container .loading-text span:nth-child(952) {
    -webkit-animation-delay: 95.2s;
    animation-delay: 95.2s
}

.ct-loading-container .loading-text span:nth-child(953) {
    -webkit-animation-delay: 95.3s;
    animation-delay: 95.3s
}

.ct-loading-container .loading-text span:nth-child(954) {
    -webkit-animation-delay: 95.4s;
    animation-delay: 95.4s
}

.ct-loading-container .loading-text span:nth-child(955) {
    -webkit-animation-delay: 95.5s;
    animation-delay: 95.5s
}

.ct-loading-container .loading-text span:nth-child(956) {
    -webkit-animation-delay: 95.6s;
    animation-delay: 95.6s
}

.ct-loading-container .loading-text span:nth-child(957) {
    -webkit-animation-delay: 95.7s;
    animation-delay: 95.7s
}

.ct-loading-container .loading-text span:nth-child(958) {
    -webkit-animation-delay: 95.8s;
    animation-delay: 95.8s
}

.ct-loading-container .loading-text span:nth-child(959) {
    -webkit-animation-delay: 95.9s;
    animation-delay: 95.9s
}

.ct-loading-container .loading-text span:nth-child(960) {
    -webkit-animation-delay: 96s;
    animation-delay: 96s
}

.ct-loading-container .loading-text span:nth-child(961) {
    -webkit-animation-delay: 96.1s;
    animation-delay: 96.1s
}

.ct-loading-container .loading-text span:nth-child(962) {
    -webkit-animation-delay: 96.2s;
    animation-delay: 96.2s
}

.ct-loading-container .loading-text span:nth-child(963) {
    -webkit-animation-delay: 96.3s;
    animation-delay: 96.3s
}

.ct-loading-container .loading-text span:nth-child(964) {
    -webkit-animation-delay: 96.4s;
    animation-delay: 96.4s
}

.ct-loading-container .loading-text span:nth-child(965) {
    -webkit-animation-delay: 96.5s;
    animation-delay: 96.5s
}

.ct-loading-container .loading-text span:nth-child(966) {
    -webkit-animation-delay: 96.6s;
    animation-delay: 96.6s
}

.ct-loading-container .loading-text span:nth-child(967) {
    -webkit-animation-delay: 96.7s;
    animation-delay: 96.7s
}

.ct-loading-container .loading-text span:nth-child(968) {
    -webkit-animation-delay: 96.8s;
    animation-delay: 96.8s
}

.ct-loading-container .loading-text span:nth-child(969) {
    -webkit-animation-delay: 96.9s;
    animation-delay: 96.9s
}

.ct-loading-container .loading-text span:nth-child(970) {
    -webkit-animation-delay: 97s;
    animation-delay: 97s
}

.ct-loading-container .loading-text span:nth-child(971) {
    -webkit-animation-delay: 97.1s;
    animation-delay: 97.1s
}

.ct-loading-container .loading-text span:nth-child(972) {
    -webkit-animation-delay: 97.2s;
    animation-delay: 97.2s
}

.ct-loading-container .loading-text span:nth-child(973) {
    -webkit-animation-delay: 97.3s;
    animation-delay: 97.3s
}

.ct-loading-container .loading-text span:nth-child(974) {
    -webkit-animation-delay: 97.4s;
    animation-delay: 97.4s
}

.ct-loading-container .loading-text span:nth-child(975) {
    -webkit-animation-delay: 97.5s;
    animation-delay: 97.5s
}

.ct-loading-container .loading-text span:nth-child(976) {
    -webkit-animation-delay: 97.6s;
    animation-delay: 97.6s
}

.ct-loading-container .loading-text span:nth-child(977) {
    -webkit-animation-delay: 97.7s;
    animation-delay: 97.7s
}

.ct-loading-container .loading-text span:nth-child(978) {
    -webkit-animation-delay: 97.8s;
    animation-delay: 97.8s
}

.ct-loading-container .loading-text span:nth-child(979) {
    -webkit-animation-delay: 97.9s;
    animation-delay: 97.9s
}

.ct-loading-container .loading-text span:nth-child(980) {
    -webkit-animation-delay: 98s;
    animation-delay: 98s
}

.ct-loading-container .loading-text span:nth-child(981) {
    -webkit-animation-delay: 98.1s;
    animation-delay: 98.1s
}

.ct-loading-container .loading-text span:nth-child(982) {
    -webkit-animation-delay: 98.2s;
    animation-delay: 98.2s
}

.ct-loading-container .loading-text span:nth-child(983) {
    -webkit-animation-delay: 98.3s;
    animation-delay: 98.3s
}

.ct-loading-container .loading-text span:nth-child(984) {
    -webkit-animation-delay: 98.4s;
    animation-delay: 98.4s
}

.ct-loading-container .loading-text span:nth-child(985) {
    -webkit-animation-delay: 98.5s;
    animation-delay: 98.5s
}

.ct-loading-container .loading-text span:nth-child(986) {
    -webkit-animation-delay: 98.6s;
    animation-delay: 98.6s
}

.ct-loading-container .loading-text span:nth-child(987) {
    -webkit-animation-delay: 98.7s;
    animation-delay: 98.7s
}

.ct-loading-container .loading-text span:nth-child(988) {
    -webkit-animation-delay: 98.8s;
    animation-delay: 98.8s
}

.ct-loading-container .loading-text span:nth-child(989) {
    -webkit-animation-delay: 98.9s;
    animation-delay: 98.9s
}

.ct-loading-container .loading-text span:nth-child(990) {
    -webkit-animation-delay: 99s;
    animation-delay: 99s
}

.ct-loading-container .loading-text span:nth-child(991) {
    -webkit-animation-delay: 99.1s;
    animation-delay: 99.1s
}

.ct-loading-container .loading-text span:nth-child(992) {
    -webkit-animation-delay: 99.2s;
    animation-delay: 99.2s
}

.ct-loading-container .loading-text span:nth-child(993) {
    -webkit-animation-delay: 99.3s;
    animation-delay: 99.3s
}

.ct-loading-container .loading-text span:nth-child(994) {
    -webkit-animation-delay: 99.4s;
    animation-delay: 99.4s
}

.ct-loading-container .loading-text span:nth-child(995) {
    -webkit-animation-delay: 99.5s;
    animation-delay: 99.5s
}

.ct-loading-container .loading-text span:nth-child(996) {
    -webkit-animation-delay: 99.6s;
    animation-delay: 99.6s
}

.ct-loading-container .loading-text span:nth-child(997) {
    -webkit-animation-delay: 99.7s;
    animation-delay: 99.7s
}

.ct-loading-container .loading-text span:nth-child(998) {
    -webkit-animation-delay: 99.8s;
    animation-delay: 99.8s
}

.ct-loading-container .loading-text span:nth-child(999) {
    -webkit-animation-delay: 99.9s;
    animation-delay: 99.9s
}

.ct-loading-container .loading-text span:nth-child(1000) {
    -webkit-animation-delay: 100s;
    animation-delay: 100s
}

.ct-loading-gauge {
    width: 20rem;
    height: 10rem;
    position: relative;
    left: 50%;
    top: 50%;
    overflow: hidden;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-loading-gauge .loader-title {
    color: #c6c6c6;
    font-size: 5rem;
    left: 50%;
    top: calc(50% + 13px);
    position: absolute;
    margin: 0;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.ct-loading-gauge .loader {
    position: relative;
    background: 0 0;
    width: 20rem;
    height: 20rem;
    border: 20px solid #c6c6c6;
    -webkit-transform: rotate(var(--rotation));
    -khtml-transform: rotate(var(--rotation));
    -moz-transform: rotate(var(--rotation));
    -ms-transform: rotate(var(--rotation));
    -o-transform: rotate(var(--rotation));
    transform: rotate(var(--rotation));
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: transform .2s ease;
    -khtml-transition: transform .2s ease;
    -moz-transition: transform .2s ease;
    -ms-transition: transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease
}

.ct-loading-gauge .loader:before {
    content: '';
    position: absolute;
    border: 20px solid #bf2025;
    border-left-color: transparent;
    border-top-color: transparent;
    left: -20px;
    top: -20px;
    width: 20rem;
    height: 20rem;
    z-index: 2;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

@media screen and (max-width:767px) {
    .ct-loading-gauge {
        width: 16rem;
        height: 8rem
    }

    .ct-loading-gauge .loader-title {
        font-size: 4rem;
        top: calc(50% + 11px)
    }

    .ct-loading-gauge .loader {
        width: 16rem;
        height: 16rem;
        border: 16px solid #c6c6c6
    }

    .ct-loading-gauge .loader:before {
        border: 16px solid #bf2025;
        left: -16px;
        top: -16px;
        width: 16rem;
        height: 16rem
    }
}

@media screen and (max-width:575px) {
    .ct-loading-gauge {
        width: 10rem;
        height: 5rem
    }

    .ct-loading-gauge .loader-title {
        font-size: 3rem;
        top: 50%
    }

    .ct-loading-gauge .loader {
        width: 10rem;
        height: 10rem;
        border: 10px solid #c6c6c6
    }

    .ct-loading-gauge .loader:before {
        border: 10px solid #bf2025;
        left: -10px;
        top: -10px;
        width: 10rem;
        height: 10rem
    }
}

.ct-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    -webkit-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .5s cubic-bezier(.24, .74, .58, 1);
    transition: .5s cubic-bezier(.24, .74, .58, 1);
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0
}

.ct-modal .ct-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .5s cubic-bezier(.24, .74, .58, 1);
    transition: .5s cubic-bezier(.24, .74, .58, 1);
    transition-delay: 500ms;
    -webkit-transition-delay: 500ms;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    z-index: 9999;
    background-color: #bf2025;
    width: 40px;
    height: 40px
}

.ct-modal .ct-modal-close .ct-icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: initial
}

.ct-modal .ct-modal-close .ct-icon-close:before,
.ct-modal .ct-modal-close .ct-icon-close:after {
    background-color: rgba(255, 255, 255, .9)
}

.ct-modal .ct-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: block;
    background-color: rgba(255, 255, 255, .95)
}

.ct-modal .ct-modal-content {
    position: fixed;
    width: 100%;
    max-width: 1200px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .5s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .5s cubic-bezier(.24, .74, .58, 1);
    transition: .5s cubic-bezier(.24, .74, .58, 1);
    margin-top: 60px;
    transition-delay: 500ms;
    -webkit-transition-delay: 500ms;
    opacity: 0
}

.ct-modal.open {
    -webkit-transform: translateY(0%);
    -khtml-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1
}

.ct-modal.open .ct-modal-close {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.ct-modal.open .ct-modal-content {
    margin-top: 0;
    opacity: 1
}

.ct-modal.remove {
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    transition-delay: 500ms;
    -webkit-transition-delay: 500ms
}

.ct-modal.remove .ct-modal-content {
    margin-top: 60px;
    transition-delay: 0ms;
    -webkit-transition-delay: 0ms
}

.ct-modal.remove .ct-modal-close {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    transition-delay: 0ms;
    -webkit-transition-delay: 0ms
}

.ct-modal.ct-modal-search .ct-modal-content {
    max-width: 680px
}

.admin-bar .ct-modal .ct-modal-close {
    top: 32px
}

.ct-modal-search .search-form-popup {
    position: relative
}

.ct-modal-search .search-field {
    background-color: initial;
    border: none;
    height: 60px;
    padding-left: 0;
    padding-right: 60px;
    color: #222;
    font-size: 25px;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 0, 0, .67);
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.ct-modal-search .search-field:focus {
    border-color: rgba(0, 0, 0, .87)
}

.ct-modal-search .search-submit {
    font-size: 22px;
    color: #ededed;
    background-color: initial;
    background-image: none;
    border: none;
    padding: 0;
    height: 60px;
    width: 60px;
    line-height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

.ct-modal-search .search-submit i {
    font-weight: 400;
    margin-right: 5px;
    font-size: 18px
}

.ct-modal-search .search-submit i:hover {
    color: #bf2025
}

.ct-modal-search .search-submit:before,
.ct-modal-search .search-submit:after {
    display: none
}

.ct-modal-search .search-submit:active {
    background-color: initial !important
}

.ct-hidden-sidebar-overlay,
.ct-widget-cart-overlay {
    background-color: rgba(0, 0, 0, .6);
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    position: fixed;
    z-index: 1026;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    -webkit-transition: transform .8s ease 0s;
    -khtml-transition: transform .8s ease 0s;
    -moz-transition: transform .8s ease 0s;
    -ms-transition: transform .8s ease 0s;
    -o-transition: transform .8s ease 0s;
    transition: transform .8s ease 0s;
    transition-delay: .2s;
    -webkit-transition-delay: .2s;
    cursor: url(../img/pointer.png), auto
}

.ct-hidden-sidebar {
    position: fixed;
    z-index: 1029;
    top: 0;
    right: 0;
    bottom: 0;
    width: 375px;
    background-color: #161616;
    font-size: 14px;
    line-height: 1.7857;
    overflow: hidden;
    -webkit-transform: translateX(380px);
    -khtml-transform: translateX(380px);
    -moz-transform: translateX(380px);
    -ms-transform: translateX(380px);
    -o-transform: translateX(380px);
    transform: translateX(380px);
    -webkit-transition: transform .8s ease 0s;
    -khtml-transition: transform .8s ease 0s;
    -moz-transition: transform .8s ease 0s;
    -ms-transition: transform .8s ease 0s;
    -o-transition: transform .8s ease 0s;
    transition: transform .8s ease 0s;
    transition-delay: 0s;
    -webkit-transition-delay: 0s
}

.ct-hidden-sidebar .ct-hidden-sidebar-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    margin: 90px -15px 50px 0;
    padding: 0 45px
}

@media screen and (max-width:1400px) {
    .ct-hidden-sidebar .ct-hidden-sidebar-inner {
        margin: 85px -15px 40px 0;
        padding: 0 45px
    }
}

@media screen and (max-width:991px) {
    .ct-hidden-sidebar .ct-hidden-sidebar-inner {
        margin: 85px -15px 30px 0;
        padding: 0 35px
    }
}

.ct-hidden-sidebar .ct-hidden-close {
    height: 36px;
    width: 36px;
    line-height: 26px;
    background-color: #bf2025;
    font-size: 10px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    cursor: pointer;
    display: inline-block;
    color: #fff
}

.ct-hidden-sidebar .ct-hidden-close i {
    background: 0 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-hidden-sidebar .ct-hidden-close i:before,
.ct-hidden-sidebar .ct-hidden-close i:after {
    background-color: #fff
}

.ct-hidden-sidebar .widget {
    margin-bottom: 23px
}

.ct-hidden-sidebar .widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.ct-hidden-sidebar .widget.wp-logo {
    margin-bottom: 30px
}

.ct-hidden-sidebar .widget.wp-logo img {
    max-height: 45px;
    width: auto
}

.ct-hidden-sidebar .widget.widget_media_image img {
    width: 140px
}

.ct-hidden-sidebar .widget.ct-getintouch .ct-getintouch-item {
    display: block;
    margin-left: 0;
    margin-right: 0
}

.ct-hidden-sidebar .widget.ct-getintouch .ct-getintouch-item .ct-getintouch-icon {
    min-width: 40px;
    text-align: left;
    position: relative
}

.ct-hidden-sidebar .widget.ct-getintouch .ct-getintouch-item .ct-getintouch-icon i {
    display: inline-block;
    color: #bf2025;
    width: 25px;
    height: 25px;
    line-height: 1;
    font-size: 30px;
    float: left;
    padding: 10px 0 0 10px
}

.ct-hidden-sidebar .widget.ct-getintouch .ct-getintouch-item .ct-getintouch-icon:after {
    content: '';
    position: absolute;
    background-color: #fde4d0;
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 40% 45% 40% 30%
}

.ct-hidden-sidebar .widget.ct-getintouch .ct-getintouch-item .ct-getintouch-meta {
    color: #c6c6c6;
    font-weight: 600;
    line-height: 2;
    padding-left: 55px;
    font-family: chakra petch, sans-serif
}

@media screen and (min-width:1200px) {
    .ct-hidden-sidebar .widget.widget_cs_social_widget {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
        flex-direction: column
    }
}

.ct-hidden-sidebar .widget.widget_cs_social_widget .ct-social li {
    margin-right: 13px
}

.ct-hidden-sidebar .widget.widget_cs_social_widget a {
    background-color: #fde4d0;
    color: #bf2025;
    height: 40px;
    line-height: 40px;
    width: 40px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
}

.ct-hidden-sidebar .widget.widget_cs_social_widget a:hover {
    background-color: #bf2025;
    color: #fff
}

.ct-hidden-sidebar .widget.widget_ct_recent_posts .posts-list .entry-brief .entry-media {
    max-width: 55px;
    min-width: 55px
}

.ct-hidden-sidebar .widget.widget_ct_recent_posts .posts-list .entry-brief .entry-title {
    font-size: 16px
}

.ct-hidden-sidebar .widget.widget_ct_recent_posts .posts-list .entry-brief .entry-title a {
    color: #c6c6c6
}

.ct-hidden-sidebar .widget.widget_ct_recent_posts .posts-list .entry-brief .entry-title a:hover {
    color: #161616
}

.ct-hidden-sidebar .widget.widget_ct_recent_posts .posts-list .entry-brief .item-date {
    color: #c6c6c6;
    text-transform: capitalize;
    display: none
}

.ct-hidden-sidebar .widget .widget-title {
    position: relative;
    font-size: 20px;
    line-height: 35px;
    font-weight: 600;
    color: #ededed;
    font-family: chakra petch, sans-serif;
    margin-bottom: 12px
}

.admin-bar .ct-hidden-sidebar . {
    top: 52px
}

.ct-hidden-sidebar-wrap.open .ct-hidden-sidebar-overlay {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s
}

.ct-hidden-sidebar-wrap.open .ct-hidden-sidebar {
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: .3s;
    -webkit-transition-delay: .3s;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    -khtml-box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    box-shadow: 0 0 30px rgba(0, 0, 0, .2)
}

.ct-widget-cart-wrap.open {}

.ct-widget-cart-wrap.open .ct-widget-cart-overlay {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s
}

.ct-widget-cart-wrap.open .ct-widget-cart-sidebar {
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: .3s;
    -webkit-transition-delay: .3s;
    -webkit-box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    -khtml-box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    -moz-box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    -ms-box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    -o-box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    box-shadow: 0 2px 27px rgba(54, 54, 54, .13)
}

@media screen and (max-width:575px) {
    .col-xs-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xs-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xs-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xs-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xs-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xs-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xs-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xs-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xs-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.ct-demo-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    background: #fff;
    z-index: 99999;
    height: 100%;
    text-align: center;
    -webkit-transform: translate(301px, 0);
    -khtml-transform: translate(301px, 0);
    -moz-transform: translate(301px, 0);
    -ms-transform: translate(301px, 0);
    -o-transform: translate(301px, 0);
    transform: translate(301px, 0);
    -webkit-transition: transform .6s ease;
    -khtml-transition: transform .6s ease;
    -moz-transition: transform .6s ease;
    -ms-transition: transform .6s ease;
    -o-transition: transform .6s ease;
    transition: transform .6s ease
}

@media screen and (max-width:575px) {
    .ct-demo-bar {
        width: 260px;
        -webkit-transform: translate(260px, 0);
        -khtml-transform: translate(260px, 0);
        -moz-transform: translate(260px, 0);
        -ms-transform: translate(260px, 0);
        -o-transform: translate(260px, 0);
        transform: translate(260px, 0);
        display: none
    }
}

.ct-demo-bar.active {
    -webkit-transform: translate(0, 0);
    -khtml-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.ct-demo-bar .ct-demo-option {
    position: absolute;
    top: 198px;
    left: -40px;
    height: 110px;
    padding: 10px 0;
    width: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    -khtml-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    -webkit-border-radius: 5px 0 0 5px;
    -khtml-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px
}

.ct-demo-bar .ct-demo-option span {
    position: absolute;
    background-color: #222;
    color: #fff;
    white-space: nowrap;
    padding: 0 12px;
    font-size: 13px;
    top: 0;
    right: 100%;
    margin-right: 12px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-demo-bar .ct-demo-option span:before {
    content: '';
    border-color: #222;
    border-style: solid;
    border-color: transparent transparent transparent #222;
    border-width: 6px;
    position: absolute;
    top: 50%;
    right: -12px;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.ct-demo-bar .ct-demo-option a {
    display: block;
    color: #222;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    position: relative
}

.ct-demo-bar .ct-demo-option a:first-child {
    font-size: 16px
}

.ct-demo-bar .ct-demo-option a:hover span {
    opacity: 1;
    visibility: visible
}

.ct-demo-bar .ct-demo-bar-meta {
    padding: 40px 20px 0
}

.ct-demo-bar .ct-demo-bar-meta h4,
.ct-demo-bar .ct-demo-bar-meta .ct-countdown-layout1 .countdown-amount,
.ct-countdown-layout1 .ct-demo-bar .ct-demo-bar-meta .countdown-amount {
    font-size: 18px
}

.ct-demo-bar .ct-demo-bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
    -khtml-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
    -ms-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
    -o-box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
    box-shadow: -1px 1px 10px rgba(0, 0, 0, .1);
    overflow: auto;
    height: 100%;
    color: #222;
    line-height: 1.5;
    font-size: 14px
}

.ct-demo-bar .ct-demo-bar-inner:hover {
    overflow-y: auto
}

.ct-demo-bar .ct-demo-bar-list {
    list-style: none;
    margin: 0;
    padding: 20px
}

.ct-demo-bar .ct-demo-bar-item {
    position: relative;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    -khtml-box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    -ms-box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, .11);
    box-shadow: 0 0 10px rgba(0, 0, 0, .11)
}

.ct-demo-bar .ct-demo-bar-item:before {
    z-index: 1;
    content: '';
    background-color: rgba(0, 0, 0, .78);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    opacity: 0
}

.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder {
    position: absolute;
    top: 50%;
    padding: 20px;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    opacity: 0;
    z-index: 2
}

.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder h6 {
    color: #fff;
    margin-bottom: 18px
}

.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder .btn,
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder input[type=submit],
.ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder .btn-form button[type=submit],
.btn-form .ct-demo-bar .ct-demo-bar-item .ct-demo-bar-holder button[type=submit] {
    line-height: 40px;
    font-size: 14px;
    padding: 0 20px
}

.ct-demo-bar .ct-demo-bar-item+.ct-demo-bar-item {
    margin-top: 20px
}

.ct-demo-bar .ct-demo-bar-item:hover:before,
.ct-demo-bar .ct-demo-bar-item:hover .ct-demo-bar-holder {
    opacity: 1
}

.ct-showcase1 .ct-showcase-title {
    font-size: 18px;
    font-family: inherit;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-top: 22px
}

.ct-showcase1 .ct-showcase-title cite {
    color: #bf2025;
    font-style: normal
}

.ct-showcase1 .ct-showcase-image {
    position: relative;
    -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, .11);
    -khtml-box-shadow: 0 0 24px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0 0 24px rgba(0, 0, 0, .11);
    -ms-box-shadow: 0 0 24px rgba(0, 0, 0, .11);
    -o-box-shadow: 0 0 24px rgba(0, 0, 0, .11);
    box-shadow: 0 0 24px rgba(0, 0, 0, .11);
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    position: relative;
    overflow: hidden
}

.ct-showcase1 .ct-showcase-image label {
    -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    -khtml-box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    -ms-box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    -o-box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    line-height: 33px;
    height: 33px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background-color: #bf2025;
    position: absolute;
    width: 180px;
    padding: 0 10px;
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 25px;
    left: -48px;
    font-family: chakra petch, sans-serif;
    text-align: center;
    text-transform: uppercase
}

.ct-showcase1 .ct-showcase-image img {
    width: 100%
}

.ct-showcase1 .ct-showcase-image .ct-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .49);
    opacity: 0;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.ct-showcase1 .ct-showcase-image.is-coming .ct-showcase-overlay {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, .86)
}

.ct-showcase1 .ct-showcase-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 60px;
    opacity: 0;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.ct-showcase1 .ct-showcase-button .ct-showcase-link {
    font-size: 15px;
    color: #010101;
    font-weight: 700;
    display: inline-block;
    line-height: 78px;
    padding: 0 44px;
    background-color: #f4f3f3
}

@media screen and (max-width:1400px) {
    .ct-showcase1 .ct-showcase-button .ct-showcase-link {
        line-height: 60px;
        padding: 0 23px
    }
}

@media screen and (max-width:767px) {
    .ct-showcase1 .ct-showcase-button .ct-showcase-link {
        line-height: 52px;
        font-size: 14px
    }
}

.ct-showcase1 .ct-showcase-button .ct-showcase-link.active {
    background-color: #bf2025;
    color: #fff
}

.ct-showcase1 .ct-showcase-coming {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    font-size: 30px;
    font-family: chakra petch, sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #2e279d;
    background-image: -webkit-gradient(linear, left top, right top, from(#2e279d), to(#f78e3d));
    background-image: -webkit-linear-gradient(left, #2e279d, #f78e3d);
    background-image: -moz-linear-gradient(left, #2e279d, #f78e3d);
    background-image: -ms-linear-gradient(left, #2e279d, #f78e3d);
    background-image: -o-linear-gradient(left, #2e279d, #f78e3d);
    background-image: linear-gradient(left, #2e279d, #f78e3d);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2e279d', endColorStr='#f78e3d', gradientType='1')
}

.ct-showcase1 .item--inner {
    margin-bottom: 47px;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.ct-showcase1 .item--inner:hover {
    -webkit-transform: translateY(-18px);
    -khtml-transform: translateY(-18px);
    -moz-transform: translateY(-18px);
    -ms-transform: translateY(-18px);
    -o-transform: translateY(-18px);
    transform: translateY(-18px)
}

.ct-showcase1 .item--inner:hover .ct-showcase-image {
    -webkit-box-shadow: 0 13px 29px rgba(0, 0, 0, .35);
    -khtml-box-shadow: 0 13px 29px rgba(0, 0, 0, .35);
    -moz-box-shadow: 0 13px 29px rgba(0, 0, 0, .35);
    -ms-box-shadow: 0 13px 29px rgba(0, 0, 0, .35);
    -o-box-shadow: 0 13px 29px rgba(0, 0, 0, .35);
    box-shadow: 0 13px 29px rgba(0, 0, 0, .35)
}

.ct-showcase1 .item--inner:hover .ct-showcase-image .ct-showcase-overlay {
    opacity: 1
}

.ct-showcase1 .item--inner:hover .ct-showcase-button {
    margin-top: 0;
    opacity: 1
}

.ct-related-post {
    margin-top: 163px
}

@media screen and (max-width:991px) {
    .ct-related-post {
        margin-top: 90px
    }
}

.ct-related-post .related-post:nth-child(4) {
    display: none
}

@media screen and (max-width:991px) {
    .ct-related-post .related-post:nth-child(4) {
        display: block
    }
}

@media screen and (max-width:991px) {
    .ct-related-post .related-post {
        margin-top: 40px
    }
}

.ct-related-post .ct-related-post-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px
}

.ct-related-post .widget-title {
    margin-bottom: 50px
}

@media screen and (max-width:991px) {
    .ct-related-post .widget-title {
        margin-bottom: -10px
    }
}

.ct-logo {
    opacity: 1
}

.ct-logo a {
    display: inline-block
}

.ct-logo img {
    width: auto
}

.ct-search-popup,
.ct-cart-popup,
.ct-sidebar-icon-inner {
    height: auto;
    cursor: pointer;
    color: #ededed;
    font-size: 16px;
    text-align: center
}

.ct-search-popup i,
.ct-cart-popup i,
.ct-sidebar-icon-inner i {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    font-weight: 900
}

.ct-search-popup.style2 {
    height: 40px;
    width: 40px;
    line-height: 45px;
    -webkit-border-radius: 40px;
    -khtml-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    background-color: #f3f3f3;
    color: #c6c6c6
}

.ct-search-popup.style2 i {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.ct-search-popup:hover {
    color: #bf2025
}

.ct-cart-popup.style2 {
    height: 40px;
    width: 40px;
    line-height: 42px;
    -webkit-border-radius: 40px;
    -khtml-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    background-color: #f3f3f3;
    color: #c6c6c6
}

.ct-cart-popup.style2:hover i {
    color: #bf2025
}

.ct-cart-popup.style3 i {
    color: #ededed;
    line-height: 1;
    font-size: 20px
}

.ct-cart-popup.style3:hover i {
    color: #bf2025
}

.ct-cart-popup.style4 i {
    color: #bf2025
}

.ct-cart-popup.style4 .ct_button_text {
    padding: 0 5px 0 3px
}

.ct-cart-popup.style4 .ct-cart-items {
    font-size: 14px;
    font-weight: 400
}

.ct-wishlist-icon .ct-woosw-btn {
    font-size: 0;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ct-wishlist-icon .wishlist-count {
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    background-color: #f10505;
    border-radius: 15px;
    position: absolute;
    top: 0;
    right: -2px
}

.ct-wishlist-icon .inner-layout {
    width: 32px;
    height: 32px;
    line-height: 35px;
    text-align: center;
    position: relative;
    cursor: pointer
}

.ct-wishlist-icon .inner-layout i {
    font-size: 20px;
    color: #ededed;
    -webkit-transition: all 300ms linear 100ms;
    -khtml-transition: all 300ms linear 100ms;
    -moz-transition: all 300ms linear 100ms;
    -ms-transition: all 300ms linear 100ms;
    -o-transition: all 300ms linear 100ms;
    transition: all 300ms linear 100ms
}

.ct-wishlist-icon .inner-layout:hover i {
    color: #161616
}

.ct-nav-menu2 li {
    display: block;
    margin-bottom: 13px
}

.ct-nav-menu2 li a {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.666;
    color: #ededed
}

.ct-nav-menu2 li a span {
    padding-left: 15px;
    color: #000000bb;
}

.ct-nav-menu2 li a:before {
    content: '\f45c';
    font-family: "font awesome 5 pro";
    font-size: 4px;
    color: #bf2025;
    position: absolute;
    display: inline-block
}

.ct-nav-menu2 li a:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    border-bottom: 2px dashed #bf2025;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-nav-menu2 li a:hover:after {
    width: 100%
}

.ct-hidden-sidebar-icon .ct-sidebar-icon-inner:hover i {
    color: #bf2025 !important
}

.ct-hidden-sidebar-icon .ct-sidebar-icon-inner .item--icon {
    line-height: 1
}

.ct-hidden-sidebar-icon .ct-sidebar-icon-inner .item--icon i {
    font-size: 13px
}

.ct-list.style-1 .ct-list-content {
    display: flex;
    place-items: center;
    position: relative;
    padding-left: 16px
}

.ct-list.style-1 .ct-list-content:before {
    content: '\f45c';
    font-family: "font awesome 5 pro";
    font-size: 7px;
    line-height: 1;
    font-weight: 700;
    color: #bf2025;
    left: 0;
    position: absolute
}

.ct-list.style-2 .list-title {
    margin-bottom: 18px
}

.ct-list.style-2 .ct-list-content {
    display: flex;
    place-items: center;
    position: relative;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 600;
    color: #ededed;
    font-family: chakra petch, sans-serif
}

.ct-list.style-2 .ct-list-content:before {
    content: '\f45c';
    font-family: "font awesome 5 free";
    font-size: 8px;
    line-height: 1;
    color: #bf2025;
    margin-right: 10px;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%, 20% 0)
}

.ct-list.style-2 .ct-list-item+.ct-list-item {
    margin-top: 12px
}

.ct-list.style-3 .ct-list-item .ct-list-content {
    display: inline-block;
    position: relative;
    color: #6c757d;
    padding-left: 30px;
    font-family: chakra petch, sans-serif
}

.ct-list.style-3 .ct-list-item .ct-list-content:before {
    content: '\f10c';
    font-family: grandicon;
    position: absolute;
    top: 3px;
    left: 0;
    font-weight: 900;
    font-size: 12px;
    background-color: #bf2025;
    margin-right: 8px;
    color: #fff;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px
}

.ct-list.style-3 .ct-list-item:not(:last-child) {
    margin-bottom: 12px
}

.ct-list.style-4 .ct-list-item {
    display: flex;
    flex-wrap: nowrap;
    line-height: 1.5;
    counter-increment: list-counter
}

.ct-list.style-4 .ct-list-item:before {
    content: counter(list-counter)'. '
}

.ct-list.style-4 .ct-list-item+.ct-list-item {
    margin-top: 12px
}

.ct-list.style-4 .ct-list-item .ct-list-content {
    padding-left: 7px
}

.ct-list.style-5 .ct-list-meta {
    display: flex
}

.ct-list.style-5 .ct-list-item .ct-list-content,
.ct-list.style-5 .ct-list-item a {
    font-size: 14px;
    font-weight: 500;
    font-family: mulish, sans-serif
}

.ct-list.style-5 .ct-list-item+.ct-list-item {
    margin-left: 20px
}

.ct-list.style-6 .ct-list-content {
    display: flex;
    place-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 600
}

.ct-list.style-6 .ct-list-content:before {
    content: '';
    background-color: #bf2025;
    width: 20px;
    height: 2px;
    margin-right: 10px
}

.ct-list.style-6 .ct-list-item+.ct-list-item {
    margin-top: 13px
}

.ct-list.style-7 .ct-list-content {
    display: flex;
    place-items: center;
    position: relative;
    font-weight: 600
}

.ct-list.style-7 .ct-list-content a {
    font-family: mulish, sans-serif
}

.ct-heading {
    position: relative;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-heading .item--sub-title {
    font-weight: 600;
    color: #000000bb;
    font-family: chakra petch, sans-serif
}

.ct-heading .item--title {
    position: relative
}

.ct-heading .item--title.st-style1 {
    padding-bottom: 27px
}

.ct-heading .item--title.st-style1:before,
.ct-heading .item--title.st-style1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-heading .item--title.st-style1:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-heading .item--title.st-style1:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-heading:hover .title-holder {
    -webkit-transform: translateY(-15px);
    -khtml-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px)
}

.ct-list-hover .ct-list-item .ct-list-content a {
    color: #f9f9f9;
    font-size: 15px;
    line-height: 33px
}

.ct-list-hover .ct-list-item .ct-list-content a:after {
    content: "\f061";
    font-family: "font awesome 5 pro";
    font-weight: 900;
    vertical-align: middle;
    font-size: 12px;
    opacity: 0;
    margin-left: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.38, .17, .09, .99)
}

.ct-list-hover .ct-list-item .ct-list-content:hover a {
    color: #bf2025
}

.ct-list-hover .ct-list-item .ct-list-content:hover a:after {
    opacity: 1;
    margin-left: 10px;
    visibility: visible;
    color: #bf2025
}

.nav-bar-tools .elementor-widget-container {
    position: relative
}

.nav-bar-tools .elementor-widget-container:after {
    content: '';
    width: 2px;
    height: 25px;
    background-color: rgba(155, 155, 155, .3);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%)
}

.ct-newsletter1 .item--title {
    color: #000000bb;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px
}

.ct-newsletter1 .item--description-1 {
    color: #000000bb;
    margin-bottom: 26px;
    font-size: 15px;
    font-weight: 500
}

.ct-newsletter1 .newsletter {
    position: relative
}

.ct-newsletter1 .newsletter .tnp-field-email {
    position: relative;
    border-bottom: 2px solid transparent
}

.ct-newsletter1 .newsletter .tnp-field-email label {
    display: none
}

.ct-newsletter1 .newsletter .tnp-field-email span:before,
.ct-newsletter1 .newsletter .tnp-field-email span:after {
    content: '';
    position: absolute;
    bottom: -2px;
    height: 2px
}

.ct-newsletter1 .newsletter .tnp-field-email span:before {
    right: 0;
    width: 100%;
    background-color: #464646;
    -webkit-transition: all 200ms linear 50ms;
    -khtml-transition: all 200ms linear 50ms;
    -moz-transition: all 200ms linear 50ms;
    -ms-transition: all 200ms linear 50ms;
    -o-transition: all 200ms linear 50ms;
    transition: all 200ms linear 50ms
}

.ct-newsletter1 .newsletter .tnp-field-email span:after {
    left: 0;
    width: 0;
    background-color: #bf2025;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-newsletter1 .newsletter .tnp-field-email input {
    width: 100%;
    color: #000000bb;
    background-color: initial;
    font-size: 14px;
    line-height: 2.7857;
    font-weight: 600;
    padding: 0
}

.ct-newsletter1 .newsletter .tnp-field-email input:focus+span:before {
    width: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-newsletter1 .newsletter .tnp-field-email input:focus+span:after {
    width: 100%;
    -webkit-transition: all 200ms linear 50ms;
    -khtml-transition: all 200ms linear 50ms;
    -moz-transition: all 200ms linear 50ms;
    -ms-transition: all 200ms linear 50ms;
    -o-transition: all 200ms linear 50ms;
    transition: all 200ms linear 50ms
}

.ct-newsletter1 .newsletter .tnp-field-button .tnp-button {
    width: 100%;
    padding: 16px 60px
}

.ct-newsletter1 .newsletter .tnp-field-email+.tnp-field-button {
    margin-top: 30px
}

.ct-newsletter2 .text-inner {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 60px
}

@media screen and (max-width:991px) {
    .ct-newsletter2 .text-inner {
        margin-bottom: 40px
    }
}

.ct-newsletter2 .text--title {
    max-width: 850px;
    text-align: center
}

.ct-newsletter2 .text--title span {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:575px) {
    .ct-newsletter2 .text--title span {
        font-size: 38px
    }
}

@media screen and (max-width:480px) {
    .ct-newsletter2 .text--title span {
        font-size: 30px
    }
}

.ct-newsletter2 .text--title .text--active {
    display: inline-block;
    min-width: 95px;
    color: #bf2025;
    padding: 0 7px
}

.ct-newsletter2 .newsletter {
    position: relative;
    display: flex;
    justify-content: center
}

.ct-newsletter2 .tnp-field-email {
    background-color: #161616
}

.ct-newsletter2 .tnp-field-email .tnp-email {
    font-size: 16px;
    padding: 13px 20px;
    min-width: 310px;
    border: 2px solid transparent
}

.ct-newsletter2 .tnp-field-email .tnp-email:focus {
    border-color: #bf2025
}

.ct-newsletter2 .tnp-field-button {
    margin-left: 40px
}

.ct-newsletter2 .tnp-field-button .tnp-button {
    padding: 18px 48px 15px
}

@media screen and (max-width:575px) {

    .ct-newsletter2 .text--title .text--active,
    .ct-newsletter2 .tnp-field-email .tnp-email {
        min-width: auto
    }

    .ct-newsletter2 .newsletter {
        flex-wrap: wrap
    }

    .ct-newsletter2 .tnp-field-email,
    .ct-newsletter2 .tnp-field-button {
        width: 100%
    }

    .ct-newsletter2 .tnp-field-button {
        margin: 30px 0 0
    }
}

.ct-contact-info.ct-contact-info1 {
    margin-bottom: 0;
    transition: all 300ms linear 0ms
}

.ct-contact-info.ct-contact-info1 i {
    color: #bf2025;
    font-size: 35px;
    line-height: 1.1;
    padding-right: 15px;
    transition: all 300ms linear 0ms
}

.ct-contact-info.ct-contact-info1 .ct-contact-content .ct-contact-title {
    color: #3e3e3e;
    font-weight: 500;
    font-size: 14px;
    display: block;
    line-height: 1.7;
    margin-bottom: 1px
}

.ct-contact-info.ct-contact-info1 .ct-contact-content span {
    color: #000000bb;
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.45;
    display: block;
    font-family: chakra petch, sans-serif;
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.ct-contact-info.ct-contact-info1 .ct-contact-content span:hover {
    color: #bf2025
}

.ct-contact-info.ct-contact-info2 {
    border: 1px solid #343434
}

.ct-contact-info.ct-contact-info2 .ct-contact-content .ct-contact-title {
    font-size: 23px;
    line-height: 1.4347;
    font-weight: 700;
    color: #ededed;
    font-family: chakra petch, sans-serif
}

.ct-contact-info.ct-contact-info2 .ct-contact-content .ct-contact-title+.ct-contact-list {
    margin-top: 14px
}

.ct-contact-info.ct-contact-info2 .ct-contact-content .ct-contact-list+.ct-contact-list {
    margin-top: 15px
}

.ct-contact-info.ct-contact-info2 .ct-contact-content .ct-contact-list a {
    display: block;
    color: #ededed;
    font-family: mulish, sans-serif
}

.ct-contact-info.ct-contact-info2 .ct-contact-content .ct-contact-list a:hover {
    color: #bf2025
}

.ct-contact-info.ct-contact-info2.style2 {
    border-color: transparent;
    background-color: #121212
}

.ct-video.ct-video-player1 .container-custom {
    position: relative;
    padding-bottom: 33px
}

.ct-video.ct-video-player1 .container-custom:before,
.ct-video.ct-video-player1 .container-custom:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-video.ct-video-player1 .container-custom:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-video.ct-video-player1 .container-custom .wp-meta .text-title {
    position: relative
}

.ct-video.ct-video-player1 .container-custom+.ct-video-box {
    margin-top: 38px
}

.ct-video.ct-video-player1 .ct-video-box {
    position: relative;
    overflow: hidden
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-holder {
    position: relative;
    overflow: hidden
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-holder img {
    width: 100%;
    object-fit: cover;
    -webkit-filter: brightness(30%);
    -khtml-filter: brightness(30%);
    -moz-filter: brightness(30%);
    -ms-filter: brightness(30%);
    -o-filter: brightness(30%);
    filter: brightness(30%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-holder .ct-video-description {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-holder+.ct-video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button {
    position: relative
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 115px;
    height: 115px;
    background-color: #bf2025;
    border: 2px solid #bf2025;
    -webkit-clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    z-index: 2;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 i {
    color: #fff;
    font-size: 40px;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

@media screen and (max-width:767px) {
    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 i {
        font-size: 30px
    }
}

@media screen and (max-width:575px) {
    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 i {
        font-size: 20px
    }
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 svg,
.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 svg path,
.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 i path {
    fill: #fff;
    fill-rule: evenodd;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

@media screen and (max-width:767px) {
    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 {
        width: 95px;
        height: 95px
    }

    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 svg {
        width: 30.56px;
        height: 30.53px
    }
}

@media screen and (max-width:575px) {
    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 {
        width: 60px;
        height: 60px;
        -webkit-clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
        clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px)
    }

    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1 svg {
        width: 20.56px;
        height: 20.53px
    }
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1:hover {
    color: #fff;
    background-color: initial;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1:hover i {
    color: #bf2025
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style1:hover svg path {
    fill: #bf2025
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style2 {
    display: inline-flex
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style2 i {
    color: #fff;
    background-color: #bf2025;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}

@media screen and (max-width:360px) {
    .ct-video.ct-video-player1 .ct-video-box .ct-video-button.style2 i {
        width: 65px;
        height: 65px;
        line-height: 65px
    }
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style2 i:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #bf2025;
    border-radius: 50%;
    z-index: -2;
    -webkit-animation: pulse-border2 900ms ease-out infinite;
    -khtml-animation: pulse-border2 900ms ease-out infinite;
    -moz-animation: pulse-border2 900ms ease-out infinite;
    -ms-animation: pulse-border2 900ms ease-out infinite;
    -o-animation: pulse-border2 900ms ease-out infinite;
    animation: pulse-border2 900ms ease-out infinite
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-button.style2:hover i {
    color: #bf2025;
    background-color: #fff
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-content {
    display: flex;
    position: absolute;
    top: 49.5%;
    left: 50%;
    width: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-video.ct-video-player1 .ct-video-box .ct-video-content .ct-video-description {
    max-width: 600px;
    margin: 0 15px 68px
}

@media screen and (max-width:767px) {
    .ct-video.ct-video-player1 .ct-video-box .ct-video-content .ct-video-description {
        margin: 0 15px 40px
    }
}

.ct-video.ct-video-player1 .ct-video-box.zoom:hover .ct-video-holder img {
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-video.ct-video-player1 .ct-video-box.galaxy-dots:hover .ct-video-holder img,
.ct-video.ct-video-player1 .ct-video-box.speed-dots:hover .ct-video-holder img {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.ct-video.ct-video-player1:hover .container-custom:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-video .galaxy-dots .particles,
.ct-video .speed-dots .particles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

@media screen and (max-width:1199px) {

    .ct-video .galaxy-dots .particles,
    .ct-video .speed-dots .particles {
        opacity: 0
    }
}

.ct-video .galaxy-dots .particles:before,
.ct-video .speed-dots .particles:before,
.ct-video .galaxy-dots .particles:after,
.ct-video .speed-dots .particles:after {
    position: absolute;
    content: '';
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    background-image: repeating-conic-gradient(#fff 0%, transparent 2e-4%, transparent .075%, transparent .65%), repeating-conic-gradient(#fff 0%, transparent 4e-4%, transparent .05%, transparent .495%);
    transform-style: preserve-3d;
    z-index: 1;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translateZ(-50vmin);
    -khtml-transform: translateZ(-50vmin);
    -moz-transform: translateZ(-50vmin);
    -ms-transform: translateZ(-50vmin);
    -o-transform: translateZ(-50vmin);
    transform: translateZ(-50vmin);
    -webkit-animation: particlesMovement 5s ease-in 0s infinite;
    -khtml-animation: particlesMovement 5s ease-in 0s infinite;
    -moz-animation: particlesMovement 5s ease-in 0s infinite;
    -ms-animation: particlesMovement 5s ease-in 0s infinite;
    -o-animation: particlesMovement 5s ease-in 0s infinite;
    animation: particlesMovement 5s ease-in 0s infinite
}

.ct-video .galaxy-dots .particles:after,
.ct-video .speed-dots .particles:after {
    -webkit-animation: particlesMovement2;
    -khtml-animation: particlesMovement2;
    -moz-animation: particlesMovement2;
    -ms-animation: particlesMovement2;
    -o-animation: particlesMovement2;
    animation: particlesMovement2;
    animation-delay: 1s
}

.ct-video .galaxy-dots .particles+.particles+.particles::before,
.ct-video .speed-dots .particles+.particles+.particles::before {
    animation-delay: 2s
}

.ct-video .galaxy-dots .particles+.particles+.particles::after,
.ct-video .speed-dots .particles+.particles+.particles::after {
    animation-delay: 3s
}

.ct-video .speed-dots .particles {
    perspective: 50vmin
}

.ct-team-carousel1 .item--inner .item--image {
    position: relative;
    overflow: hidden;
    border-radius: 3px
}

.ct-team-carousel1 .item--inner .item--image img {
    transition: all .3s ease
}

.ct-team-carousel1 .item--inner .item--image img:hover {
    transform: scale(1.05);
    transition: all .2s ease-out
}

@media {
    .ct-team-carousel1 .item--inner .item--image img {
        width: 100%
    }
}

.ct-team-carousel1 .item--inner .item--image .item--social {
    position: absolute;
    top: 20px;
    left: -40px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .3s ease
}

.ct-team-carousel1 .item--inner .item--image .item--social a {
    display: block;
    background-color: #bf2025;
    font-size: 13px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center
}

.ct-team-carousel1 .item--inner .item--image .item--social a:hover {
    background-color: #ededed
}

.ct-team-carousel1 .item--inner .item--image .item--social.list-style-2 a {
    margin-bottom: 5px;
    border-radius: 3px
}

.ct-team-carousel1 .item--inner .item--holder {
    margin-top: 25px;
    padding: 0 25px;
    text-align: center
}

.ct-team-carousel1 .item--inner .item--holder .item--title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #ededed
}

.ct-team-carousel1 .item--inner .item--holder .item--title a {
    color: #ededed
}

.ct-team-carousel1 .item--inner .item--holder .item--title a:hover {
    color: #bf2025
}

.ct-team-carousel1 .item--inner .item--holder .item--position {
    color: #bf2025;
    margin: 12px 0 0;
    line-height: 1.1;
    font-weight: 600
}

.ct-team-carousel1 .item--inner:hover .item--image .item--social {
    left: 20px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease
}

.ct-team-grid1 .container-custom {
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 39px
}

.ct-team-grid1 .container-custom:before,
.ct-team-grid1 .container-custom:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-team-grid1 .container-custom:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-team-grid1 .container-custom .wp-meta {
    position: relative
}

.ct-team-grid1:hover .container-custom:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-team-grid1 .ct-grid-inner {
    margin: 0 -15px -30px
}

.ct-team-grid1 .item--inner {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.ct-team-grid1 .item--inner:before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 5px solid #bf2025;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-team-grid1 .item--inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, .9);
    z-index: 2;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-team-grid1 .item--inner .item--image {
    position: relative;
    height: 340px;
    overflow: hidden
}

.ct-team-grid1 .item--inner .item--image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-filter: grayscale(100%);
    -khtml-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%)
}

@media screen and (max-width:1199px) {
    .ct-team-grid1 .item--inner .item--image img {
        object-position: top
    }
}

.ct-team-grid1 .item--inner .item--holder,
.ct-team-grid1 .item--inner .item--social {
    position: absolute;
    left: 40px;
    z-index: 3
}

.ct-team-grid1 .item--inner .item--holder {
    top: 40px;
    padding-right: 40px
}

.ct-team-grid1 .item--inner .item--title {
    display: block;
    margin-bottom: 5px;
    font-weight: 700
}

.ct-team-grid1 .item--inner .item--position {
    font-size: 14px;
    color: #fff
}

.ct-team-grid1 .item--inner .item--social {
    bottom: 40px
}

.ct-team-grid1 .item--inner .item--social a {
    display: inline-block;
    color: #ececec;
    font-size: 13px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #bf2025;
    border: 1px solid #bf2025
}

.ct-team-grid1 .item--inner .item--social a+a {
    margin-left: 10px
}

.ct-team-grid1 .item--inner .item--social a:hover {
    color: #ececec;
    background-color: initial;
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px)
}

.ct-team-grid1 .item--inner .item--title,
.ct-team-grid1 .item--inner .item--position {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-team-grid1 .item--inner .item--social {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -khtml-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-team-grid1 .item--inner:hover:before {
    visibility: visible
}

.ct-team-grid1 .item--inner:hover:after {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1)
}

.ct-team-grid1 .item--inner:hover .item--title,
.ct-team-grid1 .item--inner:hover .item--position,
.ct-team-grid1 .item--inner:hover .item--social {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-accordion .ct-ac-content {
    display: none
}

.ct-accordion.layout1 .ct-accordion-item {
    position: relative;
    cursor: pointer;
    background-color: #121212;
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.ct-accordion.layout1 .ct-accordion-item .ct-ac-title {
    position: relative;
    color: #ededed;
    font-weight: 700
}

.ct-accordion.layout1 .ct-accordion-item .ct-ac-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.ct-accordion.layout1 .ct-accordion-item .ct-ac-button .ct-ac-icon {
    display: flex;
    padding: 11.5px 14.5px;
    background: #bf2025;
    clip-path: polygon(20% 0, 100% 0, 100% calc(100% - 20%), calc(100% - 20%) 100%, 0 100%, 0 20%)
}

.ct-accordion.layout1 .ct-accordion-item .ct-ac-button .ct-ac-icon:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #121212;
    clip-path: polygon(20% 0, 100% 0, 100% calc(100% - 20%), calc(100% - 20%) 100%, 0 100%, 0 20%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-accordion.layout1 .ct-accordion-item .ct-ac-button .ct-ac-icon i {
    font-size: 17px;
    font-weight: 400;
    z-index: 1
}

.ct-accordion.layout1 .ct-accordion-item .ct-ac-content {
    opacity: 0
}

.ct-accordion.layout1 .ct-accordion-item:hover {
    border-color: #bf2025
}

.ct-accordion.layout1 .ct-accordion-item.active {
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-accordion.layout1 .ct-accordion-item.active .ct-ac-title .ct-ac-icon i {
    transform: rotate(.5turn)
}

.ct-accordion.layout1 .ct-accordion-item.active .ct-ac-title .ct-ac-icon:after {
    background: #bf2025
}

.ct-accordion.layout1 .ct-accordion-item.active .ct-ac-content {
    opacity: 1
}

.ct-accordion.layout1.style1 .ct-accordion-item:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    border-top: 3px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-accordion.layout1.style1 .ct-accordion-item .ct-ac-title {
    padding: 41px 100px 39px 40px
}

@media screen and (max-width:991px) {
    .ct-accordion.layout1.style1 .ct-accordion-item .ct-ac-title {
        padding: 31px 80px 39px 20px
    }
}

.ct-accordion.layout1.style1 .ct-accordion-item .ct-ac-button {
    right: 30px
}

@media screen and (max-width:991px) {
    .ct-accordion.layout1.style1 .ct-accordion-item .ct-ac-button {
        right: 20px
    }
}

.ct-accordion.layout1.style1 .ct-accordion-item .ct-ac-content {
    color: #ededed;
    line-height: 1.444;
    padding: 0 70px 45px 40px;
    margin-top: -24px
}

@media screen and (max-width:991px) {
    .ct-accordion.layout1.style1 .ct-accordion-item .ct-ac-content {
        padding: 0 20px 45px
    }
}

.ct-accordion.layout1.style1 .ct-accordion-item:not(:last-child) {
    margin-bottom: 30px
}

.ct-accordion.layout1.style1 .ct-accordion-item.active:before {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-accordion.layout1.style2 .ct-accordion-item {
    border-bottom: 1px solid #343434
}

.ct-accordion.layout1.style2 .ct-ac-title {
    padding: 26px 70px 26px 0
}

.ct-accordion.layout1.style2 .ct-ac-button {
    right: 0
}

.ct-accordion.layout1.style2 .ct-ac-content {
    color: #ededed;
    padding: 0 70px 22px 0;
    margin-top: -20px
}

.ct-search-box.layout1 .search-form {
    position: relative;
    background-color: #121212
}

.ct-search-box.layout1 .search-form .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    padding: 0 6px;
    font-size: 14px;
    color: #bf2025;
    background-color: initial;
    opacity: 0
}

.ct-search-box.layout1 .search-form .search-field {
    padding: 7px 15px;
    border: 2px solid transparent
}

.ct-search-box.layout1 .search-form .search-field:focus {
    border-color: #bf2025
}

.ct-search-box.layout2 .searchform-wrap {
    display: flex
}

.ct-search-box.layout2 .searchform-wrap .search-field {
    font-size: 16px;
    padding: 12px 20px;
    max-width: 310px;
    background-color: #161616;
    border: 2px solid transparent
}

.ct-search-box.layout2 .searchform-wrap .search-field:focus {
    border-color: #bf2025
}

.ct-search-box.layout2 .searchform-wrap .search-submit {
    display: flex;
    justify-content: center;
    margin-left: 50px;
    padding: 18px 44px 15px
}

@media screen and (max-width:575px) {
    .ct-search-box.layout2 .searchform-wrap {
        flex-wrap: wrap
    }

    .ct-search-box.layout2 .searchform-wrap .search-field {
        max-width: 100%
    }

    .ct-search-box.layout2 .searchform-wrap .search-submit {
        margin: 30px 0 0;
        padding: 15px 40px 12px
    }
}

.ct-contact-form.ct-contact-form-layout1 .ct-contact-titles {
    position: relative
}

.ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-title {
    margin-bottom: 30px
}

@media screen and (max-width:991px) {
    .ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-title {
        margin-bottom: 20px
    }
}

@media screen and (max-width:575px) {
    .ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-title {
        margin-bottom: 15px
    }
}

.ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-description {
    max-width: 50%;
    word-wrap: break-word;
    margin-bottom: 0;
    color: #000000bb;
}

@media screen and (max-width:991px) {
    .ct-contact-form.ct-contact-form-layout1 .ct-contact-titles .text-description {
        max-width: 100%
    }
}

.ct-contact-form.ct-contact-form-layout1 .ct-contact-titles+.ct-contact-form {
    padding-top: 42px
}

.ct-contact-form.ct-contact-form-layout1 .ct-contact-titles:hover .title-holder {
    -webkit-transform: translateY(-15px);
    -khtml-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px)
}

.ct-contact-form.ct-contact-form-layout1 .contact-form-custom1 .input-contact .input-filled.large label {
    margin-bottom: 15px
}

@media screen and (max-width:991px) {
    .ct-contact-form.ct-contact-form-layout1 .contact-form-custom1 .input-contact .col-lg-6 {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .ct-contact-form.ct-contact-form-layout1 .contact-form-custom1 .input-contact .col-lg-6 {
        width: 100%
    }
}

@media screen and (max-width:991px) {
    .ct-contact-form.ct-contact-form-layout1 .ct-contact-titles+.ct-contact-form {
        padding-top: 0
    }

    .ct-contact-form.ct-contact-form-layout1 .input-contact .input-filled {
        padding-top: 30px
    }
}

.ct-grid.ct-gallery-grid1 {
    padding: 28px 0 50px
}

.ct-grid.ct-gallery-grid1 .ct-grid-inner .gallery-icon {
    display: inline-block;
    margin: 2px !important;
    position: relative;
    float: left;
    border-radius: 3px;
    overflow: hidden
}

.ct-grid.ct-gallery-grid1 .ct-grid-inner .gallery-icon .item-image {
    position: relative
}

.ct-grid.ct-gallery-grid1 .ct-grid-inner .gallery-icon .item-image .icon-hover {
    position: absolute;
    left: 0;
    right: 0;
    background-color: rgba(245, 112, 9, .75);
    color: #fff;
    text-align: center;
    line-height: 60px;
    transition: all .3s ease;
    transform: scale(0)
}

.ct-grid.ct-gallery-grid1 .ct-grid-inner .gallery-icon:hover .item-image .icon-hover {
    transform: scale(1);
    transition: all .3s ease
}

.ct-client1 .slick-list {
    margin: 0 -17px 0 -18px
}

.ct-client1 .slick-list .slick-slide {
    padding: 0 20px
}

.ct-client1 .container-custom {
    justify-content: center;
    flex-wrap: wrap
}

.ct-client1 .container-custom .wp-meta+.append-arrows-custom {
    margin-top: 30px
}

.ct-client1 .container-custom .append-arrows-custom {
    display: flex;
    justify-content: flex-end;
    width: 100%
}

.ct-client1 .container-custom+.ct-slick-carousel {
    padding-top: 40px
}

.ct-client1 .client-image {
    position: relative
}

.ct-client1 .client-image:before,
.ct-client1 .client-image:after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 2px;
    background-color: #bf2025;
    z-index: 1;
    -webkit-transition: width .15s .3s ease-out;
    -khtml-transition: width .15s .3s ease-out;
    -moz-transition: width .15s .3s ease-out;
    -ms-transition: width .15s .3s ease-out;
    -o-transition: width .15s .3s ease-out;
    transition: width .15s .3s ease-out
}

.ct-client1 .client-image:before {
    right: 50%
}

.ct-client1 .client-image:after {
    left: 50%
}

.ct-client1 .client-image .inner-item {
    display: flex;
    justify-content: center;
    border: 1px solid #343434;
    padding: 70.5px 0
}

.ct-client1 .client-image .inner-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.ct-client1 .client-image .inner-item:before,
.ct-client1 .client-image .inner-item:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: 0 0;
    opacity: 0;
    -webkit-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -khtml-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -moz-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -ms-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -o-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s
}

.ct-client1 .client-image .inner-item:before {
    top: 0;
    left: 0;
    border-left: 2px solid #bf2025;
    border-bottom: 2px solid #bf2025
}

.ct-client1 .client-image .inner-item:after {
    top: 0;
    right: 0;
    border-right: 2px solid #bf2025;
    border-bottom: 2px solid #bf2025
}

.ct-client1 .client-image:hover:before,
.ct-client1 .client-image:hover:after {
    width: 50%;
    -webkit-transition: width .15s ease-in;
    -khtml-transition: width .15s ease-in;
    -moz-transition: width .15s ease-in;
    -ms-transition: width .15s ease-in;
    -o-transition: width .15s ease-in;
    transition: width .15s ease-in
}

.ct-client1 .client-image:hover .inner-item:before,
.ct-client1 .client-image:hover .inner-item:after {
    width: 50%;
    height: 100%;
    opacity: 1;
    -webkit-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -khtml-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -moz-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -ms-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -o-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s
}

.ct-client1 img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-client-grid1 .container-custom {
    justify-content: center;
    flex-wrap: wrap
}

.ct-client-grid1 .container-custom .wp-meta+.append-arrows-custom {
    margin-top: 30px
}

.ct-client-grid1 .container-custom .append-arrows-custom {
    display: flex;
    justify-content: flex-end;
    width: 100%
}

.ct-client-grid1 .container-custom+.ct-grid-inner {
    padding-top: 42px
}

.ct-client-grid1 .ct-grid-inner {
    margin: 0 -15px -30px
}

.ct-client-grid1 img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-client-grid1 .client-image {
    position: relative
}

.ct-client-grid1 .client-image:before,
.ct-client-grid1 .client-image:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: width .2s .15s linear, height .15s linear, opacity 0s .35s;
    -khtml-transition: width .2s .15s linear, height .15s linear, opacity 0s .35s;
    -moz-transition: width .2s .15s linear, height .15s linear, opacity 0s .35s;
    -ms-transition: width .2s .15s linear, height .15s linear, opacity 0s .35s;
    -o-transition: width .2s .15s linear, height .15s linear, opacity 0s .35s;
    transition: width .2s .15s linear, height .15s linear, opacity 0s .35s
}

.ct-client-grid1 .client-image:before {
    top: 0;
    right: 0;
    border-top: 2px solid #bf2025;
    border-left: 2px solid #bf2025
}

.ct-client-grid1 .client-image:after {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #bf2025;
    border-right: 2px solid #bf2025
}

.ct-client-grid1 .client-image .inner-item {
    display: flex;
    position: relative;
    justify-content: center;
    border: 1px solid #343434;
    padding: 70.5px 0
}

.ct-client-grid1 .client-image .inner-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.ct-client-grid1 .client-image:hover:before,
.ct-client-grid1 .client-image:hover:after {
    width: 100%;
    height: 99%;
    opacity: 1;
    -webkit-transition: width .2s linear, height .15s .2s linear, opacity 0s;
    -khtml-transition: width .2s linear, height .15s .2s linear, opacity 0s;
    -moz-transition: width .2s linear, height .15s .2s linear, opacity 0s;
    -ms-transition: width .2s linear, height .15s .2s linear, opacity 0s;
    -o-transition: width .2s linear, height .15s .2s linear, opacity 0s;
    transition: width .2s linear, height .15s .2s linear, opacity 0s
}

.ct-progressbar.style1 .ct-progress-item:not(:last-child) {
    margin-bottom: 29px
}

.ct-progressbar.style1 .ct-progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px
}

.ct-progressbar.style1 .ct-progress-title,
.ct-progressbar.style1 .ct-progress-percentage {
    margin-bottom: 0;
    font-weight: 600
}

.ct-progressbar.style1 .ct-progress-holder {
    position: relative;
    height: 15px;
    width: 100%;
    background-color: #161616;
    border: 1px solid #343434;
    border-width: 1px 1px 1px 0
}

.ct-progressbar.style1 .ct-progress-holder .ct-progress-bar {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 15px;
    background-color: #bf2025;
    -webkit-transition: all 2s ease 0s;
    -khtml-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
    transition: all 2s ease 0s
}

.ct-main-menu>li.menu-item-has-children>a,
.ct-main-menu>li.page_item_has_children>a {
    padding-right: 15px
}

.ct-main-menu>li.menu-item-has-children>a:after,
.ct-main-menu>li.page_item_has_children>a:after {
    position: absolute;
    content: '+';
    right: 0;
    bottom: 1px;
    font-size: 17px;
    display: inline-block;
    color: #bf2025
}

@media screen and (max-width:1199px) {

    .ct-main-menu>li.menu-item-has-children>a:after,
    .ct-main-menu>li.page_item_has_children>a:after {
        display: none
    }
}

.elementor-widget-ct_showcase .ct-showcase span {
    display: block;
    text-align: center;
    margin-top: 18px;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.elementor-widget-ct_showcase .ct-showcase a {
    display: block
}

.elementor-widget-ct_showcase .ct-showcase a:hover img {
    -webkit-transform: translateY(-12px);
    -khtml-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    -o-transform: translateY(-12px);
    transform: translateY(-12px)
}

.elementor-widget-ct_showcase .ct-showcase a:hover span {
    color: #bf2025
}

.ct-showcase.style1,
.ct-showcase.style2 {
    cursor: pointer
}

.ct-showcase.style1 .item-title,
.ct-showcase.style2 .item-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #ededed;
    font-family: mulish, sans-serif;
    -webkit-transition: all 200ms linear 100ms;
    -khtml-transition: all 200ms linear 100ms;
    -moz-transition: all 200ms linear 100ms;
    -ms-transition: all 200ms linear 100ms;
    -o-transition: all 200ms linear 100ms;
    transition: all 200ms linear 100ms
}

.ct-showcase.style1 .item-feature,
.ct-showcase.style2 .item-feature {
    height: 300px;
    margin-bottom: 26px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .5);
    -khtml-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .5);
    -ms-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .5);
    -o-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 10px 5px rgba(0, 0, 0, .5)
}

.ct-showcase.style1 .item-feature:after,
.ct-showcase.style2 .item-feature:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 1, 10, .49);
    z-index: 1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    opacity: 0
}

.ct-showcase.style1 .item-feature img,
.ct-showcase.style2 .item-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

@media screen and (max-width:1199px) {

    .ct-showcase.style1 .item-feature,
    .ct-showcase.style2 .item-feature {
        height: 300px;
        margin-bottom: 15px
    }
}

.ct-showcase.style1 .ct-item-links,
.ct-showcase.style2 .ct-item-links {
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-showcase.style1 .ct-item-links a,
.ct-showcase.style2 .ct-item-links a {
    display: block;
    text-transform: uppercase;
    min-width: 100px;
    background-color: #121212;
    line-height: 36px;
    padding: 2px 15px;
    margin: 12px 0;
    color: #fff;
    font-size: 16px;
    border: 2px solid #bf2025;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -khtml-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -moz-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -ms-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -o-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35)
}

@media screen and (max-width:1199px) {

    .ct-showcase.style1 .ct-item-links a,
    .ct-showcase.style2 .ct-item-links a {
        font-size: 15px
    }
}

.ct-showcase.style1 .ct-item-links a span,
.ct-showcase.style2 .ct-item-links a span {
    margin-top: 0;
    color: #fff
}

.ct-showcase.style1 .ct-item-links a:hover span,
.ct-showcase.style2 .ct-item-links a:hover span {
    color: #bf2025
}

.ct-showcase.style1 .ct-item-links a.btn-one span,
.ct-showcase.style2 .ct-item-links a.btn-one span {
    color: #bf2025
}

.ct-showcase.style1 .ct-item-links a.btn-one:hover span,
.ct-showcase.style2 .ct-item-links a.btn-one:hover span {
    color: #fff
}

.ct-showcase.style1 .inner-box,
.ct-showcase.style2 .inner-box {
    text-align: center
}

.ct-showcase.style1:hover .item-feature:after,
.ct-showcase.style2:hover .item-feature:after {
    opacity: 1
}

.ct-showcase.style1:hover .ct-item-links,
.ct-showcase.style2:hover .ct-item-links {
    top: 50%;
    opacity: 1
}

.ct-showcase.style1:hover .item-title,
.ct-showcase.style2:hover .item-title {
    color: #bf2025
}

.ct-showcase.style2 .item-feature img {
    -webkit-filter: brightness(60%);
    -khtml-filter: brightness(60%);
    -moz-filter: brightness(60%);
    -ms-filter: brightness(60%);
    -o-filter: brightness(60%);
    filter: brightness(60%)
}

.ct-showcase.style2 .ct-item-links {
    top: 50%;
    opacity: 1
}

.ct-showcase.style2 .ct-item-links a {
    display: none
}

@media screen and (max-width:1199px) {
    .ct-showcase.style2 .ct-item-links {
        width: 100%
    }
}

.ct-showcase.style2 .ct-item-links .coming-soon {
    font-size: 20px;
    color: #fff;
    font-weight: 600
}

@media screen and (max-width:1199px) {
    .ct-showcase.style2 .ct-item-links .coming-soon {
        font-size: 18px
    }
}

.ct-meta-box-layout1 .item--image {
    position: relative
}

.ct-meta-box-layout1 .item--image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 1, 10, .49);
    opacity: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    z-index: 1
}

.ct-meta-box-layout1 .image--inner {
    position: relative;
    height: 800px;
    overflow: hidden
}

.ct-meta-box-layout1 .image--inner img {
    display: block;
    object-fit: cover
}

.ct-meta-box-layout1 .notification {
    position: absolute;
    top: -10px;
    right: 0;
    padding: 2px 10px;
    font-size: 15px;
    color: #fff;
    background-color: #bf2025;
    box-shadow: 0 12px 10px rgba(0, 0, 0, .16);
    font-weight: 600;
    z-index: 2
}

.ct-meta-box-layout1 .item--button {
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-meta-box-layout1 .item--link {
    display: block;
    min-width: 100px;
    background-color: #161616;
    line-height: 45px;
    padding: 2px 25px;
    margin: 15px 0;
    color: #fff;
    font-size: 16px;
    border: 2px solid #bf2025;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -khtml-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -moz-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -ms-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -o-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35)
}

@media screen and (max-width:1199px) {
    .ct-meta-box-layout1 .item--link {
        font-size: 15px
    }
}

.ct-meta-box-layout1 .item--link span {
    margin-top: 0;
    color: #fff
}

.ct-meta-box-layout1 .item--link:hover span {
    color: #bf2025
}

.ct-meta-box-layout1 .item--link:nth-child(2) span {
    color: #bf2025
}

.ct-meta-box-layout1 .item--link:nth-child(2):hover span {
    color: #fff
}

.ct-meta-box-layout1 .inactive--text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-meta-box-layout1 .item--title {
    margin: 30px 0 0
}

.ct-meta-box-layout1 .item--title a {
    border: none;
    font-weight: inherit
}

.ct-meta-box-layout1 .item--title a:hover {
    color: #bf2025
}

@media screen and (max-width:575px) {
    .ct-meta-box-layout1 .item--title {
        font-size: 20px;
        margin: 20px 0 0
    }
}

.ct-meta-box-layout1 .item--inner:hover .item--image:before {
    opacity: 1
}

.ct-meta-box-layout1 .item--inner:hover .item--button {
    top: 50%;
    opacity: 1
}

.ct-meta-box-layout1 .item--inner:hover .item--link {
    background-color: #161616
}

.ct-meta-box-layout1.ct-showcase-scroll .image--inner img {
    position: relative;
    top: 0;
    height: auto;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 4s ease;
    -khtml-transition: all 4s ease;
    -moz-transition: all 4s ease;
    -ms-transition: all 4s ease;
    -o-transition: all 4s ease;
    transition: all 4s ease
}

.ct-meta-box-layout1.ct-showcase-scroll .item--inner:hover .image--inner img {
    top: 100%;
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%)
}

.ct-showcase-inactive .item--inner .item--image:before {
    opacity: 1
}

.ct-image-single {
    position: relative;
    overflow: hidden
}

.ct-image-single img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-image-single.style-zoom img:hover {
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-image-single.style-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    opacity: 0;
    z-index: 1;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-image-single.style-circle:hover:before {
    -webkit-animation: overlay_circle .65s;
    -khtml-animation: overlay_circle .65s;
    -moz-animation: overlay_circle .65s;
    -ms-animation: overlay_circle .65s;
    -o-animation: overlay_circle .65s;
    animation: overlay_circle .65s
}

.ct-image-single.style-circle:hover img {
    -webkit-filter: brightness(100%) !important;
    -khtml-filter: brightness(100%) !important;
    -moz-filter: brightness(100%) !important;
    -ms-filter: brightness(100%) !important;
    -o-filter: brightness(100%) !important;
    filter: brightness(100%) !important
}

.ct-image-single.style-overlay:before,
.ct-image-single.style-overlay:after {
    content: '';
    position: absolute;
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-image-single.style-overlay:before {
    top: 0;
    left: 0;
    opacity: 1
}

.ct-image-single.style-overlay:after {
    bottom: 0;
    right: 0;
    opacity: .7
}

.ct-image-single.style-overlay:hover:before {
    -webkit-animation: ctoverlaybg .55s;
    -khtml-animation: ctoverlaybg .55s;
    -moz-animation: ctoverlaybg .55s;
    -ms-animation: ctoverlaybg .55s;
    -o-animation: ctoverlaybg .55s;
    animation: ctoverlaybg .55s
}

.ct-image-single.style-overlay:hover:after {
    -webkit-animation: ctoverlaybg .55s;
    -khtml-animation: ctoverlaybg .55s;
    -moz-animation: ctoverlaybg .55s;
    -ms-animation: ctoverlaybg .55s;
    -o-animation: ctoverlaybg .55s;
    animation: ctoverlaybg .55s
}

.ct-image-single.style-overlay:hover img {
    -webkit-filter: brightness(100%) !important;
    -khtml-filter: brightness(100%) !important;
    -moz-filter: brightness(100%) !important;
    -ms-filter: brightness(100%) !important;
    -o-filter: brightness(100%) !important;
    filter: brightness(100%) !important
}

.ct-opening-hours.style-default .entry-sub-title {
    color: #161616;
    font-size: 18px;
    margin-bottom: 20px
}

.ct-opening-hours.style-default .entry-title {
    font-size: 45px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 400
}

@media screen and (max-width:991px) {
    .ct-opening-hours.style-default .entry-title {
        font-size: 30px;
        margin-bottom: 25px
    }
}

@media screen and (max-width:575px) {
    .ct-opening-hours.style-default .entry-title {
        font-size: 25px;
        margin-bottom: 20px
    }
}

.ct-opening-hours.style-default .list-li {
    margin-bottom: 0;
    list-style: none
}

@media screen and (max-width:767px) {
    .ct-opening-hours.style-default .list-li {
        margin-bottom: 20px
    }
}

.ct-opening-hours.style-default .list-li li {
    line-height: 26px;
    font-size: 18px
}

@media screen and (min-width:1200px) {
    .ct-opening-hours.style-default .list-li li {
        display: flex;
        justify-content: space-between
    }

    .ct-opening-hours.style-default .list-li li label {
        min-width: 95px
    }
}

@media screen and (max-width:1199px) {
    .ct-opening-hours.style-default .list-li li label {
        color: #ededed;
        font-weight: 600
    }
}

.ct-opening-hours.style-default .list-li li+li {
    font-weight: 400;
    margin-top: 7px
}

@media screen and (max-width:767px) {
    .ct-opening-hours.style-default .list-li li+li {
        margin-top: 15px
    }
}

.ct-opening-hours.style-default .list-li li label {
    margin-right: 5px;
    font-style: normal
}

.ct-opening-hours.style-default .list-li li:last-child span {
    display: inline-block;
    min-width: 135px;
    font-weight: 700;
    color: #ff0054
}

.ct-opening-hours.style-morden {
    padding: 30px 20px;
    border: 1px solid #e5e9ed
}

@media screen and (min-width:1200px) {
    .ct-opening-hours.style-morden {
        padding: 55px 60px
    }
}

.ct-opening-hours.style-morden .entry-sub-title {
    color: #161616;
    font-size: 18px;
    margin-bottom: 20px
}

.ct-opening-hours.style-morden .entry-title {
    font-size: 45px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 400
}

@media screen and (max-width:991px) {
    .ct-opening-hours.style-morden .entry-title {
        font-size: 30px;
        margin-bottom: 25px
    }
}

@media screen and (max-width:575px) {
    .ct-opening-hours.style-morden .entry-title {
        font-size: 25px;
        margin-bottom: 20px
    }
}

.ct-opening-hours.style-morden .list-li {
    margin-bottom: 0;
    list-style: none
}

@media screen and (max-width:767px) {
    .ct-opening-hours.style-morden .list-li {
        margin-bottom: 20px
    }
}

.ct-opening-hours.style-morden .list-li li {
    line-height: 26px;
    font-size: 18px
}

@media screen and (min-width:1200px) {
    .ct-opening-hours.style-morden .list-li li {
        display: flex;
        justify-content: space-between
    }

    .ct-opening-hours.style-morden .list-li li label {
        min-width: 95px
    }
}

@media screen and (max-width:1199px) {
    .ct-opening-hours.style-morden .list-li li label {
        color: #ededed;
        font-weight: 600
    }
}

.ct-opening-hours.style-morden .list-li li+li {
    font-weight: 400;
    margin-top: 7px
}

@media screen and (max-width:767px) {
    .ct-opening-hours.style-morden .list-li li+li {
        margin-top: 15px
    }
}

.ct-opening-hours.style-morden .list-li li label {
    margin-right: 5px;
    font-style: normal
}

.ct-opening-hours.style-morden .list-li li:last-child span {
    display: inline-block;
    min-width: 135px;
    font-weight: 700;
    color: #ff0054
}

.ct-opening-hours.style-3 {
    padding: 75px 70px 70px;
    background-color: #bf2025
}

@media screen and (max-width:991px) {
    .ct-opening-hours.style-3 {
        padding: 45px 20px
    }
}

@media screen and (max-width:575px) {
    .ct-opening-hours.style-3 {
        padding: 45px 15px
    }
}

.ct-opening-hours.style-3 .entry-title {
    color: #fff;
    font-size: 35px
}

.ct-opening-hours.style-3 .list-li {
    margin-bottom: 0;
    list-style: none
}

@media screen and (max-width:767px) {
    .ct-opening-hours.style-3 .list-li {
        margin-bottom: 20px
    }
}

.ct-opening-hours.style-3 .list-li li {
    line-height: 26px;
    font-size: 18px;
    color: #fff;
    padding: 23px 0
}

.ct-opening-hours.style-3 .list-li li:last-child {
    padding-bottom: 0
}

@media screen and (min-width:1200px) {
    .ct-opening-hours.style-3 .list-li li {
        display: flex;
        justify-content: space-between
    }

    .ct-opening-hours.style-3 .list-li li label {
        min-width: 95px
    }
}

@media screen and (max-width:1199px) {
    .ct-opening-hours.style-3 .list-li li label {
        color: #fff;
        font-weight: 400
    }
}

.ct-opening-hours.style-3 .list-li li+li {
    font-weight: 400;
    border-top: 2px dashed rgba(255, 255, 255, .2)
}

.ct-opening-hours.style-3 .list-li li label {
    margin-right: 5px;
    font-style: normal
}

.ct-opening-hours.style-3.arrow-item .list-li {
    margin-bottom: 0;
    list-style: none
}

@media screen and (max-width:767px) {
    .ct-opening-hours.style-3.arrow-item .list-li {
        margin-bottom: 20px
    }
}

.ct-opening-hours.style-3.arrow-item .list-li li {
    line-height: 26px;
    font-size: 18px;
    color: #fff;
    padding: 20px 0;
    padding-left: 20px;
    position: relative;
    -webkit-transition: all 300ms linear 200ms;
    -khtml-transition: all 300ms linear 200ms;
    -moz-transition: all 300ms linear 200ms;
    -ms-transition: all 300ms linear 200ms;
    -o-transition: all 300ms linear 200ms;
    transition: all 300ms linear 200ms
}

.ct-opening-hours.style-3.arrow-item .list-li li:before {
    -webkit-transition: all 300ms linear 200ms;
    -khtml-transition: all 300ms linear 200ms;
    -moz-transition: all 300ms linear 200ms;
    -ms-transition: all 300ms linear 200ms;
    -o-transition: all 300ms linear 200ms;
    transition: all 300ms linear 200ms;
    content: "\f104";
    font-family: Grandicon;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-size: 10px;
    color: #fff
}

.ct-widget-google_maps {
    border: 1px solid #343434
}

.ct-widget-google_maps:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 1
}

.ct-pricing.layout1 .ct-pricing-inner {
    position: relative;
    padding: 50px;
    text-align: center;
    background-color: #121212
}

@media screen and (max-width:991px) {
    .ct-pricing.layout1 .ct-pricing-inner {
        padding: 30px
    }
}

.ct-pricing.layout1 .ct-pricing-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 4px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-header {
    display: inline-block;
    border-bottom: 2px solid #505050;
    padding-bottom: 28px;
    margin-bottom: 24px
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-header .pricing-title {
    font-size: 15px;
    color: #c2c2c2;
    margin-bottom: 12px
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-header .pricing-price {
    margin-bottom: 0
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-header .pricing-time {
    font-size: 14px;
    color: #fff;
    margin-top: 4px
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 16px
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature li.style1 {
    color: #ededed
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature li.style2 {
    color: #707070
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature li+li {
    margin-top: 17px
}

@media screen and (max-width:480px) {
    .ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature li {
        font-size: 14px
    }
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature+.btn,
.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature+input[type=submit],
.ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature+.btn-form button[type=submit],
.btn-form .ct-pricing.layout1 .ct-pricing-inner .pricing-content .ct-pricing-feature+button[type=submit] {
    margin-top: 26px
}

.ct-pricing.layout1 .ct-pricing-inner .pricing-content .btn,
.ct-pricing.layout1 .ct-pricing-inner .pricing-content input[type=submit],
.ct-pricing.layout1 .ct-pricing-inner .pricing-content .btn-form button[type=submit],
.btn-form .ct-pricing.layout1 .ct-pricing-inner .pricing-content button[type=submit] {
    width: 100%
}

.ct-pricing.layout1 .ct-pricing-inner.pricing-active {
    position: relative
}

.ct-pricing.layout1 .ct-pricing-inner.pricing-active .pricing-text-active {
    -webkit-transform: rotate(-90deg);
    -khtml-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: right top;
    -webkit-transform-origin: right top;
    top: 0;
    right: 30px;
    text-transform: uppercase;
    position: absolute;
    display: inline-block;
    padding: 0 15px;
    line-height: 30px;
    background-color: #ff8400;
    color: #fff
}

.ct-pricing.layout1 .ct-pricing-inner:hover:before {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-pricing.layout2 .ct-pricing-inner {
    position: relative;
    padding: 40px;
    border: 1px solid #343434;
    overflow: hidden
}

@media screen and (max-width:1199px) {
    .ct-pricing.layout2 .ct-pricing-inner {
        padding: 30px
    }
}

.ct-pricing.layout2 .ct-pricing-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 4px solid #bf2025;
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-header {
    display: inline-block
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-header .pricing-image {
    margin-bottom: 40px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-header .pricing-title {
    margin-bottom: 12px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-header .pricing-description {
    font-size: 16px;
    margin-bottom: 19px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-header .pricing-feature-title {
    margin-bottom: 10px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature {
    margin-bottom: 39px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature li {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 16px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature li i {
    margin-right: 10px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature li.style1 {
    color: #ededed
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature li.style2 {
    color: #707070
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature li+li {
    margin-top: 12px
}

@media screen and (max-width:480px) {
    .ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature li {
        font-size: 14px
    }
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature+.btn,
.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature+input[type=submit],
.ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature+.btn-form button[type=submit],
.btn-form .ct-pricing.layout2 .ct-pricing-inner .pricing-content .ct-pricing-feature+button[type=submit] {
    margin-top: 26px
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .pricing-price {
    margin-bottom: 38px
}

@media screen and (max-width:1199px) {
    .ct-pricing.layout2 .ct-pricing-inner .pricing-content .pricing-price {
        margin-bottom: 28px
    }
}

.ct-pricing.layout2 .ct-pricing-inner .pricing-content .btn,
.ct-pricing.layout2 .ct-pricing-inner .pricing-content input[type=submit],
.ct-pricing.layout2 .ct-pricing-inner .pricing-content .btn-form button[type=submit],
.btn-form .ct-pricing.layout2 .ct-pricing-inner .pricing-content button[type=submit] {
    width: 100%
}

.ct-pricing.layout2 .ct-pricing-inner.pricing-active {
    position: relative
}

.ct-pricing.layout2 .ct-pricing-inner.pricing-active .pricing-text-active {
    -webkit-transform: rotate(-90deg);
    -khtml-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: right top;
    -webkit-transform-origin: right top;
    top: 0;
    right: 30px;
    text-transform: uppercase;
    position: absolute;
    display: inline-block;
    padding: 0 15px;
    line-height: 30px;
    background-color: #ff8400;
    color: #fff
}

.ct-pricing.layout2 .ct-pricing-inner.pricing-active:before {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-pricing.layout2 .ct-pricing-inner:hover:before {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-banner.layout1 .ct-banner-inner {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #121212;
    overflow: hidden
}

.ct-banner.layout1 .ct-banner-inner .ct-banner-pricing {
    position: relative;
    display: inline-block;
    font-size: 23px;
    line-height: 1.4348;
    font-weight: 700;
    padding-top: 12px;
    border-top: 2px solid #bf2025
}

.ct-banner.layout1 .ct-banner-inner .ct-banner-pricing:before,
.ct-banner.layout1 .ct-banner-inner .ct-banner-pricing:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-banner.layout1 .ct-banner-inner .ct-banner-pricing:before {
    top: -1px
}

.ct-banner.layout1 .ct-banner-inner .ct-banner-pricing:after {
    top: -2px
}

.ct-banner.layout1 .ct-banner-inner:hover .ct-banner-pricing:before,
.ct-banner.layout1 .ct-banner-inner:hover .ct-banner-pricing:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-banner.layout1 .ct-banner-content a.ct-banner-title {
    display: block;
    font-size: 29px;
    line-height: 1.207;
    font-weight: 700
}

@media screen and (max-width:991px) {
    .ct-banner.layout1 .ct-banner-content a.ct-banner-title {
        font-size: 27px
    }
}

.ct-banner.layout1 .ct-sale-price,
.ct-banner.layout1 .ct-regular-price {
    font-family: chakra petch, sans-serif
}

.ct-banner.layout1 .ct-banner-content {
    z-index: 2
}

.ct-banner.layout1 .ct-banner-image {
    position: relative;
    width: 100%;
    height: 100%
}

.ct-banner.layout1 .ct-banner-image .ct-banner-overlay {
    position: absolute;
    width: 45%;
    right: 0;
    bottom: 0
}

.ct-banner.layout1 .ct-banner-image .ct-banner-overlay img {
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: cover
}

.ct-banner.layout1.style1 .ct-banner-inner {
    padding: 34px 40px 40px
}

.ct-banner.layout1.style1 .ct-banner-inner .ct-banner-title+.ct-banner-pricing {
    margin-top: 68px
}

.ct-banner.layout1.style1 .ct-banner-inner .ct-banner-content {
    display: grid
}

.ct-banner.layout1.style1 .ct-banner-inner .ct-banner-pricing {
    width: fit-content
}

.ct-banner.layout1.style1 .ct-banner-inner .ct-banner-pricing .ct-sale-price+.ct-regular-price {
    font-size: 18px;
    font-weight: 500 !important;
    margin-left: 15px;
    color: #c6c6c6
}

.ct-banner.layout1.style1 .ct-banner-inner .ct-banner-pricing .ct-regular-price {
    position: relative
}

.ct-banner.layout1.style1 .ct-banner-inner .ct-banner-pricing .ct-regular-price:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 50%;
    width: 0;
    border-bottom: 1px solid #bf2025;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-banner.layout1.style1 .ct-banner-inner:hover .ct-regular-price:before {
    width: 100%
}

.ct-banner.layout1.style2 .ct-banner-inner {
    padding: 34px 40px 38px
}

.ct-banner.layout1.style2 .ct-banner-content {
    width: 55%
}

.ct-banner.layout1.style2 .ct-banner-pricing .ct-price-text {
    font-size: 14px;
    font-weight: 500 !important;
    color: #fff
}

.ct-banner.layout1.style2 .ct-banner-pricing .ct-price-text+.ct-regular-price {
    margin-left: 10px
}

.ct-banner.layout1.style2 .ct-banner-title+.ct-banner-description {
    padding-top: 28px
}

.ct-banner.layout1.style2 .ct-banner-description {
    font-size: 16px
}

.ct-banner.layout1.style2 .ct-banner-description+.ct-banner-pricing {
    margin-top: 38px
}

@media screen and (max-width:575px) {
    .ct-banner.layout1.style1 .ct-banner-inner {
        padding: 34px 20px 40px
    }

    .ct-banner.layout1.style1 .ct-banner-inner .ct-banner-title+.ct-banner-pricing {
        margin-top: 30px
    }

    .ct-banner.layout1.style1 .ct-banner-overlay {
        position: relative;
        width: 100%
    }

    .ct-banner.layout1.style1 .ct-banner-overlay img {
        position: relative
    }

    .ct-banner.layout1.style2 .ct-banner-inner {
        padding: 34px 20px 38px
    }

    .ct-banner.layout1.style2 .ct-banner-content {
        width: 100%
    }

    .ct-banner.layout1.style2 .ct-banner-overlay {
        position: relative;
        width: 100%
    }

    .ct-banner.layout1.style2 .ct-banner-overlay img {
        position: relative
    }
}

.ct-banner.layout2 .ct-banner-inner {
    position: relative;
    background-color: #121212;
    padding: 34px 40px;
    overflow: hidden;
    z-index: 1
}

.ct-banner.layout2 .ct-banner-content a.ct-banner-title {
    display: block;
    font-size: 29px;
    line-height: 1.207;
    font-weight: 700
}

.ct-banner.layout2 .ct-banner-content a.ct-banner-title:hover {
    color: #bf2025
}

@media screen and (max-width:991px) {
    .ct-banner.layout2 .ct-banner-content a.ct-banner-title {
        font-size: 27px
    }
}

.ct-banner.layout2 .ct-banner-content .ct-banner-description {
    font-size: 16px
}

.ct-banner.layout2 .ct-banner-content .ct-banner-description+.ct-banner-pricing {
    margin-top: 34px
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 {
    position: relative;
    width: fit-content
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:before,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:after,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price:before,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    z-index: 1
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:before,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:after {
    top: 0;
    border-top: 2px solid #bf2025;
    -webkit-transition: width .2s .35s ease-out;
    -khtml-transition: width .2s .35s ease-out;
    -moz-transition: width .2s .35s ease-out;
    -ms-transition: width .2s .35s ease-out;
    -o-transition: width .2s .35s ease-out;
    transition: width .2s .35s ease-out
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:before {
    right: 50%
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:after {
    left: 50%
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price {
    position: relative;
    display: inline-block;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    background-color: #bf2025;
    padding: 15.5px 18px 14px;
    z-index: 2;
    -webkit-transition: background .2s ease-out .4s;
    -khtml-transition: background .2s ease-out .4s;
    -moz-transition: background .2s ease-out .4s;
    -ms-transition: background .2s ease-out .4s;
    -o-transition: background .2s ease-out .4s;
    transition: background .2s ease-out .4s
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price:before,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price:after {
    width: 0%;
    height: 0%;
    background: 0 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: width .2s ease-in, height .15s .2s linear, opacity 0s .35s;
    -khtml-transition: width .2s ease-in, height .15s .2s linear, opacity 0s .35s;
    -moz-transition: width .2s ease-in, height .15s .2s linear, opacity 0s .35s;
    -ms-transition: width .2s ease-in, height .15s .2s linear, opacity 0s .35s;
    -o-transition: width .2s ease-in, height .15s .2s linear, opacity 0s .35s;
    transition: width .2s ease-in, height .15s .2s linear, opacity 0s .35s
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price:before {
    top: 0;
    left: 0;
    border-left: 2px solid #bf2025;
    border-bottom: 2px solid #bf2025
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price:after {
    top: 0;
    right: 0;
    border-right: 2px solid #bf2025;
    border-bottom: 2px solid #bf2025
}

@media screen and (max-width:991px) {
    .ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1 .ct-price {
        font-size: 17px
    }
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:hover:before,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:hover:after {
    width: 50%;
    -webkit-transition: width .2s ease-in;
    -khtml-transition: width .2s ease-in;
    -moz-transition: width .2s ease-in;
    -ms-transition: width .2s ease-in;
    -o-transition: width .2s ease-in;
    transition: width .2s ease-in
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:hover .ct-price {
    background-color: initial;
    -webkit-transition: background .2s ease-in;
    -khtml-transition: background .2s ease-in;
    -moz-transition: background .2s ease-in;
    -ms-transition: background .2s ease-in;
    -o-transition: background .2s ease-in;
    transition: background .2s ease-in
}

.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:hover .ct-price:before,
.ct-banner.layout2 .ct-banner-content .ct-banner-pricing.style1:hover .ct-price:after {
    width: 50%;
    height: 100%;
    opacity: 1;
    -webkit-transition: height .2s .2s ease-in, width .2s .4s linear, opacity 0s .2s;
    -khtml-transition: height .2s .2s ease-in, width .2s .4s linear, opacity 0s .2s;
    -moz-transition: height .2s .2s ease-in, width .2s .4s linear, opacity 0s .2s;
    -ms-transition: height .2s .2s ease-in, width .2s .4s linear, opacity 0s .2s;
    -o-transition: height .2s .2s ease-in, width .2s .4s linear, opacity 0s .2s;
    transition: height .2s .2s ease-in, width .2s .4s linear, opacity 0s .2s
}

.ct-banner.layout2 .ct-banner-title+.ct-banner-description {
    padding-top: 32px
}

.ct-banner.layout2 .ct-banner-image {
    position: relative;
    padding: 165px 0;
    z-index: -1
}

.ct-banner.layout2 .ct-banner-image .ct-banner-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat
}

@media screen and (max-width:575px) {
    .ct-banner.layout2 .ct-banner-inner {
        padding: 34px 20px
    }
}

.ct-banner.layout3 .ct-banner-inner {
    position: relative;
    background-color: #121212;
    padding: 40px 40px 33px;
    overflow: hidden;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

@media screen and (max-width:991px) {
    .ct-banner.layout3 .ct-banner-inner {
        padding: 40px 30px 33px
    }
}

@media screen and (max-width:575px) {
    .ct-banner.layout3 .ct-banner-inner {
        padding: 40px 20px 33px
    }
}

.ct-banner.layout3 .ct-banner-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #bf2025;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-banner.layout3 .ct-banner-inner:hover:before {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.ct-banner.layout3 .ct-banner-inner:hover .ct-banner-image {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-banner.layout3 .ct-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 22px;
    border-bottom: 1px solid #242424;
    z-index: 1
}

.ct-banner.layout3 .ct-banner-content a.ct-banner-title {
    font-size: 23px;
    line-height: 1.43478;
    font-weight: 700
}

.ct-banner.layout3 .ct-banner-content .ct-banner-title {
    margin-bottom: 0;
    z-index: 2
}

.ct-banner.layout3 .ct-banner-content .ct-price {
    font-family: chakra petch, sans-serif
}

.ct-banner.layout3 .ct-banner-content .ct-price .ct-price-text {
    color: #606060;
    font-weight: 600
}

.ct-banner.layout3 .ct-banner-content .ct-price .ct-price-text+.ct-regular-price {
    padding-left: 10px
}

.ct-banner.layout3 .ct-banner-content .ct-price .ct-regular-price {
    font-size: 23px;
    font-weight: 700;
    color: #fff
}

@media screen and (max-width:575px) {
    .ct-banner.layout3 .ct-banner-content .ct-price {
        display: flex;
        flex-wrap: wrap;
        text-align: right
    }

    .ct-banner.layout3 .ct-banner-content .ct-price .ct-price-text+.ct-regular-price {
        padding-left: 0
    }

    .ct-banner.layout3 .ct-banner-content .ct-price .ct-price-text,
    .ct-banner.layout3 .ct-banner-content .ct-price .ct-regular-price {
        width: 100%
    }
}

.ct-banner.layout3 .ct-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -khtml-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-banner.layout3 .ct-banner-image .ct-banner-overlay {
    width: 100%;
    height: inherit;
    background-position: 50%;
    background-repeat: no-repeat
}

.ct-banner.layout3 .ct-banner-list {
    display: flex;
    justify-content: space-between;
    min-height: 130px
}

.ct-banner.layout3 .ct-banner-list .column-left,
.ct-banner.layout3 .ct-banner-list .column-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40%
}

.ct-banner.layout3 .ct-banner-list .item-list {
    display: flex;
    font-size: 16px;
    z-index: 1
}

.ct-banner.layout3 .ct-banner-list .item-list i:before {
    font-size: 8px;
    line-height: 1;
    color: #bf2025;
    margin-right: 10px;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%, 20% 0)
}

@media screen and (max-width:1024px) {
    .ct-banner.layout3 .ct-banner-list {
        min-height: 165px
    }
}

@media screen and (max-width:575px) {
    .ct-banner.layout3 .ct-banner-list {
        min-height: 230px
    }
}

@media screen and (max-width:767px) {
    .ct-banner.layout3 .ct-banner-list {
        flex-wrap: wrap
    }

    .ct-banner.layout3 .ct-banner-list .column-left,
    .ct-banner.layout3 .ct-banner-list .column-right {
        width: 100%
    }
}

.ct-banner.layout4 .ct-banner-inner {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    background-size: cover;
    height: 260px;
    overflow: hidden
}

@media screen and (max-width:1200px) {
    .ct-banner.layout4 .ct-banner-inner {
        background: 0 0;
        height: 200px
    }
}

.ct-banner.layout4 .ct-banner-content {
    position: relative;
    width: 50%;
    padding: 54px 0 0 40px;
    z-index: 2
}

.ct-banner.layout4 .ct-banner-title {
    margin-bottom: 30px
}

.ct-banner.layout4 .ct-banner-image {
    width: 50%;
    z-index: 1
}

.ct-banner.layout4 .ct-banner-image span {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat
}

@media screen and (max-width:1199px) {

    .ct-banner.layout4 .ct-banner-content,
    .ct-banner.layout4 .ct-banner-image {
        width: 100%
    }
}

@media screen and (max-width:767px) {
    .ct-banner.layout4 .ct-banner-content {
        padding: 54px 0 0 20px
    }

    .ct-banner.layout4 .ct-banner-title {
        margin-bottom: 20px
    }
}

.ct-banner.layout5 .ct-banner-inner {
    position: relative;
    padding: 64px 40px 63px
}

@media screen and (max-width:575px) {
    .ct-banner.layout5 .ct-banner-inner {
        padding: 64px 30px 63px
    }
}

.ct-banner.layout5 .ct-banner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 11px
}

@media screen and (max-width:575px) {
    .ct-banner.layout5 .ct-banner-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.ct-banner.layout5 .ct-banner-price {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    padding: 16.5px 18px 14.5px;
    background-color: #bf2025;
    font-family: chakra petch, sans-serif
}

.ct-banner.layout5 .ct-banner-price+.ct-banner-title {
    padding-left: 20px
}

@media screen and (max-width:575px) {
    .ct-banner.layout5 .ct-banner-price+.ct-banner-title {
        padding: 20px 0 0
    }
}

.ct-banner.layout5 .ct-banner-title {
    line-height: 1.1724;
    margin-bottom: 0
}

@media screen and (max-width:575px) {
    .ct-banner.layout5 .ct-banner-title {
        width: 100%
    }
}

.ct-banner.layout5 .ct-banner-image {
    overflow: hidden;
    z-index: -1
}

.ct-banner.layout5 .ct-banner-overlay {
    background-color: #121212;
    opacity: .6
}

.ct-blockquote {
    position: relative
}

.ct-blockquote .item-icon {
    font-size: 123px;
    line-height: 1;
    font-weight: 700;
    color: #bf2025;
    font-family: chakra petch, sans-serif
}

.ct-blockquote.style1 {
    display: flex;
    align-items: center
}

.ct-blockquote.style1 .item-icon {
    width: 10%
}

.ct-blockquote.style1 .item--title {
    width: 90%
}

.ct-blockquote.style2 .item-icon {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-10%, -7%);
    -khtml-transform: translate(-10%, -7%);
    -moz-transform: translate(-10%, -7%);
    -ms-transform: translate(-10%, -7%);
    -o-transform: translate(-10%, -7%);
    transform: translate(-10%, -7%)
}

@media screen and (max-width:575px) {
    .ct-blockquote.style2 .item-icon {
        opacity: .7
    }

    .ct-blockquote.style2 .item--title {
        position: relative
    }
}

.ct-picklist1 .current--item {
    position: relative;
    display: inline-block;
    z-index: 1
}

.ct-picklist1 .current--item label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
    cursor: pointer
}

.ct-picklist1 .current--item .list--content {
    position: absolute;
    top: 100%;
    list-style: none;
    margin-bottom: 0;
    border: 2px solid #ededed;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-picklist1 .current--item .list--content li {
    background: #161616
}

.ct-picklist1 .current--item .list--content li:not(:last-child) {
    border-bottom: 1px solid rgba(248, 246, 247, .1)
}

.ct-picklist1 .current--item .list--content a {
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    margin: 0 25px
}

.ct-picklist1 .current--item:hover label:before,
.ct-picklist1 .current--item:hover label:after {
    -webkit-transform: rotateX(180deg);
    -khtml-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg)
}

.ct-picklist1 .current--item:hover .list--content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1)
}

.ct-picklist1.dr-left .current--item .list--content {
    left: 0
}

.ct-picklist1.dr-right .current--item .list--content {
    right: 0
}

.ct-picklist1.ic-left .current--item label:before {
    content: "\f078";
    font-family: "font awesome 5 pro";
    font-size: 10px;
    font-weight: 400;
    margin-right: 15px;
    line-height: 1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-picklist1.ic-right .current--item label:after {
    content: "\f078";
    font-family: "font awesome 5 pro";
    font-size: 10px;
    font-weight: 400;
    margin-left: 15px;
    line-height: 1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-picklist2 .list--meta {
    list-style: none;
    margin-bottom: 0;
    overflow: hidden
}

.ct-picklist2 .list--meta .list--inner {
    display: flex;
    padding: 30px;
    background-color: #000;
    min-height: 188px
}

.ct-picklist2 .list--meta .list--inner+.list--inner {
    margin-top: 40px
}

.ct-picklist2 .list--meta .list--inner .list--image {
    position: relative;
    width: fit-content;
    height: fit-content;
    overflow: hidden
}

.ct-picklist2 .list--meta .list--inner .list--image:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    opacity: 0;
    z-index: 1;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.ct-picklist2 .list--meta .list--inner .list--image img {
    object-fit: cover;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-picklist2 .list--meta .list--inner .list--image+.list--content {
    width: 73%;
    padding-left: 20px
}

.ct-picklist2 .list--meta .list--inner .list--content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between
}

.ct-picklist2 .list--meta .list--inner .list--content .list--address {
    padding-bottom: 20px
}

.ct-picklist2 .list--meta .list--inner .list--content .list--time {
    padding-bottom: 19px
}

.ct-picklist2 .list--meta .list--inner .list--content span {
    display: flex;
    width: 100%;
    font-weight: 400
}

.ct-picklist2 .list--meta .list--inner .list--content span i {
    color: #bf2025;
    line-height: inherit;
    margin-right: 10px
}

.ct-picklist2 .list--meta .list--inner .list--content span:hover i {
    -webkit-animation: shakeicon .3s linear 1;
    -khtml-animation: shakeicon .3s linear 1;
    -moz-animation: shakeicon .3s linear 1;
    -ms-animation: shakeicon .3s linear 1;
    -o-animation: shakeicon .3s linear 1;
    animation: shakeicon .3s linear 1
}

@media screen and (max-width:575px) {
    .ct-picklist2 .list--meta .list--inner {
        flex-wrap: wrap
    }

    .ct-picklist2 .list--meta .list--inner .list--image+.list--content {
        width: 100%;
        padding: 20px 0 0
    }
}

.ct-picklist2 .list--meta .list--inner:hover .list--image:before {
    -webkit-animation: overlay_circle .65s;
    -khtml-animation: overlay_circle .65s;
    -moz-animation: overlay_circle .65s;
    -ms-animation: overlay_circle .65s;
    -o-animation: overlay_circle .65s;
    animation: overlay_circle .65s
}

.ct-picklist2 .list--meta .list--inner:hover .list--image img {
    -webkit-filter: brightness(100%) !important;
    -khtml-filter: brightness(100%) !important;
    -moz-filter: brightness(100%) !important;
    -ms-filter: brightness(100%) !important;
    -o-filter: brightness(100%) !important;
    filter: brightness(100%) !important
}

@media screen and (min-width:992px) {
    .ct-picklist2 .os-host-overflow {
        overflow: visible !important
    }

    .ct-picklist2 .os-scrollbar.os-scrollbar-vertical {
        right: -29px
    }

    .ct-picklist2 .os-theme-thick-light>.os-scrollbar {
        padding: 3px 5px
    }

    .ct-picklist2 .os-theme-thick-light>.os-scrollbar:before {
        top: 0;
        bottom: 0
    }
}

.ct-banner-carousel1 {
    background-size: cover
}

.ct-banner-carousel1 .item-inner {
    position: relative;
    display: flex;
    min-height: 560px;
    overflow: hidden
}

.ct-banner-carousel1 .item-inner .item--title {
    color: #bf2025;
    margin-bottom: 28px
}

@media screen and (max-width:991px) {
    .ct-banner-carousel1 .item-inner .item--title {
        margin-bottom: 18px
    }
}

.ct-banner-carousel1 .item-inner .item--description-1 {
    max-width: 385px;
    margin-bottom: 52px;
}

@media screen and (max-width:991px) {
    .ct-banner-carousel1 .item-inner .item--description-1 {
        font-size: 25px;
        margin-bottom: 23px
    }
}

.ct-banner-carousel1 .item-content {
    width: 50%;
    padding: 90px 0 0 40px;
    z-index: 2
}

@media screen and (max-width:767px) {
    .ct-banner-carousel1 .item-content {
        width: 100%;
        padding: 80px 0 0 20px
    }
}

.ct-banner-carousel1 .item--image {
    width: 50%
}

.ct-banner-carousel1 .item--image span {
    position: absolute;
    left: 40%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%
}

@media screen and (max-width:767px) {
    .ct-banner-carousel1 .item--image {
        position: absolute;
        top: auto;
        left: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%
    }

    .ct-banner-carousel1 .item--image span {
        left: auto;
        bottom: 15%;
        right: 0;
        width: 300px;
        height: 300px;
        background-size: cover;
        background-position: 0
    }
}

@media screen and (max-width:575px) {
    .ct-banner-carousel1 .item--image span {
        width: 180px;
        height: 180px
    }
}

.ct-banner-carousel1 .slick-dots {
    position: absolute;
    left: 70px;
    bottom: 55px;
    margin: 0
}

.ct-banner-carousel1 .slick-dots li {
    position: relative
}

.ct-banner-carousel1 .slick-dots li+li {
    margin-left: 16px
}

.ct-banner-carousel1 .slick-dots li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #bf2025;
    z-index: 2;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-banner-carousel1 .slick-dots li button {
    width: 28px;
    height: 2px;
    background-color: #343434;
    -webkit-box-shadow: 0 0 0 1px #262626;
    -khtml-box-shadow: 0 0 0 1px #262626;
    -moz-box-shadow: 0 0 0 1px #262626;
    -ms-box-shadow: 0 0 0 1px #262626;
    -o-box-shadow: 0 0 0 1px #262626;
    box-shadow: 0 0 0 1px #262626
}

.ct-banner-carousel1 .slick-dots li.slick-active:before {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.ct-banner-carousel1 .slick-dots li.slick-active button {
    -webkit-box-shadow: 0 0 0 1px #85441f;
    -khtml-box-shadow: 0 0 0 1px #85441f;
    -moz-box-shadow: 0 0 0 1px #85441f;
    -ms-box-shadow: 0 0 0 1px #85441f;
    -o-box-shadow: 0 0 0 1px #85441f;
    box-shadow: 0 0 0 1px #85441f
}

.ct_product_categories_grid1 .container-custom .wp-meta {
    width: 100%
}

.ct_product_categories_grid1 .container-custom .text-title {
    margin-bottom: 42px
}

@media screen and (max-width:575px) {
    .ct_product_categories_grid1 .container-custom .text-title {
        margin-bottom: 20px
    }
}

.ct_product_categories_grid1.style1 .text-title {
    position: relative;
    padding-bottom: 27px
}

.ct_product_categories_grid1.style1 .text-title:before,
.ct_product_categories_grid1.style1 .text-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct_product_categories_grid1.style1 .text-title:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct_product_categories_grid1.style1:hover .text-title:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct_product_categories_grid1 .item--inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 24px 40px;
    border: 1px solid #343434
}

@media screen and (max-width:575px) {
    .ct_product_categories_grid1 .item--inner {
        padding: 24px 20px
    }
}

.ct_product_categories_grid1 .item--inner:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    border-top: 3px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct_product_categories_grid1 .item--inner:hover:before {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct_product_categories_grid1 .item--title {
    margin-bottom: 0
}

.ct_product_categories_grid1 img {
    width: 110px;
    max-height: 90px;
    object-fit: cover
}

@media screen and (max-width:480px) {
    .ct_product_categories_grid1 img {
        opacity: .5
    }
}

.ct-product-categories-carousel1 .container-custom {
    flex-direction: column;
    text-align: center;
    margin-bottom: 42px;
    padding: 0 25px
}

.ct-product-categories-carousel1 .container-custom .wp-meta {
    width: auto
}

.ct-product-categories-carousel1 .grid-item-inner {
    padding: 75px 40px 37px;
    background-color: #121212
}

.ct-product-categories-carousel1 .grid-item-inner .product-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.ct-product-categories-carousel1 .grid-item-inner .product-thumbnail {
    height: 90px;
    object-fit: cover
}

.ct-product-categories-carousel1 .grid-item-inner .product-thumbnail+.product-title {
    margin-top: 45px
}

.ct-product-categories-carousel1 .grid-item-inner .product-title {
    font-size: 23px;
    line-height: 1.4;
    font-weight: 700
}

.ct-particle-animate {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

@media screen and (max-width:991px) {
    .ct-particle-animate {
        display: none
    }
}

.ct-particle-animate img {
    width: 100% !important;
    height: auto
}

.ct-particle-animate div {
    position: absolute
}

.ct-particle-animate div.top-left {
    top: 0;
    left: 0
}

.ct-particle-animate div.top-right {
    top: 0;
    right: 0
}

.ct-particle-animate div.bottom-left {
    bottom: 0;
    left: 0
}

.ct-particle-animate div.bottom-right {
    bottom: 0;
    right: 0
}

.ct-particle-animate .shape-animate1 {
    animation: animationFramesTwo 12s infinite linear alternate
}

.ct-particle-animate .shape-animate2 {
    animation: animationFramesOne 12s infinite linear alternate
}

.ct-particle-animate .shape-animate3 {
    animation: animationFramesFour 12s infinite linear alternate
}

.ct-particle-animate .shape-animate4 {
    animation: animationFramesThree 12s infinite linear alternate
}

.ct-particle-animate .shape-animate5 {
    animation: animationFramesFive 12s infinite linear alternate
}

.ct-slider-carousel1 .item-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 140px 0 230px
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .item-inner {
        padding: 140px 0
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel1 .item-inner {
        padding: 25px 0 100px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.ct-slider-carousel1 .item-content {
    position: relative;
    max-width: 1360px;
    width: 100%
}

@media screen and (min-width:1200px) {
    .ct-slider-carousel1 .item-content {
        margin: 0 auto
    }
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .item-content {
        width: 45%
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel1 .item-content {
        width: 100%;
        margin-top: 0px
    }
}

.ct-slider-carousel1 .item--holder {
    position: absolute;
    right: 0;
    top: -86px;
    color: transparent;
    font-size: 170px;
    line-height: 1;
    margin-bottom: 0;
    text-stroke-color: #919191;
    -webkit-text-stroke-color: #919191;
    text-stroke-width: 2px;
    -webkit-text-stroke-width: 2px;
    z-index: -1
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .item--holder {
        font-size: 130px;
        left: 0;
        right: auto
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel1 .item--holder {
        position: relative;
        top: 0;
        font-size: 100px
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel1 .item--holder {
        font-size: 80px
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel1 .item--holder {
        display: none
    }
}

.ct-slider-carousel1 .item--title {
    max-width: 50%;
    line-height: 1.106;
    margin-bottom: 20px
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .item--title {
        font-size: 50px;
        line-height: 1.22;
        max-width: 100%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel1 .item--title {
        font-size: 35px
    }
}

.ct-slider-carousel1 .item--description-1 {
    font-weight: 400;
    margin-bottom: 44px;
    max-width: 42%;
    color: #000000b5;
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .item--description-1 {
        max-width: 100%
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel1 .item--description-1 {
        font-size: 16px
    }
}

.ct-slider-carousel1 .item--title,
.ct-slider-carousel1 .item--description,
.ct-slider-carousel1 .item-button {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -khtml-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel1 .item--image {
    position: absolute;
    right: 7%;
    bottom: 0;
    width: 46.6%;
    opacity: 0;
    -webkit-animation: ct-float-two 1.2s ease infinite alternate;
    -khtml-animation: ct-float-two 1.2s ease infinite alternate;
    -moz-animation: ct-float-two 1.2s ease infinite alternate;
    -ms-animation: ct-float-two 1.2s ease infinite alternate;
    -o-animation: ct-float-two 1.2s ease infinite alternate;
    animation: ct-float-two 1.2s ease infinite alternate;
    -webkit-transition: all 300ms ease 2.5s;
    -khtml-transition: all 300ms ease 2.5s;
    -moz-transition: all 300ms ease 2.5s;
    -ms-transition: all 300ms ease 2.5s;
    -o-transition: all 300ms ease 2.5s;
    transition: all 300ms ease 2.5s
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .item--image {
        right: 30px;
        bottom: 25%
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel1 .item--image {
        position: relative;
        width: 70%;
        right: 0;
        bottom: 0
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel1 .item--image {
        width: 100%
    }
}

.ct-slider-carousel1 .item--image .image-left,
.ct-slider-carousel1 .item--image .image-center,
.ct-slider-carousel1 .item--image .image-right {
    width: 100%;
    height: 100%
}

.ct-slider-carousel1 .item--image .image-left img,
.ct-slider-carousel1 .item--image .image-center img,
.ct-slider-carousel1 .item--image .image-right img {
    width: 100%
}

.ct-slider-carousel1 .item--image .image-left,
.ct-slider-carousel1 .item--image .image-right {
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel1 .item--image:hover .image-left,
.ct-slider-carousel1 .item--image.slide-active .image-left,
.ct-slider-carousel1 .item--image:hover .image-right,
.ct-slider-carousel1 .item--image.slide-active .image-right {
    opacity: 1
}

.ct-slider-carousel1 .ct-slider-loader .item-content,
.ct-slider-carousel1 .ct-slider-loader .item--image {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel1 .switch {
    position: relative;
    display: none;
    margin-top: 40px;
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

@media screen and (min-width:992px) {
    .ct-slider-carousel1 .switch {
        -webkit-transform: translateY(40px);
        -khtml-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px)
    }
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel1 .switch.switch-dk {
        display: inline-block
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel1 .switch.switch-dk {
        display: none
    }

    .ct-slider-carousel1 .switch.switch-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 0 40px
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel1 .switch {
        -webkit-transform: scale(.8);
        -khtml-transform: scale(.8);
        -moz-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
        transform: scale(.8)
    }
}

.ct-slider-carousel1 .switch input {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 100;
    cursor: pointer
}

.ct-slider-carousel1 .switch label {
    height: 80px;
    width: 180px;
    background-color: #fff;
    display: block;
    box-shadow: inset 0 0 20px rgb(0 0 0 / 7%), inset 0 0 5px -2px rgb(0 0 0 / 1%);
    -webkit-border-radius: 100px;
    -khtml-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px
}

.ct-slider-carousel1 .switch label .bulb {
    height: 60px;
    width: 60px;
    background-color: #2b2b2b;
    position: relative;
    top: 10px;
    left: 10px;
    display: block;
    -webkit-transition: .7s;
    -khtml-transition: .7s;
    -moz-transition: .7s;
    -ms-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    -webkit-box-shadow: inset 0 0 1px 3px #2b2b2b;
    -khtml-box-shadow: inset 0 0 1px 3px #2b2b2b;
    -moz-box-shadow: inset 0 0 1px 3px #2b2b2b;
    -ms-box-shadow: inset 0 0 1px 3px #2b2b2b;
    -o-box-shadow: inset 0 0 1px 3px #2b2b2b;
    box-shadow: inset 0 0 1px 3px #2b2b2b;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-filter: grayscale(100%);
    -khtml-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%)
}

.ct-slider-carousel1 .switch label .bulb .bulb-center {
    position: absolute;
    display: block;
    height: 36px;
    width: 36px;
    background-color: #5a527b;
    top: 50%;
    left: 50%;
    transition: .7s;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 4px #635a84;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%
}

.ct-slider-carousel1 .switch label .bulb .bulb-center:after {
    content: "";
    display: block;
    height: 14px;
    width: 14px;
    background-color: #7b7394;
    border-radius: 50%;
    position: absolute;
    transition: .7s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 2px 4px #524a73
}

.ct-slider-carousel1 .switch label .bulb .filament-1,
.ct-slider-carousel1 .switch label .bulb .filament-2 {
    position: absolute;
    display: block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%)rotate(-45deg)
}

.ct-slider-carousel1 .switch label .bulb .filament-1:after,
.ct-slider-carousel1 .switch label .bulb .filament-2:after,
.ct-slider-carousel1 .switch label .bulb .filament-1:before,
.ct-slider-carousel1 .switch label .bulb .filament-2:before {
    content: "";
    display: block;
    height: 6px;
    width: 17px;
    border-radius: 50%;
    position: absolute;
    transition: .7s;
    top: -4px;
    left: -2px;
    transform: rotate(-10deg)
}

.ct-slider-carousel1 .switch label .bulb .filament-1:before,
.ct-slider-carousel1 .switch label .bulb .filament-2:before {
    left: 15px;
    transform: rotate(10deg)
}

.ct-slider-carousel1 .switch label .bulb .filament-2 {
    transform: translate(-50%, -50%)rotate(45deg) !important
}

.ct-slider-carousel1 .reflections {
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    z-index: 90;
    perspective: 70px
}

.ct-slider-carousel1 .reflections span {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-image: linear-gradient(-135deg, transparent 10%, rgba(255, 255, 255, .3));
    position: absolute;
    left: -40px;
    bottom: -45px
}

.ct-slider-carousel1 .reflections span:after {
    content: "";
    display: block;
    height: 35px;
    width: 20px;
    position: absolute;
    top: -36px;
    right: -40px;
    border-radius: 50%;
    box-shadow: 4px -2px 0 -3px rgba(255, 255, 255, .4);
    filter: blur(1px);
    transform: rotate(-10deg)
}

.ct-slider-carousel1 .reflections:after {
    content: "";
    display: block;
    height: 80px;
    width: 50px;
    background-image: linear-gradient(80deg, rgba(255, 255, 255, 5%) 45%, rgba(255, 255, 255, .5));
    border-radius: 10% 20% 50% 30%/30% 60% 30% 40%;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(-25deg)rotate(-35deg)skewx(-15deg)translate(10px, -20px);
    top: -8px;
    left: -5px
}

.ct-slider-carousel1 .reflections:before {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 30px;
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .15));
    bottom: 10px;
    right: 0;
    transform: rotate(45deg)
}

.ct-slider-carousel1 .sparks .spark1,
.ct-slider-carousel1 .sparks .spark2,
.ct-slider-carousel1 .sparks .spark3,
.ct-slider-carousel1 .sparks .spark4 {
    display: block;
    border-radius: 50%;
    position: absolute;
    opacity: 0
}

.ct-slider-carousel1 .sparks .spark1 {
    height: 1px;
    width: 1px;
    background-color: #000;
    right: 5px;
    bottom: 10px;
    transition: .4s
}

.ct-slider-carousel1 .sparks .spark2 {
    height: 3px;
    width: 3px;
    background-color: #000;
    right: 10px;
    bottom: 55px;
    transition: .4s
}

.ct-slider-carousel1 .sparks .spark3 {
    height: 3px;
    width: 3px;
    background-color: #000;
    left: 10px;
    bottom: 55px;
    transition: .4s
}

.ct-slider-carousel1 .sparks .spark4 {
    height: 3px;
    width: 3px;
    background-color: #000;
    left: 10px;
    bottom: 10px;
    transition: .4s
}

.ct-slider-carousel1 .switch input:checked~label .bulb {
    left: 110px;
    background-color: #a7694a;
    box-shadow: inset 0 0 1px 3px #a56758, inset 0 0 6px 8px #6b454f, 0 20px 30px -10px rgba(0, 0, 0, .4), 0 0 30px 30px rgba(253, 184, 67, .1)
}

.ct-slider-carousel1 .switch input:checked~label .bulb>.bulb-center {
    background-color: #feed6b;
    box-shadow: inset 0 0 0 4px #fdec6a, 0 0 12px 10px #bca83c, 0 0 20px 14px #a1664a
}

.ct-slider-carousel1 .switch input:checked~label .bulb>.bulb-center:after {
    background-color: #fef401;
    box-shadow: 0 0 2px 4px #fdb843
}

.switch input:checked~label .bulb>.ct-slider-carousel1.filament-1:before,
.switch input:checked~label .bulb>.ct-slider-carousel1.filament-2:before,
.switch input:checked~label .bulb>.ct-slider-carousel1.filament-1:after,
.switch input:checked~label .bulb>.ct-slider-carousel1.filament-2:after {
    border-color: #fef4d5
}

.ct-slider-carousel1 .switch input:checked~label .bulb>.sparks .spark1 {
    height: 1px;
    width: 1px;
    animation: spark1 2s ease-in-out;
    animation-delay: .4s
}

.ct-slider-carousel1 .switch input:checked~label .bulb>.sparks .spark2 {
    height: 1px;
    width: 1px;
    animation: spark2 2.4s ease-in-out;
    animation-delay: .4s
}

.ct-slider-carousel1 .switch input:checked~label .bulb>.sparks .spark3 {
    height: 1px;
    width: 1px;
    animation: spark3 2s ease-in-out;
    animation-delay: .9s
}

.ct-slider-carousel1 .switch input:checked~label .bulb>.sparks .spark4 {
    height: 1px;
    width: 1px;
    animation: spark4 1.7s ease-in-out;
    animation-delay: .9s
}

.ct-slider-carousel1 .slick-active .item--image {
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel1 .slick-active .item--holder {
    -webkit-animation: ct_fadeInRight .8s linear 1 2.2s;
    -khtml-animation: ct_fadeInRight .8s linear 1 2.2s;
    -moz-animation: ct_fadeInRight .8s linear 1 2.2s;
    -ms-animation: ct_fadeInRight .8s linear 1 2.2s;
    -o-animation: ct_fadeInRight .8s linear 1 2.2s;
    animation: ct_fadeInRight .8s linear 1 2.2s
}

.ct-slider-carousel1 .slick-active .item--title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    -khtml-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms
}

.ct-slider-carousel1 .slick-active .item--description {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -khtml-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms
}

.ct-slider-carousel1 .slick-active .item-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

@media screen and (min-width:992px) {
    .ct-slider-carousel1 .slick-active .switch {
        opacity: 1;
        -webkit-transform: translateY(0);
        -khtml-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 700ms;
        -khtml-transition-delay: 700ms;
        -moz-transition-delay: 700ms;
        -ms-transition-delay: 700ms;
        -o-transition-delay: 700ms;
        transition-delay: 700ms
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel1 .slick-active .switch {
        opacity: 1;
        -webkit-transition-delay: 500ms;
        -khtml-transition-delay: 500ms;
        -moz-transition-delay: 500ms;
        -ms-transition-delay: 500ms;
        -o-transition-delay: 500ms;
        transition-delay: 500ms
    }
}

.ct-slider-carousel1 .slick-active .ct-slider-loader .item--holder {
    -webkit-animation: ct_fadeInRight .8s linear 1 .2s;
    -khtml-animation: ct_fadeInRight .8s linear 1 .2s;
    -moz-animation: ct_fadeInRight .8s linear 1 .2s;
    -ms-animation: ct_fadeInRight .8s linear 1 .2s;
    -o-animation: ct_fadeInRight .8s linear 1 .2s;
    animation: ct_fadeInRight .8s linear 1 .2s
}

.ct-slider-carousel1 .slick-active .ct-slider-loader .item--title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    /* -webkit-transition-delay: 100ms;
    -khtml-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms */
}

.ct-slider-carousel1 .slick-active .ct-slider-loader .item--description {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    /* -webkit-transition-delay: 300ms;
    -khtml-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms; */
    color: #000000b5 !important;
}

.ct-slider-carousel1 .slick-active .ct-slider-loader .item-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel2 {
    cursor: grab
}

.ct-slider-carousel2 .ct-slick-dots {
    display: flex;
    align-items: center
}

.ct-slider-carousel2 .slick-count {
    display: inline-block;
    margin-left: 40px;
    font-size: 16px;
    font-weight: 700;
    min-width: 28px;
    color: #c2c2c2;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .slick-count {
        margin-left: 15px
    }
}

.ct-slider-carousel2 .slick-dots {
    display: inline-flex;
    margin: 0 0 0 10px
}

.ct-slider-carousel2 .slick-dots li {
    position: relative;
    margin: 0 10px
}

.ct-slider-carousel2 .slick-dots li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #bf2025;
    z-index: 2;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-slider-carousel2 .slick-dots li button {
    width: 30px;
    height: 3px;
    background-color: #343434
}

.ct-slider-carousel2 .slick-dots li.slick-active:before {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.ct-slider-carousel2 .slick-dots li.slick-active button {
    background-color: #bf2025
}

.ct-slider-carousel2 .ct-carousel-inner {
    margin: 20px 0 30px
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .ct-carousel-inner {
        margin: 90px 0
    }
}

.ct-slider-carousel2 .item-inner {
    display: flex;
    align-items: center
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .item-inner {
        flex-wrap: wrap
    }
}

@media(min-width:576px) and (max-width:991px) {
    .ct-slider-carousel2 .item--heading {
        order: 1
    }

    .ct-slider-carousel2 .item--content {
        order: 2
    }

    .ct-slider-carousel2 .item--image {
        order: 3
    }
}

.ct-slider-carousel2 .item--heading {
    width: 30%;
    align-self: flex-start;
    margin-top: 65px
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .item--heading {
        width: 100%;
        margin: 0 0 30px
    }
}

.ct-slider-carousel2 .item--image {
    width: 30%
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .item--image {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel2 .item--image {
        width: 100%;
        margin: 0
    }
}

.ct-slider-carousel2 .item--content {
    width: 40%
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .item--content {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel2 .item--content {
        width: 100%
    }
}

.ct-slider-carousel2 .left--title {
    margin: 0 0 0 25px
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .left--title {
        margin: 0
    }
}

.ct-slider-carousel2 .item--inner {
    margin: 45px 30% 33px 20%
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .item--inner {
        margin: 40px 0 50px
    }
}

.ct-slider-carousel2 .item--sub-title {
    font-size: 14px;
    margin-bottom: 6px
}

.ct-slider-carousel2 .item--title {
    margin-bottom: 11px
}

.ct-slider-carousel2 .item--description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2857;
    color: #0000;
    margin-bottom: 23px
}

.ct-slider-carousel2 .item--price {
    margin-bottom: 41px
}

@media screen and (max-width:991px) {
    .ct-slider-carousel2 .item--price {
        margin-bottom: 30px
    }
}

.ct-slider-carousel3 .slick-list {
    overflow: visible
}

.ct-slider-carousel3 .item-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 590px
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .item-inner {
        min-height: 530px
    }
}

.ct-slider-carousel3 .item--holder {
    position: absolute;
    left: -11.2%;
    top: -85px;
    color: transparent;
    font-size: 170px;
    line-height: 1;
    margin-bottom: 0;
    opacity: 0;
    text-stroke-color: #242424;
    -webkit-text-stroke-color: #242424;
    text-stroke-width: 2px;
    -webkit-text-stroke-width: 2px;
    z-index: -1;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

@media screen and (max-width:1600px) {
    .ct-slider-carousel3 .item--holder {
        left: 0
    }
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel3 .item--holder {
        font-size: 130px;
        top: -62px
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel3 .item--holder {
        font-size: 100px
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel3 .item--holder {
        font-size: 80px
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .item--holder {
        display: none
    }
}

.ct-slider-carousel3 .item--title {
    max-width: 95%;
    line-height: 1.106;
    margin-bottom: 17px
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel3 .item--title {
        font-size: 50px;
        line-height: 1.22
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel3 .item--title {
        max-width: 100%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .item--title {
        font-size: 35px
    }
}

.ct-slider-carousel3 .item--description {
    font-weight: 400;
    margin-bottom: 52px;
    max-width: 55%
}

@media screen and (max-width:991px) {
    .ct-slider-carousel3 .item--description {
        max-width: 100%
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel3 .item--description {
        font-size: 16px;
        margin-bottom: 40px
    }
}

.ct-slider-carousel3 .item--title,
.ct-slider-carousel3 .item--description,
.ct-slider-carousel3 .item-button {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -khtml-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel3 .item--image {
    position: absolute;
    right: 30px;
    bottom: 57px;
    width: 72.3%;
    opacity: 0;
    -webkit-transition: all 300ms ease 2.5s;
    -khtml-transition: all 300ms ease 2.5s;
    -moz-transition: all 300ms ease 2.5s;
    -ms-transition: all 300ms ease 2.5s;
    -o-transition: all 300ms ease 2.5s;
    transition: all 300ms ease 2.5s
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .item--image {
        right: 0;
        width: 100%
    }
}

.ct-slider-carousel3 .ct-item--particle {
    position: absolute
}

.ct-slider-carousel3 .ct-item--particle .item--dot {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -khtml-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .ct-item--particle .item--dot {
        width: 20px;
        height: 20px
    }
}

.ct-slider-carousel3 .ct-item--particle .item--dot:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: #bf2025;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .ct-item--particle .item--dot:before {
        width: 5px;
        height: 5px
    }
}

.ct-slider-carousel3 .ct-item--particle .item--dot:after {
    content: '';
    background-color: #161616;
    opacity: .4
}

.ct-slider-carousel3 .ct-item--particle .item--dot:hover+.item--content {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0)
}

.ct-slider-carousel3 .ct-item--particle .item--content {
    position: relative;
    display: block;
    background-color: #bf2025;
    left: -100%;
    padding: 9px 16px;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    -webkit-transform: translateY(30px);
    -khtml-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

@media screen and (max-width:575px) {
    .ct-slider-carousel3 .ct-item--particle .item--content {
        left: -50%;
        font-size: 12px;
        padding: 5px;
        -webkit-transform: translateY(20px);
        -khtml-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px)
    }
}

.ct-slider-carousel3 .ct-slider-loader .item-content,
.ct-slider-carousel3 .ct-slider-loader .item--image {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel3.visible .item--image {
    -webkit-animation: ct-float-two 1.2s ease 2 alternate;
    -khtml-animation: ct-float-two 1.2s ease 2 alternate;
    -moz-animation: ct-float-two 1.2s ease 2 alternate;
    -ms-animation: ct-float-two 1.2s ease 2 alternate;
    -o-animation: ct-float-two 1.2s ease 2 alternate;
    animation: ct-float-two 1.2s ease 2 alternate
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(2) .item--dot {
    -webkit-transition-delay: .2s;
    -khtml-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -ms-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(3) .item--dot {
    -webkit-transition-delay: .4s;
    -khtml-transition-delay: .4s;
    -moz-transition-delay: .4s;
    -ms-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(4) .item--dot {
    -webkit-transition-delay: .6s;
    -khtml-transition-delay: .6s;
    -moz-transition-delay: .6s;
    -ms-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(5) .item--dot {
    -webkit-transition-delay: .8s;
    -khtml-transition-delay: .8s;
    -moz-transition-delay: .8s;
    -ms-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(6) .item--dot {
    -webkit-transition-delay: 1s;
    -khtml-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -ms-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(7) .item--dot {
    -webkit-transition-delay: 1.2s;
    -khtml-transition-delay: 1.2s;
    -moz-transition-delay: 1.2s;
    -ms-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(8) .item--dot {
    -webkit-transition-delay: 1.4s;
    -khtml-transition-delay: 1.4s;
    -moz-transition-delay: 1.4s;
    -ms-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(9) .item--dot {
    -webkit-transition-delay: 1.6s;
    -khtml-transition-delay: 1.6s;
    -moz-transition-delay: 1.6s;
    -ms-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    transition-delay: 1.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(10) .item--dot {
    -webkit-transition-delay: 1.8s;
    -khtml-transition-delay: 1.8s;
    -moz-transition-delay: 1.8s;
    -ms-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(11) .item--dot {
    -webkit-transition-delay: 2s;
    -khtml-transition-delay: 2s;
    -moz-transition-delay: 2s;
    -ms-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(12) .item--dot {
    -webkit-transition-delay: 2.2s;
    -khtml-transition-delay: 2.2s;
    -moz-transition-delay: 2.2s;
    -ms-transition-delay: 2.2s;
    -o-transition-delay: 2.2s;
    transition-delay: 2.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(13) .item--dot {
    -webkit-transition-delay: 2.4s;
    -khtml-transition-delay: 2.4s;
    -moz-transition-delay: 2.4s;
    -ms-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(14) .item--dot {
    -webkit-transition-delay: 2.6s;
    -khtml-transition-delay: 2.6s;
    -moz-transition-delay: 2.6s;
    -ms-transition-delay: 2.6s;
    -o-transition-delay: 2.6s;
    transition-delay: 2.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(15) .item--dot {
    -webkit-transition-delay: 2.8s;
    -khtml-transition-delay: 2.8s;
    -moz-transition-delay: 2.8s;
    -ms-transition-delay: 2.8s;
    -o-transition-delay: 2.8s;
    transition-delay: 2.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(16) .item--dot {
    -webkit-transition-delay: 3s;
    -khtml-transition-delay: 3s;
    -moz-transition-delay: 3s;
    -ms-transition-delay: 3s;
    -o-transition-delay: 3s;
    transition-delay: 3s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(17) .item--dot {
    -webkit-transition-delay: 3.2s;
    -khtml-transition-delay: 3.2s;
    -moz-transition-delay: 3.2s;
    -ms-transition-delay: 3.2s;
    -o-transition-delay: 3.2s;
    transition-delay: 3.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(18) .item--dot {
    -webkit-transition-delay: 3.4s;
    -khtml-transition-delay: 3.4s;
    -moz-transition-delay: 3.4s;
    -ms-transition-delay: 3.4s;
    -o-transition-delay: 3.4s;
    transition-delay: 3.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(19) .item--dot {
    -webkit-transition-delay: 3.6s;
    -khtml-transition-delay: 3.6s;
    -moz-transition-delay: 3.6s;
    -ms-transition-delay: 3.6s;
    -o-transition-delay: 3.6s;
    transition-delay: 3.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(20) .item--dot {
    -webkit-transition-delay: 3.8s;
    -khtml-transition-delay: 3.8s;
    -moz-transition-delay: 3.8s;
    -ms-transition-delay: 3.8s;
    -o-transition-delay: 3.8s;
    transition-delay: 3.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(21) .item--dot {
    -webkit-transition-delay: 4s;
    -khtml-transition-delay: 4s;
    -moz-transition-delay: 4s;
    -ms-transition-delay: 4s;
    -o-transition-delay: 4s;
    transition-delay: 4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(22) .item--dot {
    -webkit-transition-delay: 4.2s;
    -khtml-transition-delay: 4.2s;
    -moz-transition-delay: 4.2s;
    -ms-transition-delay: 4.2s;
    -o-transition-delay: 4.2s;
    transition-delay: 4.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(23) .item--dot {
    -webkit-transition-delay: 4.4s;
    -khtml-transition-delay: 4.4s;
    -moz-transition-delay: 4.4s;
    -ms-transition-delay: 4.4s;
    -o-transition-delay: 4.4s;
    transition-delay: 4.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(24) .item--dot {
    -webkit-transition-delay: 4.6s;
    -khtml-transition-delay: 4.6s;
    -moz-transition-delay: 4.6s;
    -ms-transition-delay: 4.6s;
    -o-transition-delay: 4.6s;
    transition-delay: 4.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(25) .item--dot {
    -webkit-transition-delay: 4.8s;
    -khtml-transition-delay: 4.8s;
    -moz-transition-delay: 4.8s;
    -ms-transition-delay: 4.8s;
    -o-transition-delay: 4.8s;
    transition-delay: 4.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(26) .item--dot {
    -webkit-transition-delay: 5s;
    -khtml-transition-delay: 5s;
    -moz-transition-delay: 5s;
    -ms-transition-delay: 5s;
    -o-transition-delay: 5s;
    transition-delay: 5s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(27) .item--dot {
    -webkit-transition-delay: 5.2s;
    -khtml-transition-delay: 5.2s;
    -moz-transition-delay: 5.2s;
    -ms-transition-delay: 5.2s;
    -o-transition-delay: 5.2s;
    transition-delay: 5.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(28) .item--dot {
    -webkit-transition-delay: 5.4s;
    -khtml-transition-delay: 5.4s;
    -moz-transition-delay: 5.4s;
    -ms-transition-delay: 5.4s;
    -o-transition-delay: 5.4s;
    transition-delay: 5.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(29) .item--dot {
    -webkit-transition-delay: 5.6s;
    -khtml-transition-delay: 5.6s;
    -moz-transition-delay: 5.6s;
    -ms-transition-delay: 5.6s;
    -o-transition-delay: 5.6s;
    transition-delay: 5.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(30) .item--dot {
    -webkit-transition-delay: 5.8s;
    -khtml-transition-delay: 5.8s;
    -moz-transition-delay: 5.8s;
    -ms-transition-delay: 5.8s;
    -o-transition-delay: 5.8s;
    transition-delay: 5.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(31) .item--dot {
    -webkit-transition-delay: 6s;
    -khtml-transition-delay: 6s;
    -moz-transition-delay: 6s;
    -ms-transition-delay: 6s;
    -o-transition-delay: 6s;
    transition-delay: 6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(32) .item--dot {
    -webkit-transition-delay: 6.2s;
    -khtml-transition-delay: 6.2s;
    -moz-transition-delay: 6.2s;
    -ms-transition-delay: 6.2s;
    -o-transition-delay: 6.2s;
    transition-delay: 6.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(33) .item--dot {
    -webkit-transition-delay: 6.4s;
    -khtml-transition-delay: 6.4s;
    -moz-transition-delay: 6.4s;
    -ms-transition-delay: 6.4s;
    -o-transition-delay: 6.4s;
    transition-delay: 6.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(34) .item--dot {
    -webkit-transition-delay: 6.6s;
    -khtml-transition-delay: 6.6s;
    -moz-transition-delay: 6.6s;
    -ms-transition-delay: 6.6s;
    -o-transition-delay: 6.6s;
    transition-delay: 6.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(35) .item--dot {
    -webkit-transition-delay: 6.8s;
    -khtml-transition-delay: 6.8s;
    -moz-transition-delay: 6.8s;
    -ms-transition-delay: 6.8s;
    -o-transition-delay: 6.8s;
    transition-delay: 6.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(36) .item--dot {
    -webkit-transition-delay: 7s;
    -khtml-transition-delay: 7s;
    -moz-transition-delay: 7s;
    -ms-transition-delay: 7s;
    -o-transition-delay: 7s;
    transition-delay: 7s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(37) .item--dot {
    -webkit-transition-delay: 7.2s;
    -khtml-transition-delay: 7.2s;
    -moz-transition-delay: 7.2s;
    -ms-transition-delay: 7.2s;
    -o-transition-delay: 7.2s;
    transition-delay: 7.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(38) .item--dot {
    -webkit-transition-delay: 7.4s;
    -khtml-transition-delay: 7.4s;
    -moz-transition-delay: 7.4s;
    -ms-transition-delay: 7.4s;
    -o-transition-delay: 7.4s;
    transition-delay: 7.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(39) .item--dot {
    -webkit-transition-delay: 7.6s;
    -khtml-transition-delay: 7.6s;
    -moz-transition-delay: 7.6s;
    -ms-transition-delay: 7.6s;
    -o-transition-delay: 7.6s;
    transition-delay: 7.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(40) .item--dot {
    -webkit-transition-delay: 7.8s;
    -khtml-transition-delay: 7.8s;
    -moz-transition-delay: 7.8s;
    -ms-transition-delay: 7.8s;
    -o-transition-delay: 7.8s;
    transition-delay: 7.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(41) .item--dot {
    -webkit-transition-delay: 8s;
    -khtml-transition-delay: 8s;
    -moz-transition-delay: 8s;
    -ms-transition-delay: 8s;
    -o-transition-delay: 8s;
    transition-delay: 8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(42) .item--dot {
    -webkit-transition-delay: 8.2s;
    -khtml-transition-delay: 8.2s;
    -moz-transition-delay: 8.2s;
    -ms-transition-delay: 8.2s;
    -o-transition-delay: 8.2s;
    transition-delay: 8.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(43) .item--dot {
    -webkit-transition-delay: 8.4s;
    -khtml-transition-delay: 8.4s;
    -moz-transition-delay: 8.4s;
    -ms-transition-delay: 8.4s;
    -o-transition-delay: 8.4s;
    transition-delay: 8.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(44) .item--dot {
    -webkit-transition-delay: 8.6s;
    -khtml-transition-delay: 8.6s;
    -moz-transition-delay: 8.6s;
    -ms-transition-delay: 8.6s;
    -o-transition-delay: 8.6s;
    transition-delay: 8.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(45) .item--dot {
    -webkit-transition-delay: 8.8s;
    -khtml-transition-delay: 8.8s;
    -moz-transition-delay: 8.8s;
    -ms-transition-delay: 8.8s;
    -o-transition-delay: 8.8s;
    transition-delay: 8.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(46) .item--dot {
    -webkit-transition-delay: 9s;
    -khtml-transition-delay: 9s;
    -moz-transition-delay: 9s;
    -ms-transition-delay: 9s;
    -o-transition-delay: 9s;
    transition-delay: 9s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(47) .item--dot {
    -webkit-transition-delay: 9.2s;
    -khtml-transition-delay: 9.2s;
    -moz-transition-delay: 9.2s;
    -ms-transition-delay: 9.2s;
    -o-transition-delay: 9.2s;
    transition-delay: 9.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(48) .item--dot {
    -webkit-transition-delay: 9.4s;
    -khtml-transition-delay: 9.4s;
    -moz-transition-delay: 9.4s;
    -ms-transition-delay: 9.4s;
    -o-transition-delay: 9.4s;
    transition-delay: 9.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(49) .item--dot {
    -webkit-transition-delay: 9.6s;
    -khtml-transition-delay: 9.6s;
    -moz-transition-delay: 9.6s;
    -ms-transition-delay: 9.6s;
    -o-transition-delay: 9.6s;
    transition-delay: 9.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(50) .item--dot {
    -webkit-transition-delay: 9.8s;
    -khtml-transition-delay: 9.8s;
    -moz-transition-delay: 9.8s;
    -ms-transition-delay: 9.8s;
    -o-transition-delay: 9.8s;
    transition-delay: 9.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(51) .item--dot {
    -webkit-transition-delay: 10s;
    -khtml-transition-delay: 10s;
    -moz-transition-delay: 10s;
    -ms-transition-delay: 10s;
    -o-transition-delay: 10s;
    transition-delay: 10s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(52) .item--dot {
    -webkit-transition-delay: 10.2s;
    -khtml-transition-delay: 10.2s;
    -moz-transition-delay: 10.2s;
    -ms-transition-delay: 10.2s;
    -o-transition-delay: 10.2s;
    transition-delay: 10.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(53) .item--dot {
    -webkit-transition-delay: 10.4s;
    -khtml-transition-delay: 10.4s;
    -moz-transition-delay: 10.4s;
    -ms-transition-delay: 10.4s;
    -o-transition-delay: 10.4s;
    transition-delay: 10.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(54) .item--dot {
    -webkit-transition-delay: 10.6s;
    -khtml-transition-delay: 10.6s;
    -moz-transition-delay: 10.6s;
    -ms-transition-delay: 10.6s;
    -o-transition-delay: 10.6s;
    transition-delay: 10.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(55) .item--dot {
    -webkit-transition-delay: 10.8s;
    -khtml-transition-delay: 10.8s;
    -moz-transition-delay: 10.8s;
    -ms-transition-delay: 10.8s;
    -o-transition-delay: 10.8s;
    transition-delay: 10.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(56) .item--dot {
    -webkit-transition-delay: 11s;
    -khtml-transition-delay: 11s;
    -moz-transition-delay: 11s;
    -ms-transition-delay: 11s;
    -o-transition-delay: 11s;
    transition-delay: 11s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(57) .item--dot {
    -webkit-transition-delay: 11.2s;
    -khtml-transition-delay: 11.2s;
    -moz-transition-delay: 11.2s;
    -ms-transition-delay: 11.2s;
    -o-transition-delay: 11.2s;
    transition-delay: 11.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(58) .item--dot {
    -webkit-transition-delay: 11.4s;
    -khtml-transition-delay: 11.4s;
    -moz-transition-delay: 11.4s;
    -ms-transition-delay: 11.4s;
    -o-transition-delay: 11.4s;
    transition-delay: 11.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(59) .item--dot {
    -webkit-transition-delay: 11.6s;
    -khtml-transition-delay: 11.6s;
    -moz-transition-delay: 11.6s;
    -ms-transition-delay: 11.6s;
    -o-transition-delay: 11.6s;
    transition-delay: 11.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(60) .item--dot {
    -webkit-transition-delay: 11.8s;
    -khtml-transition-delay: 11.8s;
    -moz-transition-delay: 11.8s;
    -ms-transition-delay: 11.8s;
    -o-transition-delay: 11.8s;
    transition-delay: 11.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(61) .item--dot {
    -webkit-transition-delay: 12s;
    -khtml-transition-delay: 12s;
    -moz-transition-delay: 12s;
    -ms-transition-delay: 12s;
    -o-transition-delay: 12s;
    transition-delay: 12s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(62) .item--dot {
    -webkit-transition-delay: 12.2s;
    -khtml-transition-delay: 12.2s;
    -moz-transition-delay: 12.2s;
    -ms-transition-delay: 12.2s;
    -o-transition-delay: 12.2s;
    transition-delay: 12.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(63) .item--dot {
    -webkit-transition-delay: 12.4s;
    -khtml-transition-delay: 12.4s;
    -moz-transition-delay: 12.4s;
    -ms-transition-delay: 12.4s;
    -o-transition-delay: 12.4s;
    transition-delay: 12.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(64) .item--dot {
    -webkit-transition-delay: 12.6s;
    -khtml-transition-delay: 12.6s;
    -moz-transition-delay: 12.6s;
    -ms-transition-delay: 12.6s;
    -o-transition-delay: 12.6s;
    transition-delay: 12.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(65) .item--dot {
    -webkit-transition-delay: 12.8s;
    -khtml-transition-delay: 12.8s;
    -moz-transition-delay: 12.8s;
    -ms-transition-delay: 12.8s;
    -o-transition-delay: 12.8s;
    transition-delay: 12.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(66) .item--dot {
    -webkit-transition-delay: 13s;
    -khtml-transition-delay: 13s;
    -moz-transition-delay: 13s;
    -ms-transition-delay: 13s;
    -o-transition-delay: 13s;
    transition-delay: 13s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(67) .item--dot {
    -webkit-transition-delay: 13.2s;
    -khtml-transition-delay: 13.2s;
    -moz-transition-delay: 13.2s;
    -ms-transition-delay: 13.2s;
    -o-transition-delay: 13.2s;
    transition-delay: 13.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(68) .item--dot {
    -webkit-transition-delay: 13.4s;
    -khtml-transition-delay: 13.4s;
    -moz-transition-delay: 13.4s;
    -ms-transition-delay: 13.4s;
    -o-transition-delay: 13.4s;
    transition-delay: 13.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(69) .item--dot {
    -webkit-transition-delay: 13.6s;
    -khtml-transition-delay: 13.6s;
    -moz-transition-delay: 13.6s;
    -ms-transition-delay: 13.6s;
    -o-transition-delay: 13.6s;
    transition-delay: 13.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(70) .item--dot {
    -webkit-transition-delay: 13.8s;
    -khtml-transition-delay: 13.8s;
    -moz-transition-delay: 13.8s;
    -ms-transition-delay: 13.8s;
    -o-transition-delay: 13.8s;
    transition-delay: 13.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(71) .item--dot {
    -webkit-transition-delay: 14s;
    -khtml-transition-delay: 14s;
    -moz-transition-delay: 14s;
    -ms-transition-delay: 14s;
    -o-transition-delay: 14s;
    transition-delay: 14s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(72) .item--dot {
    -webkit-transition-delay: 14.2s;
    -khtml-transition-delay: 14.2s;
    -moz-transition-delay: 14.2s;
    -ms-transition-delay: 14.2s;
    -o-transition-delay: 14.2s;
    transition-delay: 14.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(73) .item--dot {
    -webkit-transition-delay: 14.4s;
    -khtml-transition-delay: 14.4s;
    -moz-transition-delay: 14.4s;
    -ms-transition-delay: 14.4s;
    -o-transition-delay: 14.4s;
    transition-delay: 14.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(74) .item--dot {
    -webkit-transition-delay: 14.6s;
    -khtml-transition-delay: 14.6s;
    -moz-transition-delay: 14.6s;
    -ms-transition-delay: 14.6s;
    -o-transition-delay: 14.6s;
    transition-delay: 14.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(75) .item--dot {
    -webkit-transition-delay: 14.8s;
    -khtml-transition-delay: 14.8s;
    -moz-transition-delay: 14.8s;
    -ms-transition-delay: 14.8s;
    -o-transition-delay: 14.8s;
    transition-delay: 14.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(76) .item--dot {
    -webkit-transition-delay: 15s;
    -khtml-transition-delay: 15s;
    -moz-transition-delay: 15s;
    -ms-transition-delay: 15s;
    -o-transition-delay: 15s;
    transition-delay: 15s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(77) .item--dot {
    -webkit-transition-delay: 15.2s;
    -khtml-transition-delay: 15.2s;
    -moz-transition-delay: 15.2s;
    -ms-transition-delay: 15.2s;
    -o-transition-delay: 15.2s;
    transition-delay: 15.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(78) .item--dot {
    -webkit-transition-delay: 15.4s;
    -khtml-transition-delay: 15.4s;
    -moz-transition-delay: 15.4s;
    -ms-transition-delay: 15.4s;
    -o-transition-delay: 15.4s;
    transition-delay: 15.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(79) .item--dot {
    -webkit-transition-delay: 15.6s;
    -khtml-transition-delay: 15.6s;
    -moz-transition-delay: 15.6s;
    -ms-transition-delay: 15.6s;
    -o-transition-delay: 15.6s;
    transition-delay: 15.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(80) .item--dot {
    -webkit-transition-delay: 15.8s;
    -khtml-transition-delay: 15.8s;
    -moz-transition-delay: 15.8s;
    -ms-transition-delay: 15.8s;
    -o-transition-delay: 15.8s;
    transition-delay: 15.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(81) .item--dot {
    -webkit-transition-delay: 16s;
    -khtml-transition-delay: 16s;
    -moz-transition-delay: 16s;
    -ms-transition-delay: 16s;
    -o-transition-delay: 16s;
    transition-delay: 16s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(82) .item--dot {
    -webkit-transition-delay: 16.2s;
    -khtml-transition-delay: 16.2s;
    -moz-transition-delay: 16.2s;
    -ms-transition-delay: 16.2s;
    -o-transition-delay: 16.2s;
    transition-delay: 16.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(83) .item--dot {
    -webkit-transition-delay: 16.4s;
    -khtml-transition-delay: 16.4s;
    -moz-transition-delay: 16.4s;
    -ms-transition-delay: 16.4s;
    -o-transition-delay: 16.4s;
    transition-delay: 16.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(84) .item--dot {
    -webkit-transition-delay: 16.6s;
    -khtml-transition-delay: 16.6s;
    -moz-transition-delay: 16.6s;
    -ms-transition-delay: 16.6s;
    -o-transition-delay: 16.6s;
    transition-delay: 16.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(85) .item--dot {
    -webkit-transition-delay: 16.8s;
    -khtml-transition-delay: 16.8s;
    -moz-transition-delay: 16.8s;
    -ms-transition-delay: 16.8s;
    -o-transition-delay: 16.8s;
    transition-delay: 16.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(86) .item--dot {
    -webkit-transition-delay: 17s;
    -khtml-transition-delay: 17s;
    -moz-transition-delay: 17s;
    -ms-transition-delay: 17s;
    -o-transition-delay: 17s;
    transition-delay: 17s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(87) .item--dot {
    -webkit-transition-delay: 17.2s;
    -khtml-transition-delay: 17.2s;
    -moz-transition-delay: 17.2s;
    -ms-transition-delay: 17.2s;
    -o-transition-delay: 17.2s;
    transition-delay: 17.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(88) .item--dot {
    -webkit-transition-delay: 17.4s;
    -khtml-transition-delay: 17.4s;
    -moz-transition-delay: 17.4s;
    -ms-transition-delay: 17.4s;
    -o-transition-delay: 17.4s;
    transition-delay: 17.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(89) .item--dot {
    -webkit-transition-delay: 17.6s;
    -khtml-transition-delay: 17.6s;
    -moz-transition-delay: 17.6s;
    -ms-transition-delay: 17.6s;
    -o-transition-delay: 17.6s;
    transition-delay: 17.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(90) .item--dot {
    -webkit-transition-delay: 17.8s;
    -khtml-transition-delay: 17.8s;
    -moz-transition-delay: 17.8s;
    -ms-transition-delay: 17.8s;
    -o-transition-delay: 17.8s;
    transition-delay: 17.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(91) .item--dot {
    -webkit-transition-delay: 18s;
    -khtml-transition-delay: 18s;
    -moz-transition-delay: 18s;
    -ms-transition-delay: 18s;
    -o-transition-delay: 18s;
    transition-delay: 18s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(92) .item--dot {
    -webkit-transition-delay: 18.2s;
    -khtml-transition-delay: 18.2s;
    -moz-transition-delay: 18.2s;
    -ms-transition-delay: 18.2s;
    -o-transition-delay: 18.2s;
    transition-delay: 18.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(93) .item--dot {
    -webkit-transition-delay: 18.4s;
    -khtml-transition-delay: 18.4s;
    -moz-transition-delay: 18.4s;
    -ms-transition-delay: 18.4s;
    -o-transition-delay: 18.4s;
    transition-delay: 18.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(94) .item--dot {
    -webkit-transition-delay: 18.6s;
    -khtml-transition-delay: 18.6s;
    -moz-transition-delay: 18.6s;
    -ms-transition-delay: 18.6s;
    -o-transition-delay: 18.6s;
    transition-delay: 18.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(95) .item--dot {
    -webkit-transition-delay: 18.8s;
    -khtml-transition-delay: 18.8s;
    -moz-transition-delay: 18.8s;
    -ms-transition-delay: 18.8s;
    -o-transition-delay: 18.8s;
    transition-delay: 18.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(96) .item--dot {
    -webkit-transition-delay: 19s;
    -khtml-transition-delay: 19s;
    -moz-transition-delay: 19s;
    -ms-transition-delay: 19s;
    -o-transition-delay: 19s;
    transition-delay: 19s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(97) .item--dot {
    -webkit-transition-delay: 19.2s;
    -khtml-transition-delay: 19.2s;
    -moz-transition-delay: 19.2s;
    -ms-transition-delay: 19.2s;
    -o-transition-delay: 19.2s;
    transition-delay: 19.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(98) .item--dot {
    -webkit-transition-delay: 19.4s;
    -khtml-transition-delay: 19.4s;
    -moz-transition-delay: 19.4s;
    -ms-transition-delay: 19.4s;
    -o-transition-delay: 19.4s;
    transition-delay: 19.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(99) .item--dot {
    -webkit-transition-delay: 19.6s;
    -khtml-transition-delay: 19.6s;
    -moz-transition-delay: 19.6s;
    -ms-transition-delay: 19.6s;
    -o-transition-delay: 19.6s;
    transition-delay: 19.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(100) .item--dot {
    -webkit-transition-delay: 19.8s;
    -khtml-transition-delay: 19.8s;
    -moz-transition-delay: 19.8s;
    -ms-transition-delay: 19.8s;
    -o-transition-delay: 19.8s;
    transition-delay: 19.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(101) .item--dot {
    -webkit-transition-delay: 20s;
    -khtml-transition-delay: 20s;
    -moz-transition-delay: 20s;
    -ms-transition-delay: 20s;
    -o-transition-delay: 20s;
    transition-delay: 20s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(102) .item--dot {
    -webkit-transition-delay: 20.2s;
    -khtml-transition-delay: 20.2s;
    -moz-transition-delay: 20.2s;
    -ms-transition-delay: 20.2s;
    -o-transition-delay: 20.2s;
    transition-delay: 20.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(103) .item--dot {
    -webkit-transition-delay: 20.4s;
    -khtml-transition-delay: 20.4s;
    -moz-transition-delay: 20.4s;
    -ms-transition-delay: 20.4s;
    -o-transition-delay: 20.4s;
    transition-delay: 20.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(104) .item--dot {
    -webkit-transition-delay: 20.6s;
    -khtml-transition-delay: 20.6s;
    -moz-transition-delay: 20.6s;
    -ms-transition-delay: 20.6s;
    -o-transition-delay: 20.6s;
    transition-delay: 20.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(105) .item--dot {
    -webkit-transition-delay: 20.8s;
    -khtml-transition-delay: 20.8s;
    -moz-transition-delay: 20.8s;
    -ms-transition-delay: 20.8s;
    -o-transition-delay: 20.8s;
    transition-delay: 20.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(106) .item--dot {
    -webkit-transition-delay: 21s;
    -khtml-transition-delay: 21s;
    -moz-transition-delay: 21s;
    -ms-transition-delay: 21s;
    -o-transition-delay: 21s;
    transition-delay: 21s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(107) .item--dot {
    -webkit-transition-delay: 21.2s;
    -khtml-transition-delay: 21.2s;
    -moz-transition-delay: 21.2s;
    -ms-transition-delay: 21.2s;
    -o-transition-delay: 21.2s;
    transition-delay: 21.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(108) .item--dot {
    -webkit-transition-delay: 21.4s;
    -khtml-transition-delay: 21.4s;
    -moz-transition-delay: 21.4s;
    -ms-transition-delay: 21.4s;
    -o-transition-delay: 21.4s;
    transition-delay: 21.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(109) .item--dot {
    -webkit-transition-delay: 21.6s;
    -khtml-transition-delay: 21.6s;
    -moz-transition-delay: 21.6s;
    -ms-transition-delay: 21.6s;
    -o-transition-delay: 21.6s;
    transition-delay: 21.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(110) .item--dot {
    -webkit-transition-delay: 21.8s;
    -khtml-transition-delay: 21.8s;
    -moz-transition-delay: 21.8s;
    -ms-transition-delay: 21.8s;
    -o-transition-delay: 21.8s;
    transition-delay: 21.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(111) .item--dot {
    -webkit-transition-delay: 22s;
    -khtml-transition-delay: 22s;
    -moz-transition-delay: 22s;
    -ms-transition-delay: 22s;
    -o-transition-delay: 22s;
    transition-delay: 22s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(112) .item--dot {
    -webkit-transition-delay: 22.2s;
    -khtml-transition-delay: 22.2s;
    -moz-transition-delay: 22.2s;
    -ms-transition-delay: 22.2s;
    -o-transition-delay: 22.2s;
    transition-delay: 22.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(113) .item--dot {
    -webkit-transition-delay: 22.4s;
    -khtml-transition-delay: 22.4s;
    -moz-transition-delay: 22.4s;
    -ms-transition-delay: 22.4s;
    -o-transition-delay: 22.4s;
    transition-delay: 22.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(114) .item--dot {
    -webkit-transition-delay: 22.6s;
    -khtml-transition-delay: 22.6s;
    -moz-transition-delay: 22.6s;
    -ms-transition-delay: 22.6s;
    -o-transition-delay: 22.6s;
    transition-delay: 22.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(115) .item--dot {
    -webkit-transition-delay: 22.8s;
    -khtml-transition-delay: 22.8s;
    -moz-transition-delay: 22.8s;
    -ms-transition-delay: 22.8s;
    -o-transition-delay: 22.8s;
    transition-delay: 22.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(116) .item--dot {
    -webkit-transition-delay: 23s;
    -khtml-transition-delay: 23s;
    -moz-transition-delay: 23s;
    -ms-transition-delay: 23s;
    -o-transition-delay: 23s;
    transition-delay: 23s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(117) .item--dot {
    -webkit-transition-delay: 23.2s;
    -khtml-transition-delay: 23.2s;
    -moz-transition-delay: 23.2s;
    -ms-transition-delay: 23.2s;
    -o-transition-delay: 23.2s;
    transition-delay: 23.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(118) .item--dot {
    -webkit-transition-delay: 23.4s;
    -khtml-transition-delay: 23.4s;
    -moz-transition-delay: 23.4s;
    -ms-transition-delay: 23.4s;
    -o-transition-delay: 23.4s;
    transition-delay: 23.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(119) .item--dot {
    -webkit-transition-delay: 23.6s;
    -khtml-transition-delay: 23.6s;
    -moz-transition-delay: 23.6s;
    -ms-transition-delay: 23.6s;
    -o-transition-delay: 23.6s;
    transition-delay: 23.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(120) .item--dot {
    -webkit-transition-delay: 23.8s;
    -khtml-transition-delay: 23.8s;
    -moz-transition-delay: 23.8s;
    -ms-transition-delay: 23.8s;
    -o-transition-delay: 23.8s;
    transition-delay: 23.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(121) .item--dot {
    -webkit-transition-delay: 24s;
    -khtml-transition-delay: 24s;
    -moz-transition-delay: 24s;
    -ms-transition-delay: 24s;
    -o-transition-delay: 24s;
    transition-delay: 24s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(122) .item--dot {
    -webkit-transition-delay: 24.2s;
    -khtml-transition-delay: 24.2s;
    -moz-transition-delay: 24.2s;
    -ms-transition-delay: 24.2s;
    -o-transition-delay: 24.2s;
    transition-delay: 24.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(123) .item--dot {
    -webkit-transition-delay: 24.4s;
    -khtml-transition-delay: 24.4s;
    -moz-transition-delay: 24.4s;
    -ms-transition-delay: 24.4s;
    -o-transition-delay: 24.4s;
    transition-delay: 24.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(124) .item--dot {
    -webkit-transition-delay: 24.6s;
    -khtml-transition-delay: 24.6s;
    -moz-transition-delay: 24.6s;
    -ms-transition-delay: 24.6s;
    -o-transition-delay: 24.6s;
    transition-delay: 24.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(125) .item--dot {
    -webkit-transition-delay: 24.8s;
    -khtml-transition-delay: 24.8s;
    -moz-transition-delay: 24.8s;
    -ms-transition-delay: 24.8s;
    -o-transition-delay: 24.8s;
    transition-delay: 24.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(126) .item--dot {
    -webkit-transition-delay: 25s;
    -khtml-transition-delay: 25s;
    -moz-transition-delay: 25s;
    -ms-transition-delay: 25s;
    -o-transition-delay: 25s;
    transition-delay: 25s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(127) .item--dot {
    -webkit-transition-delay: 25.2s;
    -khtml-transition-delay: 25.2s;
    -moz-transition-delay: 25.2s;
    -ms-transition-delay: 25.2s;
    -o-transition-delay: 25.2s;
    transition-delay: 25.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(128) .item--dot {
    -webkit-transition-delay: 25.4s;
    -khtml-transition-delay: 25.4s;
    -moz-transition-delay: 25.4s;
    -ms-transition-delay: 25.4s;
    -o-transition-delay: 25.4s;
    transition-delay: 25.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(129) .item--dot {
    -webkit-transition-delay: 25.6s;
    -khtml-transition-delay: 25.6s;
    -moz-transition-delay: 25.6s;
    -ms-transition-delay: 25.6s;
    -o-transition-delay: 25.6s;
    transition-delay: 25.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(130) .item--dot {
    -webkit-transition-delay: 25.8s;
    -khtml-transition-delay: 25.8s;
    -moz-transition-delay: 25.8s;
    -ms-transition-delay: 25.8s;
    -o-transition-delay: 25.8s;
    transition-delay: 25.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(131) .item--dot {
    -webkit-transition-delay: 26s;
    -khtml-transition-delay: 26s;
    -moz-transition-delay: 26s;
    -ms-transition-delay: 26s;
    -o-transition-delay: 26s;
    transition-delay: 26s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(132) .item--dot {
    -webkit-transition-delay: 26.2s;
    -khtml-transition-delay: 26.2s;
    -moz-transition-delay: 26.2s;
    -ms-transition-delay: 26.2s;
    -o-transition-delay: 26.2s;
    transition-delay: 26.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(133) .item--dot {
    -webkit-transition-delay: 26.4s;
    -khtml-transition-delay: 26.4s;
    -moz-transition-delay: 26.4s;
    -ms-transition-delay: 26.4s;
    -o-transition-delay: 26.4s;
    transition-delay: 26.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(134) .item--dot {
    -webkit-transition-delay: 26.6s;
    -khtml-transition-delay: 26.6s;
    -moz-transition-delay: 26.6s;
    -ms-transition-delay: 26.6s;
    -o-transition-delay: 26.6s;
    transition-delay: 26.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(135) .item--dot {
    -webkit-transition-delay: 26.8s;
    -khtml-transition-delay: 26.8s;
    -moz-transition-delay: 26.8s;
    -ms-transition-delay: 26.8s;
    -o-transition-delay: 26.8s;
    transition-delay: 26.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(136) .item--dot {
    -webkit-transition-delay: 27s;
    -khtml-transition-delay: 27s;
    -moz-transition-delay: 27s;
    -ms-transition-delay: 27s;
    -o-transition-delay: 27s;
    transition-delay: 27s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(137) .item--dot {
    -webkit-transition-delay: 27.2s;
    -khtml-transition-delay: 27.2s;
    -moz-transition-delay: 27.2s;
    -ms-transition-delay: 27.2s;
    -o-transition-delay: 27.2s;
    transition-delay: 27.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(138) .item--dot {
    -webkit-transition-delay: 27.4s;
    -khtml-transition-delay: 27.4s;
    -moz-transition-delay: 27.4s;
    -ms-transition-delay: 27.4s;
    -o-transition-delay: 27.4s;
    transition-delay: 27.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(139) .item--dot {
    -webkit-transition-delay: 27.6s;
    -khtml-transition-delay: 27.6s;
    -moz-transition-delay: 27.6s;
    -ms-transition-delay: 27.6s;
    -o-transition-delay: 27.6s;
    transition-delay: 27.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(140) .item--dot {
    -webkit-transition-delay: 27.8s;
    -khtml-transition-delay: 27.8s;
    -moz-transition-delay: 27.8s;
    -ms-transition-delay: 27.8s;
    -o-transition-delay: 27.8s;
    transition-delay: 27.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(141) .item--dot {
    -webkit-transition-delay: 28s;
    -khtml-transition-delay: 28s;
    -moz-transition-delay: 28s;
    -ms-transition-delay: 28s;
    -o-transition-delay: 28s;
    transition-delay: 28s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(142) .item--dot {
    -webkit-transition-delay: 28.2s;
    -khtml-transition-delay: 28.2s;
    -moz-transition-delay: 28.2s;
    -ms-transition-delay: 28.2s;
    -o-transition-delay: 28.2s;
    transition-delay: 28.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(143) .item--dot {
    -webkit-transition-delay: 28.4s;
    -khtml-transition-delay: 28.4s;
    -moz-transition-delay: 28.4s;
    -ms-transition-delay: 28.4s;
    -o-transition-delay: 28.4s;
    transition-delay: 28.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(144) .item--dot {
    -webkit-transition-delay: 28.6s;
    -khtml-transition-delay: 28.6s;
    -moz-transition-delay: 28.6s;
    -ms-transition-delay: 28.6s;
    -o-transition-delay: 28.6s;
    transition-delay: 28.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(145) .item--dot {
    -webkit-transition-delay: 28.8s;
    -khtml-transition-delay: 28.8s;
    -moz-transition-delay: 28.8s;
    -ms-transition-delay: 28.8s;
    -o-transition-delay: 28.8s;
    transition-delay: 28.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(146) .item--dot {
    -webkit-transition-delay: 29s;
    -khtml-transition-delay: 29s;
    -moz-transition-delay: 29s;
    -ms-transition-delay: 29s;
    -o-transition-delay: 29s;
    transition-delay: 29s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(147) .item--dot {
    -webkit-transition-delay: 29.2s;
    -khtml-transition-delay: 29.2s;
    -moz-transition-delay: 29.2s;
    -ms-transition-delay: 29.2s;
    -o-transition-delay: 29.2s;
    transition-delay: 29.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(148) .item--dot {
    -webkit-transition-delay: 29.4s;
    -khtml-transition-delay: 29.4s;
    -moz-transition-delay: 29.4s;
    -ms-transition-delay: 29.4s;
    -o-transition-delay: 29.4s;
    transition-delay: 29.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(149) .item--dot {
    -webkit-transition-delay: 29.6s;
    -khtml-transition-delay: 29.6s;
    -moz-transition-delay: 29.6s;
    -ms-transition-delay: 29.6s;
    -o-transition-delay: 29.6s;
    transition-delay: 29.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(150) .item--dot {
    -webkit-transition-delay: 29.8s;
    -khtml-transition-delay: 29.8s;
    -moz-transition-delay: 29.8s;
    -ms-transition-delay: 29.8s;
    -o-transition-delay: 29.8s;
    transition-delay: 29.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(151) .item--dot {
    -webkit-transition-delay: 30s;
    -khtml-transition-delay: 30s;
    -moz-transition-delay: 30s;
    -ms-transition-delay: 30s;
    -o-transition-delay: 30s;
    transition-delay: 30s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(152) .item--dot {
    -webkit-transition-delay: 30.2s;
    -khtml-transition-delay: 30.2s;
    -moz-transition-delay: 30.2s;
    -ms-transition-delay: 30.2s;
    -o-transition-delay: 30.2s;
    transition-delay: 30.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(153) .item--dot {
    -webkit-transition-delay: 30.4s;
    -khtml-transition-delay: 30.4s;
    -moz-transition-delay: 30.4s;
    -ms-transition-delay: 30.4s;
    -o-transition-delay: 30.4s;
    transition-delay: 30.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(154) .item--dot {
    -webkit-transition-delay: 30.6s;
    -khtml-transition-delay: 30.6s;
    -moz-transition-delay: 30.6s;
    -ms-transition-delay: 30.6s;
    -o-transition-delay: 30.6s;
    transition-delay: 30.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(155) .item--dot {
    -webkit-transition-delay: 30.8s;
    -khtml-transition-delay: 30.8s;
    -moz-transition-delay: 30.8s;
    -ms-transition-delay: 30.8s;
    -o-transition-delay: 30.8s;
    transition-delay: 30.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(156) .item--dot {
    -webkit-transition-delay: 31s;
    -khtml-transition-delay: 31s;
    -moz-transition-delay: 31s;
    -ms-transition-delay: 31s;
    -o-transition-delay: 31s;
    transition-delay: 31s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(157) .item--dot {
    -webkit-transition-delay: 31.2s;
    -khtml-transition-delay: 31.2s;
    -moz-transition-delay: 31.2s;
    -ms-transition-delay: 31.2s;
    -o-transition-delay: 31.2s;
    transition-delay: 31.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(158) .item--dot {
    -webkit-transition-delay: 31.4s;
    -khtml-transition-delay: 31.4s;
    -moz-transition-delay: 31.4s;
    -ms-transition-delay: 31.4s;
    -o-transition-delay: 31.4s;
    transition-delay: 31.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(159) .item--dot {
    -webkit-transition-delay: 31.6s;
    -khtml-transition-delay: 31.6s;
    -moz-transition-delay: 31.6s;
    -ms-transition-delay: 31.6s;
    -o-transition-delay: 31.6s;
    transition-delay: 31.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(160) .item--dot {
    -webkit-transition-delay: 31.8s;
    -khtml-transition-delay: 31.8s;
    -moz-transition-delay: 31.8s;
    -ms-transition-delay: 31.8s;
    -o-transition-delay: 31.8s;
    transition-delay: 31.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(161) .item--dot {
    -webkit-transition-delay: 32s;
    -khtml-transition-delay: 32s;
    -moz-transition-delay: 32s;
    -ms-transition-delay: 32s;
    -o-transition-delay: 32s;
    transition-delay: 32s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(162) .item--dot {
    -webkit-transition-delay: 32.2s;
    -khtml-transition-delay: 32.2s;
    -moz-transition-delay: 32.2s;
    -ms-transition-delay: 32.2s;
    -o-transition-delay: 32.2s;
    transition-delay: 32.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(163) .item--dot {
    -webkit-transition-delay: 32.4s;
    -khtml-transition-delay: 32.4s;
    -moz-transition-delay: 32.4s;
    -ms-transition-delay: 32.4s;
    -o-transition-delay: 32.4s;
    transition-delay: 32.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(164) .item--dot {
    -webkit-transition-delay: 32.6s;
    -khtml-transition-delay: 32.6s;
    -moz-transition-delay: 32.6s;
    -ms-transition-delay: 32.6s;
    -o-transition-delay: 32.6s;
    transition-delay: 32.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(165) .item--dot {
    -webkit-transition-delay: 32.8s;
    -khtml-transition-delay: 32.8s;
    -moz-transition-delay: 32.8s;
    -ms-transition-delay: 32.8s;
    -o-transition-delay: 32.8s;
    transition-delay: 32.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(166) .item--dot {
    -webkit-transition-delay: 33s;
    -khtml-transition-delay: 33s;
    -moz-transition-delay: 33s;
    -ms-transition-delay: 33s;
    -o-transition-delay: 33s;
    transition-delay: 33s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(167) .item--dot {
    -webkit-transition-delay: 33.2s;
    -khtml-transition-delay: 33.2s;
    -moz-transition-delay: 33.2s;
    -ms-transition-delay: 33.2s;
    -o-transition-delay: 33.2s;
    transition-delay: 33.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(168) .item--dot {
    -webkit-transition-delay: 33.4s;
    -khtml-transition-delay: 33.4s;
    -moz-transition-delay: 33.4s;
    -ms-transition-delay: 33.4s;
    -o-transition-delay: 33.4s;
    transition-delay: 33.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(169) .item--dot {
    -webkit-transition-delay: 33.6s;
    -khtml-transition-delay: 33.6s;
    -moz-transition-delay: 33.6s;
    -ms-transition-delay: 33.6s;
    -o-transition-delay: 33.6s;
    transition-delay: 33.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(170) .item--dot {
    -webkit-transition-delay: 33.8s;
    -khtml-transition-delay: 33.8s;
    -moz-transition-delay: 33.8s;
    -ms-transition-delay: 33.8s;
    -o-transition-delay: 33.8s;
    transition-delay: 33.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(171) .item--dot {
    -webkit-transition-delay: 34s;
    -khtml-transition-delay: 34s;
    -moz-transition-delay: 34s;
    -ms-transition-delay: 34s;
    -o-transition-delay: 34s;
    transition-delay: 34s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(172) .item--dot {
    -webkit-transition-delay: 34.2s;
    -khtml-transition-delay: 34.2s;
    -moz-transition-delay: 34.2s;
    -ms-transition-delay: 34.2s;
    -o-transition-delay: 34.2s;
    transition-delay: 34.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(173) .item--dot {
    -webkit-transition-delay: 34.4s;
    -khtml-transition-delay: 34.4s;
    -moz-transition-delay: 34.4s;
    -ms-transition-delay: 34.4s;
    -o-transition-delay: 34.4s;
    transition-delay: 34.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(174) .item--dot {
    -webkit-transition-delay: 34.6s;
    -khtml-transition-delay: 34.6s;
    -moz-transition-delay: 34.6s;
    -ms-transition-delay: 34.6s;
    -o-transition-delay: 34.6s;
    transition-delay: 34.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(175) .item--dot {
    -webkit-transition-delay: 34.8s;
    -khtml-transition-delay: 34.8s;
    -moz-transition-delay: 34.8s;
    -ms-transition-delay: 34.8s;
    -o-transition-delay: 34.8s;
    transition-delay: 34.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(176) .item--dot {
    -webkit-transition-delay: 35s;
    -khtml-transition-delay: 35s;
    -moz-transition-delay: 35s;
    -ms-transition-delay: 35s;
    -o-transition-delay: 35s;
    transition-delay: 35s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(177) .item--dot {
    -webkit-transition-delay: 35.2s;
    -khtml-transition-delay: 35.2s;
    -moz-transition-delay: 35.2s;
    -ms-transition-delay: 35.2s;
    -o-transition-delay: 35.2s;
    transition-delay: 35.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(178) .item--dot {
    -webkit-transition-delay: 35.4s;
    -khtml-transition-delay: 35.4s;
    -moz-transition-delay: 35.4s;
    -ms-transition-delay: 35.4s;
    -o-transition-delay: 35.4s;
    transition-delay: 35.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(179) .item--dot {
    -webkit-transition-delay: 35.6s;
    -khtml-transition-delay: 35.6s;
    -moz-transition-delay: 35.6s;
    -ms-transition-delay: 35.6s;
    -o-transition-delay: 35.6s;
    transition-delay: 35.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(180) .item--dot {
    -webkit-transition-delay: 35.8s;
    -khtml-transition-delay: 35.8s;
    -moz-transition-delay: 35.8s;
    -ms-transition-delay: 35.8s;
    -o-transition-delay: 35.8s;
    transition-delay: 35.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(181) .item--dot {
    -webkit-transition-delay: 36s;
    -khtml-transition-delay: 36s;
    -moz-transition-delay: 36s;
    -ms-transition-delay: 36s;
    -o-transition-delay: 36s;
    transition-delay: 36s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(182) .item--dot {
    -webkit-transition-delay: 36.2s;
    -khtml-transition-delay: 36.2s;
    -moz-transition-delay: 36.2s;
    -ms-transition-delay: 36.2s;
    -o-transition-delay: 36.2s;
    transition-delay: 36.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(183) .item--dot {
    -webkit-transition-delay: 36.4s;
    -khtml-transition-delay: 36.4s;
    -moz-transition-delay: 36.4s;
    -ms-transition-delay: 36.4s;
    -o-transition-delay: 36.4s;
    transition-delay: 36.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(184) .item--dot {
    -webkit-transition-delay: 36.6s;
    -khtml-transition-delay: 36.6s;
    -moz-transition-delay: 36.6s;
    -ms-transition-delay: 36.6s;
    -o-transition-delay: 36.6s;
    transition-delay: 36.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(185) .item--dot {
    -webkit-transition-delay: 36.8s;
    -khtml-transition-delay: 36.8s;
    -moz-transition-delay: 36.8s;
    -ms-transition-delay: 36.8s;
    -o-transition-delay: 36.8s;
    transition-delay: 36.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(186) .item--dot {
    -webkit-transition-delay: 37s;
    -khtml-transition-delay: 37s;
    -moz-transition-delay: 37s;
    -ms-transition-delay: 37s;
    -o-transition-delay: 37s;
    transition-delay: 37s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(187) .item--dot {
    -webkit-transition-delay: 37.2s;
    -khtml-transition-delay: 37.2s;
    -moz-transition-delay: 37.2s;
    -ms-transition-delay: 37.2s;
    -o-transition-delay: 37.2s;
    transition-delay: 37.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(188) .item--dot {
    -webkit-transition-delay: 37.4s;
    -khtml-transition-delay: 37.4s;
    -moz-transition-delay: 37.4s;
    -ms-transition-delay: 37.4s;
    -o-transition-delay: 37.4s;
    transition-delay: 37.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(189) .item--dot {
    -webkit-transition-delay: 37.6s;
    -khtml-transition-delay: 37.6s;
    -moz-transition-delay: 37.6s;
    -ms-transition-delay: 37.6s;
    -o-transition-delay: 37.6s;
    transition-delay: 37.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(190) .item--dot {
    -webkit-transition-delay: 37.8s;
    -khtml-transition-delay: 37.8s;
    -moz-transition-delay: 37.8s;
    -ms-transition-delay: 37.8s;
    -o-transition-delay: 37.8s;
    transition-delay: 37.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(191) .item--dot {
    -webkit-transition-delay: 38s;
    -khtml-transition-delay: 38s;
    -moz-transition-delay: 38s;
    -ms-transition-delay: 38s;
    -o-transition-delay: 38s;
    transition-delay: 38s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(192) .item--dot {
    -webkit-transition-delay: 38.2s;
    -khtml-transition-delay: 38.2s;
    -moz-transition-delay: 38.2s;
    -ms-transition-delay: 38.2s;
    -o-transition-delay: 38.2s;
    transition-delay: 38.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(193) .item--dot {
    -webkit-transition-delay: 38.4s;
    -khtml-transition-delay: 38.4s;
    -moz-transition-delay: 38.4s;
    -ms-transition-delay: 38.4s;
    -o-transition-delay: 38.4s;
    transition-delay: 38.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(194) .item--dot {
    -webkit-transition-delay: 38.6s;
    -khtml-transition-delay: 38.6s;
    -moz-transition-delay: 38.6s;
    -ms-transition-delay: 38.6s;
    -o-transition-delay: 38.6s;
    transition-delay: 38.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(195) .item--dot {
    -webkit-transition-delay: 38.8s;
    -khtml-transition-delay: 38.8s;
    -moz-transition-delay: 38.8s;
    -ms-transition-delay: 38.8s;
    -o-transition-delay: 38.8s;
    transition-delay: 38.8s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(196) .item--dot {
    -webkit-transition-delay: 39s;
    -khtml-transition-delay: 39s;
    -moz-transition-delay: 39s;
    -ms-transition-delay: 39s;
    -o-transition-delay: 39s;
    transition-delay: 39s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(197) .item--dot {
    -webkit-transition-delay: 39.2s;
    -khtml-transition-delay: 39.2s;
    -moz-transition-delay: 39.2s;
    -ms-transition-delay: 39.2s;
    -o-transition-delay: 39.2s;
    transition-delay: 39.2s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(198) .item--dot {
    -webkit-transition-delay: 39.4s;
    -khtml-transition-delay: 39.4s;
    -moz-transition-delay: 39.4s;
    -ms-transition-delay: 39.4s;
    -o-transition-delay: 39.4s;
    transition-delay: 39.4s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(199) .item--dot {
    -webkit-transition-delay: 39.6s;
    -khtml-transition-delay: 39.6s;
    -moz-transition-delay: 39.6s;
    -ms-transition-delay: 39.6s;
    -o-transition-delay: 39.6s;
    transition-delay: 39.6s
}

.ct-slider-carousel3.visible .ct-item--particle:nth-child(200) .item--dot {
    -webkit-transition-delay: 39.8s;
    -khtml-transition-delay: 39.8s;
    -moz-transition-delay: 39.8s;
    -ms-transition-delay: 39.8s;
    -o-transition-delay: 39.8s;
    transition-delay: 39.8s
}

.ct-slider-carousel3.visible .ct-item--particle .item--dot {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-slider-carousel3 .slick-active .item--image {
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel3 .slick-active .item--holder {
    opacity: 1;
    -webkit-transition: all .8s linear 1s;
    -khtml-transition: all .8s linear 1s;
    -moz-transition: all .8s linear 1s;
    -ms-transition: all .8s linear 1s;
    -o-transition: all .8s linear 1s;
    transition: all .8s linear 1s;
    -webkit-animation: ct_fadeInRight .8s linear 1s;
    -khtml-animation: ct_fadeInRight .8s linear 1s;
    -moz-animation: ct_fadeInRight .8s linear 1s;
    -ms-animation: ct_fadeInRight .8s linear 1s;
    -o-animation: ct_fadeInRight .8s linear 1s;
    animation: ct_fadeInRight .8s linear 1s
}

.ct-slider-carousel3 .slick-active .item--title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    -khtml-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms
}

.ct-slider-carousel3 .slick-active .item--description {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -khtml-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms
}

.ct-slider-carousel3 .slick-active .item-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel3 .slick-active .ct-slider-loader .item--holder {
    -webkit-animation: ct_fadeInRight .8s linear 1 .2s;
    -khtml-animation: ct_fadeInRight .8s linear 1 .2s;
    -moz-animation: ct_fadeInRight .8s linear 1 .2s;
    -ms-animation: ct_fadeInRight .8s linear 1 .2s;
    -o-animation: ct_fadeInRight .8s linear 1 .2s;
    animation: ct_fadeInRight .8s linear 1 .2s
}

.ct-slider-carousel3 .slick-active .ct-slider-loader .item--title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    -khtml-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms
}

.ct-slider-carousel3 .slick-active .ct-slider-loader .item--description {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -khtml-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms
}

.ct-slider-carousel3 .slick-active .ct-slider-loader .item-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel4 .item-inner,
.ct-slider-carousel4 .image-main img {
    min-height: 960px
}

@media screen and (max-width:1199px) {

    .ct-slider-carousel4 .item-inner,
    .ct-slider-carousel4 .image-main img {
        min-height: 830px
    }
}

@media screen and (max-width:991px) {

    .ct-slider-carousel4 .item-inner,
    .ct-slider-carousel4 .image-main img {
        min-height: 682px
    }
}

@media screen and (max-width:575px) {

    .ct-slider-carousel4 .item-inner,
    .ct-slider-carousel4 .image-main img {
        min-height: 500px
    }
}

.ct-slider-carousel4 .item-inner {
    position: relative
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel4 .item-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.ct-slider-carousel4 .item-content {
    max-width: 1360px;
    padding-top: 158px
}

@media screen and (min-width:1200px) {
    .ct-slider-carousel4 .item-content {
        margin: 0 auto
    }
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel4 .item-content {
        padding-top: 0
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel4 .item-content {
        margin: 0 15px
    }
}

.ct-slider-carousel4 .item--holder {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 170px;
    line-height: 1;
    margin-bottom: 0;
    opacity: 0;
    text-stroke-color: #242424;
    -webkit-text-stroke-color: #242424;
    text-stroke-width: 2px;
    -webkit-text-stroke-width: 2px;
    z-index: -1;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel4 .item--holder {
        font-size: 130px
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel4 .item--holder {
        font-size: 100px
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel4 .item--holder {
        font-size: 80px
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel4 .item--holder {
        display: none
    }
}

.ct-slider-carousel4 .holder-top {
    margin: 0 0 10px 8.1%
}

@media screen and (max-width:1600px) {
    .ct-slider-carousel4 .holder-top {
        margin: 0 0 10px
    }
}

.ct-slider-carousel4 .holder-bottom {
    margin: 35px 0 0 45px
}

@media screen and (max-width:1600px) {
    .ct-slider-carousel4 .holder-bottom {
        margin: 35px 0 0
    }
}

@media screen and (min-width:1200px) {
    .ct-slider-carousel4 .holder-mobile {
        display: none
    }
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel4 .holder-desktop {
        display: none
    }
}

.ct-slider-carousel4 .item--title {
    max-width: 56%;
    line-height: 1.106;
    margin-bottom: 17px
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel4 .item--title {
        font-size: 50px;
        line-height: 1.22
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel4 .item--title {
        max-width: 100%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel4 .item--title {
        font-size: 35px
    }
}

.ct-slider-carousel4 .item--description {
    font-weight: 400;
    margin-bottom: 52px;
    max-width: 30%
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel4 .item--description {
        max-width: 50%
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel4 .item--description {
        max-width: 100%;
        margin-bottom: 40px
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel4 .item--description {
        font-size: 16px
    }
}

.ct-slider-carousel4 .item--image {
    position: absolute;
    top: 0;
    right: 0;
    width: 61.7%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    z-index: -1;
    overflow: hidden
}

.ct-slider-carousel4 .item--image img {
    object-fit: cover;
    transition: all 1s cubic-bezier(.7, 0, .3, 1);
    transform: scale(1.2)
}

@media screen and (max-width:1600px) {
    .ct-slider-carousel4 .item--image {
        width: 60%
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel4 .item--image {
        width: 55%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel4 .item--image {
        width: 100%
    }
}

.ct-slider-carousel4 .slick-active .item--image img {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-slider-carousel4 .slick-active .holder-top {
    opacity: 1;
    -webkit-transition: all .5s linear .5s;
    -khtml-transition: all .5s linear .5s;
    -moz-transition: all .5s linear .5s;
    -ms-transition: all .5s linear .5s;
    -o-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
    -webkit-animation: ct_fadeInRight .5s linear .5s;
    -khtml-animation: ct_fadeInRight .5s linear .5s;
    -moz-animation: ct_fadeInRight .5s linear .5s;
    -ms-animation: ct_fadeInRight .5s linear .5s;
    -o-animation: ct_fadeInRight .5s linear .5s;
    animation: ct_fadeInRight .5s linear .5s
}

.ct-slider-carousel4 .slick-active .holder-bottom {
    opacity: 1;
    -webkit-transition: all .5s linear .5s;
    -khtml-transition: all .5s linear .5s;
    -moz-transition: all .5s linear .5s;
    -ms-transition: all .5s linear .5s;
    -o-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
    -webkit-animation: ct_fadeInLeft .5s linear .5s;
    -khtml-animation: ct_fadeInLeft .5s linear .5s;
    -moz-animation: ct_fadeInLeft .5s linear .5s;
    -ms-animation: ct_fadeInLeft .5s linear .5s;
    -o-animation: ct_fadeInLeft .5s linear .5s;
    animation: ct_fadeInLeft .5s linear .5s
}

.ct-slider-carousel5 .item-inner,
.ct-slider-carousel5 .image-main img {
    min-height: 920px
}

@media screen and (max-width:1199px) {

    .ct-slider-carousel5 .item-inner,
    .ct-slider-carousel5 .image-main img {
        min-height: 830px
    }
}

@media screen and (max-width:991px) {

    .ct-slider-carousel5 .item-inner,
    .ct-slider-carousel5 .image-main img {
        min-height: 682px
    }
}

@media screen and (max-width:575px) {

    .ct-slider-carousel5 .item-inner,
    .ct-slider-carousel5 .image-main img {
        min-height: 500px
    }
}

.ct-slider-carousel5 .item-inner {
    position: relative
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel5 .item-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.ct-slider-carousel5 .item-content {
    max-width: 1360px;
    padding-top: 281px
}

@media screen and (max-width:1390px) {
    .ct-slider-carousel5 .item-content {
        margin: 0 15px
    }
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel5 .item-content {
        padding-top: 0
    }
}

.ct-slider-carousel5 .item--holder {
    position: absolute;
    left: 11%;
    top: 64px;
    color: transparent;
    font-size: 170px;
    line-height: 1;
    margin-bottom: 0;
    text-stroke-color: #242424;
    -webkit-text-stroke-color: #242424;
    text-stroke-width: 2px;
    -webkit-text-stroke-width: 2px;
    z-index: -1
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel5 .item--holder {
        font-size: 130px;
        top: 24px
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel5 .item--holder {
        font-size: 100px
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel5 .item--holder {
        font-size: 80px
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel5 .item--holder {
        display: none
    }
}

.ct-slider-carousel5 .item--title {
    max-width: 70%;
    line-height: 1.106;
    margin-bottom: 17px
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel5 .item--title {
        font-size: 50px;
        line-height: 1.22
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel5 .item--title {
        max-width: 100%
    }
}

@media screen and (max-width:575px) {
    .ct-slider-carousel5 .item--title {
        font-size: 35px
    }
}

.ct-slider-carousel5 .item--description {
    font-weight: 400;
    margin-bottom: 42px;
    max-width: 40%
}

@media screen and (max-width:1199px) {
    .ct-slider-carousel5 .item--description {
        max-width: 50%
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel5 .item--description {
        max-width: 100%;
        margin-bottom: 40px
    }
}

@media screen and (max-width:767px) {
    .ct-slider-carousel5 .item--description {
        font-size: 16px
    }
}

.ct-slider-carousel5 .item--title,
.ct-slider-carousel5 .item--description,
.ct-slider-carousel5 .item-button {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -khtml-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel5 .item--image {
    z-index: -1;
    overflow: hidden
}

.ct-slider-carousel5 .item--image img {
    object-fit: cover;
    transition: all 1s cubic-bezier(.7, 0, .3, 1);
    transform: scale(1.2)
}

.ct-slider-carousel5 .image-overlay {
    background-color: #161616;
    mix-blend-mode: multiply;
    opacity: .9
}

.ct-slider-carousel5 .ct-slider-loader .item-content,
.ct-slider-carousel5 .ct-slider-loader .item--image {
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms
}

.ct-slider-carousel5 .slick-dots {
    position: absolute;
    margin: 0
}

.ct-slider-carousel5 .slick-dots li {
    margin: 0 10px
}

.ct-slider-carousel5 .slick-dots li button {
    width: 30px;
    background-color: #343434
}

.ct-slider-carousel5 .slick-dots li.slick-active button {
    background-color: #bf2025
}

@media screen and (min-width:992px) {
    .ct-slider-carousel5 .slick-dots {
        top: 50%;
        right: 10.3%;
        -webkit-transform: rotate(90deg)translateX(-50%);
        -khtml-transform: rotate(90deg)translateX(-50%);
        -moz-transform: rotate(90deg)translateX(-50%);
        -ms-transform: rotate(90deg)translateX(-50%);
        -o-transform: rotate(90deg)translateX(-50%);
        transform: rotate(90deg)translateX(-50%)
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .ct-slider-carousel5 .slick-dots {
        right: 0
    }
}

@media screen and (max-width:991px) {
    .ct-slider-carousel5 .slick-dots {
        bottom: 30px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -khtml-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.ct-slider-carousel5 .slick-active .item--image {
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel5 .slick-active .item--holder {
    -webkit-animation: ct_fadeInRight .8s linear 1 2.2s;
    -khtml-animation: ct_fadeInRight .8s linear 1 2.2s;
    -moz-animation: ct_fadeInRight .8s linear 1 2.2s;
    -ms-animation: ct_fadeInRight .8s linear 1 2.2s;
    -o-animation: ct_fadeInRight .8s linear 1 2.2s;
    animation: ct_fadeInRight .8s linear 1 2.2s
}

.ct-slider-carousel5 .slick-active .item--title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    -khtml-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms
}

.ct-slider-carousel5 .slick-active .item--description {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -khtml-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms
}

.ct-slider-carousel5 .slick-active .item-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-slider-carousel5 .slick-active .ct-slider-loader .item--holder {
    -webkit-animation: ct_fadeInRight .8s linear 1 .2s;
    -khtml-animation: ct_fadeInRight .8s linear 1 .2s;
    -moz-animation: ct_fadeInRight .8s linear 1 .2s;
    -ms-animation: ct_fadeInRight .8s linear 1 .2s;
    -o-animation: ct_fadeInRight .8s linear 1 .2s;
    animation: ct_fadeInRight .8s linear 1 .2s
}

.ct-slider-carousel5 .slick-active .ct-slider-loader .item--title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 100ms;
    -khtml-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms
}

.ct-slider-carousel5 .slick-active .ct-slider-loader .item--description {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -khtml-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms
}

.ct-slider-carousel5 .slick-active .ct-slider-loader .item-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -khtml-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms
}

.ct-countdown-layout1 {
    display: flex;
    align-items: center;
    padding: 18px 20px 16px;
    background: #bf2025
}

.ct-countdown-layout1 .countdown-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 25%
}

.ct-countdown-layout1 .countdown-item:not(:last-child):after {
    content: ':';
    position: absolute;
    right: 0;
    top: 25%;
    font-size: 29px;
    font-weight: 700;
    -webkit-transform: translate(50%, -50%);
    -khtml-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

.ct-countdown-layout1 .countdown-amount {
    color: #fff;
    line-height: 1;
    margin-bottom: 0
}

.ct-countdown-layout1 .countdown-period {
    font-size: 14px;
    line-height: 1.2857;
    color: #fff
}

.ct-tabs .ct-tab-title {
    cursor: pointer;
    -webkit-transition: all 300ms linear 100ms;
    -khtml-transition: all 300ms linear 100ms;
    -moz-transition: all 300ms linear 100ms;
    -ms-transition: all 300ms linear 100ms;
    -o-transition: all 300ms linear 100ms;
    transition: all 300ms linear 100ms
}

.ct-tabs .ct-tab-content {
    display: none
}

.ct-tabs1 .ct-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: -15px
}

.ct-tabs1 .ct-tabs-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #343434;
    margin: 15px;
    position: relative;
    overflow: visible
}

@media screen and (max-width:991px) {
    .ct-tabs1 .ct-tabs-title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.ct-tabs1 .ct-tabs-heading {
    margin: 15px
}

@media screen and (max-width:991px) {
    .ct-tabs1 .ct-tabs-heading {
        width: 100%
    }
}

.ct-tabs1 .ct-tabs-heading+.ct-tabs-title {
    width: auto
}

@media screen and (max-width:991px) {
    .ct-tabs1 .ct-tabs-heading+.ct-tabs-title {
        width: 100%
    }
}

.ct-tabs1 .item--title {
    margin-bottom: 0
}

.ct-tabs1 .ct-tab-title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 18px 66px 17px;
    min-width: 200px;
    text-align: center;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:991px) {
    .ct-tabs1 .ct-tab-title {
        width: 100%
    }
}

.ct-tabs1 .ct-tab-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: initial;
    z-index: 1
}

.ct-tabs1 .ct-tab-title span {
    position: relative;
    z-index: 2
}

.ct-tabs1 .ct-tab-title.active {
    pointer-events: none
}

.ct-tabs1 .ct-tab-title.active:before {
    background-color: #bf2025
}

.ct-tabs2 .ct-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.ct-tabs2 .ct-tabs-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin: -20px;
    position: relative;
    overflow: visible
}

@media screen and (max-width:991px) {
    .ct-tabs2 .ct-tabs-title {
        margin: -15px
    }
}

.ct-tabs2 .ct-tabs-heading {
    text-align: center;
    width: 100%;
    margin-bottom: 35px
}

.ct-tabs2 .item--title {
    margin-bottom: 0
}

.ct-tabs2 .ct-tab-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #262626;
    padding: 17px 30px 16px;
    margin: 20px;
    text-align: center;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:991px) {
    .ct-tabs2 .ct-tab-title {
        width: 100%;
        margin: 15px 0
    }
}

.ct-tabs2 .ct-tab-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: initial;
    z-index: 1
}

.ct-tabs2 .ct-tab-title span {
    position: relative;
    line-height: 1;
    z-index: 2
}

.ct-tabs2 .ct-tab-title i,
.ct-tabs2 .ct-tab-title svg {
    position: relative;
    line-height: 1;
    margin-right: 15px;
    z-index: 2
}

.ct-tabs2 .ct-tab-title.active {
    pointer-events: none
}

.ct-tabs2 .ct-tab-title.active:before {
    background-color: #bf2025
}

.ct-image-before-after1 img {
    width: 100%
}

.ct-image-before-after1 .before-after-text {
    margin-top: 12px
}

.ct-image-before-after1 .before-after-text .before-text,
.ct-image-before-after1 .before-after-text .after-text {
    width: 50%;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #ededed
}

.ct-image-before-after1 .twentytwenty-before-label:before,
.ct-image-before-after1 .twentytwenty-after-label:before {
    display: none
}

.ct-image-before-after1 .twentytwenty-horizontal .twentytwenty-handle {
    background-color: #bf2025;
    border: none;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.ct-image-before-after1 .twentytwenty-horizontal .twentytwenty-handle:before,
.ct-image-before-after1 .twentytwenty-horizontal .twentytwenty-handle:after {
    width: 8px;
    margin-left: -3.5px;
    background-color: #bf2025;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

.ct-image-before-after1 .twentytwenty-horizontal .twentytwenty-handle:before {
    margin-bottom: 15px
}

.ct-image-before-after1 .twentytwenty-horizontal .twentytwenty-handle:after {
    margin-top: 15px
}

.ct-image-before-after1 .twentytwenty-left-arrow,
.ct-image-before-after1 .twentytwenty-right-arrow {
    line-height: 1;
    border: none;
    margin-top: -9px
}

.ct-image-before-after1 .twentytwenty-left-arrow {
    margin-left: -11px
}

.ct-image-before-after1 .twentytwenty-right-arrow {
    margin-right: -4px
}

.ct-image-box1 .item--inner {
    position: relative;
    overflow: hidden
}

.ct-image-box1 .item--inner:before {
    content: '';
    opacity: 0;
    background-color: #000;
    pointer-events: none;
    z-index: 1
}

.ct-image-box1 .canvas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none
}

.ct-image-box1 .item--image a {
    display: block
}

.ct-image-box1 .item--image img {
    opacity: 0;
    object-fit: cover;
    pointer-events: none
}

body img.mfp-img {
    padding: 0 !important
}

body .mfp-fade.mfp-bg.mfp-ready {
    opacity: .9;
    background-color: #000
}

body .mfp-bottom-bar {
    margin-top: 0
}

body .mfp-wrap .mfp-container .mfp-content {
    max-width: 1360px;
    position: static
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close {
    padding: 0;
    right: 0;
    text-align: center;
    top: -41px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, .25);
    cursor: pointer;
    opacity: 1;
    border: 1px solid transparent;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:before {
    content: 'x';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 35px;
    z-index: 1;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #181715
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close .ct-icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: initial
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close .ct-icon-close:before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close .ct-icon-close:after {
    background-color: rgba(255, 255, 255, .8)
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover {
    border-color: #bf2025
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover:before {
    color: #bf2025
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover .ct-icon-close:before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover .ct-icon-close:after {
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0)
}

body .mfp-wrap .mfp-container .mfp-iframe-scaler {
    position: relative;
    overflow: visible
}

body .mfp-wrap .mfp-container .mfp-arrow {
    background-color: #bf2025;
    width: 60px;
    height: 120px;
    opacity: 1
}

body .mfp-wrap .mfp-container .mfp-arrow:before,
body .mfp-wrap .mfp-container .mfp-arrow:after {
    border: none
}

body .mfp-wrap .mfp-container .mfp-arrow:before {
    font-family: Grandicon;
    font-size: 20px;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: normal;
    position: absolute;
    top: 50%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    left: 50%;
    width: auto;
    height: auto
}

body .mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
    content: "\f103"
}

body .mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
    content: "\f104"
}

@media screen and (min-width:1200px) {
    body .mfp-wrap .mfp-container {
        padding: 0 120px
    }
}

.site-content {
    position: relative;
    padding: 60px 0
}

@media screen and (max-width:1199px) {
    .site-content {
        overflow: hidden
    }
}

@media screen and (max-width:991px) {
    .site-content {
        padding: 100px 0
    }
}

.site-content.hide-bg-image {
    background-image: none !important
}

.single-footer .site-footer-custom {
    display: none
}

.single-footer .site-content {
    padding: 0
}

.tax-portfolio-category .entry-meta li {
    display: none;
    border: none
}

.tax-portfolio-category .entry-meta li.item-author {
    display: block
}

.no-results.not-found .searchform-wrap {
    position: relative
}

.no-results.not-found .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    line-height: 50px;
    padding: 0;
    width: 60px;
    background-color: initial;
    color: #fff
}

.no-results.not-found .search-submit:hover {
    color: #bf2025
}

@media screen and (min-width:1200px) {
    body .container {
        max-width: 1390px;
        width: 100%
    }

    body .content-has-sidebar.float-left {
        padding-right: 10px
    }

    body .content-has-sidebar.float-right {
        padding-left: 10px
    }

    body .widget-has-sidebar {
        padding-left: 50px
    }

    body .float-right+.widget-has-sidebar {
        padding-left: 15px;
        padding-right: 50px
    }

    body .content-area.content-has-sidebar {
        -ms-flex: 0 0 auto;
        flex: 0 0 65%;
        max-width: 65%
    }

    body .widget-area.widget-has-sidebar {
        -ms-flex: 0 0 auto;
        flex: 0 0 35%;
        max-width: 35%
    }

    .col-xl-25 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        padding: 0 15px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .col-lg-25 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        padding: 0 15px
    }
}

@media screen and (min-width:992px) {
    .content-has-sidebar.float-right {
        order: 2;
        -webkit-order: 2;
        -ms-order: 2
    }

    .content-has-sidebar.float-right+#secondary {
        order: 1;
        -webkit-order: 1;
        -ms-order: 1
    }
}

@media screen and (max-width:1199px) {
    body .container {
        max-width: 100%
    }
}

.blockUI {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
    display: block !important;
    opacity: 1 !important
}

.blockUI:before {
    content: '';
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border-color: transparent #000 transparent #000;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: ctspin .6s infinite linear;
    -webkit-animation: ctspin .6s infinite linear;
    box-sizing: border-box;
    z-index: 2
}

.blockUI:after {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    z-index: 1
}

.blockUI.blockOverlay,
.blockUI.blockMsg {
    display: none !important
}

.woocommerce-NoticeGroup-checkout {
    width: 100%
}

.product-remove {
    position: relative;
    min-width: 50px
}

.product-remove a.remove {
    position: relative;
    font-size: 0;
    width: 26px;
    height: 26px;
    background-color: #bf2025
}

.product-remove a.remove:before,
.product-remove a.remove:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 50%;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    transform-origin: 50% 50%;
    opacity: 1;
    -webkit-transition: transform ease .25s;
    -khtml-transition: transform ease .25s;
    -moz-transition: transform ease .25s;
    -ms-transition: transform ease .25s;
    -o-transition: transform ease .25s;
    transition: transform ease .25s
}

.product-remove a.remove:before {
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.product-remove a.remove:after {
    -webkit-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.product-remove a.remove:hover {
    background-color: initial
}

.product-remove a.remove:hover:before,
.product-remove a.remove:hover:after {
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0)
}

@media screen and (max-width:769px) {
    .product-remove {
        min-height: 57px
    }
}

.ct-widget-cart-sidebar {
    -webkit-transition: transform .8s ease 0s;
    -khtml-transition: transform .8s ease 0s;
    -moz-transition: transform .8s ease 0s;
    -ms-transition: transform .8s ease 0s;
    -o-transition: transform .8s ease 0s;
    transition: transform .8s ease 0s;
    -webkit-transform: translateX(100%);
    -khtml-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    padding-bottom: 137px;
    background-color: #161616;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 9999;
    width: 320px;
    overflow: hidden
}

.ct-widget-cart-sidebar .widget_shopping_title {
    font-size: 16px;
    font-weight: 700;
    color: #ededed;
    flex-grow: 1
}

.ct-widget-cart-sidebar .widget_shopping_head {
    display: flex;
    background-color: #161616;
    padding: 16px 30px;
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 20px;
    align-items: center
}

.ct-widget-cart-sidebar .widget_shopping_head .ct-close {
    height: 36px;
    width: 36px
}

.ct-widget-cart-sidebar .widget_shopping_head .widget_shopping_title {
    position: relative;
    padding-left: 45px
}

.ct-widget-cart-sidebar .widget_shopping_head .widget_shopping_title:before {
    font-family: Grandicon;
    content: "\f12f";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    line-height: 1;
    color: #bf2025
}

.ct-widget-cart-sidebar .ct-close {
    position: absolute;
    top: 11px;
    right: 30px;
    z-index: 999
}

.ct-widget-cart-sidebar .widget_shopping_cart {
    padding: 30px 60px 0 30px;
    height: 95%;
    overflow-y: scroll;
    width: 350px;
    background-color: #161616
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li {
    position: relative;
    padding: 20px 15px 15px 0;
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.remove {
    pointer-events: none
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.remove:before {
    content: '';
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border-color: transparent #fff transparent #fff;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    box-sizing: border-box;
    z-index: 2;
    -webkit-animation: ctspin .6s infinite linear;
    -khtml-animation: ctspin .6s infinite linear;
    -moz-animation: ctspin .6s infinite linear;
    -ms-animation: ctspin .6s infinite linear;
    -o-animation: ctspin .6s infinite linear;
    animation: ctspin .6s infinite linear
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.remove:after {
    content: '';
    background-color: rgba(0, 0, 0, .7)
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li:last-child {
    border: none;
    padding-bottom: 0
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty {
    font-size: 16px;
    margin-top: 40px;
    padding: 0 !important;
    text-align: center;
    display: block
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty span {
    text-align: center;
    margin-bottom: 20px;
    display: block;
    margin-top: 20px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty i {
    font-size: 32px;
    color: #555;
    width: 80px;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 80px;
    line-height: 80px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty input[type=submit],
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn-form button[type=submit],
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty button[type=submit] {
    width: 100%;
    border: 1px solid #bf2025;
    background-color: #bf2025;
    clip-path: none
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty input[type=submit]:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn-form button[type=submit]:hover,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty button[type=submit]:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn:active,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty input[type=submit]:active,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn-form button[type=submit]:active,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty button[type=submit]:active,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn:focus,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty input[type=submit]:focus,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty .btn-form button[type=submit]:focus,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty button[type=submit]:focus {
    background-color: initial
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-image {
    width: 60px;
    min-width: 60px;
    margin-right: 15px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-image a {
    display: inline-block
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-image img {
    margin: 0;
    width: 100%
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta {
    padding-right: 12px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list .cart-product-meta .quantity {
    font-size: 14px;
    border: none
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list a.remove_from_cart_button {
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 0;
    width: 18px;
    height: 18px;
    text-align: center;
    -webkit-border-radius: 18px;
    -khtml-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    border-radius: 18px;
    line-height: 17px;
    color: #bf2025;
    font-size: 11px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list a.remove_from_cart_button i {
    vertical-align: middle
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li:hover a.remove_from_cart_button {
    opacity: 1
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 55px;
    background-color: #161616
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.total {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 15px;
    padding-bottom: 0;
    font-weight: 600
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.total strong {
    font-weight: inherit
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons {
    margin: 0
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit],
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit],
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit] {
    width: 100%;
    margin-right: 0;
    font-size: 14px;
    line-height: 46px;
    text-transform: uppercase
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn+.btn,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit]+.btn,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit]+input[type=submit],
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit]+.btn-form button[type=submit],
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit]+button[type=submit],
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit]+.btn,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit]+input[type=submit],
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit]+.btn-form button[type=submit],
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit]+button[type=submit],
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit]+.btn,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn+input[type=submit],
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn+.btn-form button[type=submit],
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn+button[type=submit] {
    margin-top: 8px
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn.btn-outline,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit].btn-outline,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit].btn-outline,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit].btn-outline {
    border: 1px solid #bf2025;
    background-color: initial
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn.btn-outline:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit].btn-outline:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit].btn-outline:hover,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit].btn-outline:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn.btn-outline:focus,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit].btn-outline:focus,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit].btn-outline:focus,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit].btn-outline:focus {
    border-color: #bf2025 !important
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn.checkout,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit].checkout,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit].checkout,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit].checkout {
    border: 1px solid transparent
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn.checkout:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit].checkout:hover,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit].checkout:hover,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit].checkout:hover {
    border-color: #bf2025
}

.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons:hover .btn.btn-outline,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons:hover input[type=submit].btn-outline,
.ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons:hover .btn-form button[type=submit].btn-outline,
.btn-form .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons:hover button[type=submit].btn-outline {
    border-color: transparent
}

.admin-bar .ct-widget-cart-sidebar {
    top: 32px
}

@media screen and (min-width:992px) {
    .admin-bar .widget-cart-sidebar {
        top: 32px;
        padding-bottom: 167px
    }

    .admin-bar .widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer {
        bottom: 32px
    }
}

.entry-content>.woocommerce .cart-empty,
.entry-content>.woocommerce .return-to-shop {
    text-align: center
}

.woocommerce ins {
    background-color: initial;
    color: #bf2025
}

.woocommerce .content-row #secondary.widget-has-sidebar:before {
    display: none
}

.woocommerce #secondary .widget:last-child {
    margin-bottom: 0
}

@media screen and (max-width:991px) {
    .woocommerce #secondary .widget.widget_products {
        margin-bottom: -20px
    }
}

.woocommerce #secondary .widget ul {
    margin-bottom: 0
}

.woocommerce #secondary .widget .widget-title {
    border-bottom: none;
    padding-bottom: 0
}

.woocommerce #secondary .widget .widget-title:before {
    display: none
}

.woocommerce #secondary .widget_product_categories .widget-title {
    margin-bottom: 16px
}

.woocommerce #secondary .widget_product_categories li a {
    font-size: 14px;
    line-height: 1.93
}

.woocommerce #secondary .widget_product_categories li:not(:last-child) {
    padding-bottom: 10px
}

.woocommerce #secondary .widget_product_search button {
    display: none;
    padding: 0;
    width: 53px;
    height: 50px;
    text-indent: -9999px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    opacity: 1;
    z-index: 3;
    color: #222;
    font-size: 15px;
    background-color: initial;
    background-image: none;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

.woocommerce #secondary .widget_product_search button:after {
    content: "\f12e";
    position: absolute;
    font-family: Grandicon;
    text-indent: 0;
    font-weight: 400;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.woocommerce #secondary .widget_product_search button:hover:after {
    color: #bf2025
}

.woocommerce #secondary .widget_product_search .search-field {
    font-size: 16px;
    height: 60px;
    color: #ededed;
    border-color: #ececf0;
    padding: 20px;
    background-color: #121212
}

.woocommerce #secondary .widget_product_search .woocommerce-product-search {
    position: relative
}

.woocommerce #secondary .widget_product_search .woocommerce-product-search:after {
    content: '';
    z-index: 1;
    height: 60px;
    width: 60px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0
}

.woocommerce #secondary .widget_products ul li {
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    min-height: 80px
}

.woocommerce #secondary .widget_products ul li .product-title a {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500
}

.woocommerce #secondary .widget_products ul li .wg-product-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

.woocommerce #secondary .widget_products ul li .wg-product-image {
    margin-right: 20px;
    width: 90px;
    min-width: 90px
}

.woocommerce #secondary .widget_products ul li .wg-product-image img {
    position: static;
    width: 100%;
    margin: 0;
    top: 0;
    left: 0;
    background-color: #121212
}

@media screen and (max-width:768px) {

    .woocommerce .coupon,
    .woocommerce-page .coupon {
        padding-bottom: 15px !important
    }

    .woocommerce .coupon #coupon_code,
    .woocommerce-page .coupon #coupon_code {
        width: 100% !important;
        margin-bottom: 15px
    }

    .woocommerce .coupon .button,
    .woocommerce-page .coupon .button {
        width: 100% !important
    }
}

.woocommerce form .form-row,
.woocommerce-page form .form-row {
    padding: 0 0 10px
}

.woocommerce table.cart td.actions .coupon .input-text,
.woocommerce-page table.cart td.actions .coupon .input-text {
    margin-right: 15px
}

.woocommerce textarea,
.woocommerce-page textarea {
    min-height: 140px
}

.woocommerce .nice-select,
.woocommerce-page .nice-select {
    border: 1px solid #343434;
    text-align: left;
    height: 51px;
    font-weight: 500
}

.woocommerce .nice-select span.current,
.woocommerce-page .nice-select span.current {
    font-size: 15px;
    line-height: 1.666
}

.woocommerce .nice-select:after,
.woocommerce .select2 .select2-selection--single .select2-selection__arrow:after,
.select2 .select2-selection--single .woocommerce .select2-selection__arrow:after,
.woocommerce-page .nice-select:after,
.woocommerce-page .select2 .select2-selection--single .select2-selection__arrow:after,
.select2 .select2-selection--single .woocommerce-page .select2-selection__arrow:after {
    color: inherit
}

.woocommerce form .select2-container--default .select2-selection,
.woocommerce-page form .select2-container--default .select2-selection {
    background-color: #121212;
    border: 1px solid #343434;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    height: 51px
}

.woocommerce form .select2-container--default .select2-selection .select2-selection__rendered,
.woocommerce-page form .select2-container--default .select2-selection .select2-selection__rendered {
    line-height: 48px;
    color: #ededed;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px
}

.woocommerce form .select2-container--default .select2-selection:hover,
.woocommerce-page form .select2-container--default .select2-selection:hover {
    border-color: #bf2025
}

.woocommerce #respond input#submit.alt,
.woocommerce-page #respond input#submit.alt,
.woocommerce #respond input#submit,
.woocommerce-page #respond input#submit,
.woocommerce a.button:not.add_to_cart_button,
.woocommerce-page a.button:not.add_to_cart_button,
.woocommerce a.wc-forward,
.woocommerce-page a.wc-forward,
.woocommerce button.button,
.woocommerce-page button.button,
.woocommerce input.button,
.woocommerce-page input.button,
.woocommerce .cart button.button,
.woocommerce-page .cart button.button,
.woocommerce a.button.alt,
.woocommerce-page a.button.alt,
.woocommerce .form-row button.button.alt,
.woocommerce-page .form-row button.button.alt {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 0 25px;
    line-height: 45px;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    clip-path: none;
    border-radius: 0;
    background-color: #bf2025;
    border: 1px solid #bf2025;
    z-index: 1;
    -webkit-box-shadow: none !important;
    -khtml-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    font-family: chakra petch, sans-serif
}

.woocommerce #respond input#submit.alt:after,
.woocommerce-page #respond input#submit.alt:after,
.woocommerce #respond input#submit:after,
.woocommerce-page #respond input#submit:after,
.woocommerce a.button:not.add_to_cart_button:after,
.woocommerce-page a.button:not.add_to_cart_button:after,
.woocommerce a.wc-forward:after,
.woocommerce-page a.wc-forward:after,
.woocommerce button.button:after,
.woocommerce-page button.button:after,
.woocommerce input.button:after,
.woocommerce-page input.button:after,
.woocommerce .cart button.button:after,
.woocommerce-page .cart button.button:after,
.woocommerce a.button.alt:after,
.woocommerce-page a.button.alt:after,
.woocommerce .form-row button.button.alt:after,
.woocommerce-page .form-row button.button.alt:after {
    position: absolute;
    top: 0 !important;
    right: 1em
}

.woocommerce #respond input#submit.alt.added,
.woocommerce-page #respond input#submit.alt.added,
.woocommerce #respond input#submit.added,
.woocommerce-page #respond input#submit.added,
.woocommerce a.button:not.add_to_cart_button.added,
.woocommerce-page a.button:not.add_to_cart_button.added,
.woocommerce a.wc-forward.added,
.woocommerce-page a.wc-forward.added,
.woocommerce button.button.added,
.woocommerce-page button.button.added,
.woocommerce input.button.added,
.woocommerce-page input.button.added,
.woocommerce .cart button.button.added,
.woocommerce-page .cart button.button.added,
.woocommerce a.button.alt.added,
.woocommerce-page a.button.alt.added,
.woocommerce .form-row button.button.alt.added,
.woocommerce-page .form-row button.button.alt.added {
    padding-right: 2.618em
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce-page #respond input#submit.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce a.button:not.add_to_cart_button:hover,
.woocommerce-page a.button:not.add_to_cart_button:hover,
.woocommerce a.wc-forward:hover,
.woocommerce-page a.wc-forward:hover,
.woocommerce button.button:hover,
.woocommerce-page button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page input.button:hover,
.woocommerce .cart button.button:hover,
.woocommerce-page .cart button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce .form-row button.button.alt:hover,
.woocommerce-page .form-row button.button.alt:hover,
.woocommerce #respond input#submit.alt:focus,
.woocommerce-page #respond input#submit.alt:focus,
.woocommerce #respond input#submit:focus,
.woocommerce-page #respond input#submit:focus,
.woocommerce a.button:not.add_to_cart_button:focus,
.woocommerce-page a.button:not.add_to_cart_button:focus,
.woocommerce a.wc-forward:focus,
.woocommerce-page a.wc-forward:focus,
.woocommerce button.button:focus,
.woocommerce-page button.button:focus,
.woocommerce input.button:focus,
.woocommerce-page input.button:focus,
.woocommerce .cart button.button:focus,
.woocommerce-page .cart button.button:focus,
.woocommerce a.button.alt:focus,
.woocommerce-page a.button.alt:focus,
.woocommerce .form-row button.button.alt:focus,
.woocommerce-page .form-row button.button.alt:focus,
.woocommerce #respond input#submit.alt:active,
.woocommerce-page #respond input#submit.alt:active,
.woocommerce #respond input#submit:active,
.woocommerce-page #respond input#submit:active,
.woocommerce a.button:not.add_to_cart_button:active,
.woocommerce-page a.button:not.add_to_cart_button:active,
.woocommerce a.wc-forward:active,
.woocommerce-page a.wc-forward:active,
.woocommerce button.button:active,
.woocommerce-page button.button:active,
.woocommerce input.button:active,
.woocommerce-page input.button:active,
.woocommerce .cart button.button:active,
.woocommerce-page .cart button.button:active,
.woocommerce a.button.alt:active,
.woocommerce-page a.button.alt:active,
.woocommerce .form-row button.button.alt:active,
.woocommerce-page .form-row button.button.alt:active,
.woocommerce #respond input#submit.alt:not([disabled]):not(.disabled).active,
.woocommerce-page #respond input#submit.alt:not([disabled]):not(.disabled).active,
.woocommerce #respond input#submit:not([disabled]):not(.disabled).active,
.woocommerce-page #respond input#submit:not([disabled]):not(.disabled).active,
.woocommerce a.button:not.add_to_cart_button:not([disabled]):not(.disabled).active,
.woocommerce-page a.button:not.add_to_cart_button:not([disabled]):not(.disabled).active,
.woocommerce a.wc-forward:not([disabled]):not(.disabled).active,
.woocommerce-page a.wc-forward:not([disabled]):not(.disabled).active,
.woocommerce button.button:not([disabled]):not(.disabled).active,
.woocommerce-page button.button:not([disabled]):not(.disabled).active,
.woocommerce input.button:not([disabled]):not(.disabled).active,
.woocommerce-page input.button:not([disabled]):not(.disabled).active,
.woocommerce .cart button.button:not([disabled]):not(.disabled).active,
.woocommerce-page .cart button.button:not([disabled]):not(.disabled).active,
.woocommerce a.button.alt:not([disabled]):not(.disabled).active,
.woocommerce-page a.button.alt:not([disabled]):not(.disabled).active,
.woocommerce .form-row button.button.alt:not([disabled]):not(.disabled).active,
.woocommerce-page .form-row button.button.alt:not([disabled]):not(.disabled).active,
.woocommerce #respond input#submit.alt:not([disabled]):not(.disabled):active,
.woocommerce-page #respond input#submit.alt:not([disabled]):not(.disabled):active,
.woocommerce #respond input#submit:not([disabled]):not(.disabled):active,
.woocommerce-page #respond input#submit:not([disabled]):not(.disabled):active,
.woocommerce a.button:not.add_to_cart_button:not([disabled]):not(.disabled):active,
.woocommerce-page a.button:not.add_to_cart_button:not([disabled]):not(.disabled):active,
.woocommerce a.wc-forward:not([disabled]):not(.disabled):active,
.woocommerce-page a.wc-forward:not([disabled]):not(.disabled):active,
.woocommerce button.button:not([disabled]):not(.disabled):active,
.woocommerce-page button.button:not([disabled]):not(.disabled):active,
.woocommerce input.button:not([disabled]):not(.disabled):active,
.woocommerce-page input.button:not([disabled]):not(.disabled):active,
.woocommerce .cart button.button:not([disabled]):not(.disabled):active,
.woocommerce-page .cart button.button:not([disabled]):not(.disabled):active,
.woocommerce a.button.alt:not([disabled]):not(.disabled):active,
.woocommerce-page a.button.alt:not([disabled]):not(.disabled):active,
.woocommerce .form-row button.button.alt:not([disabled]):not(.disabled):active,
.woocommerce-page .form-row button.button.alt:not([disabled]):not(.disabled):active {
    outline: none;
    text-decoration: none;
    color: #fff;
    background-color: initial
}

.woocommerce #respond input#submit.alt.btn-animate:hover,
.woocommerce-page #respond input#submit.alt.btn-animate:hover,
.woocommerce #respond input#submit.btn-animate:hover,
.woocommerce-page #respond input#submit.btn-animate:hover,
.woocommerce a.button:not.add_to_cart_button.btn-animate:hover,
.woocommerce-page a.button:not.add_to_cart_button.btn-animate:hover,
.woocommerce a.wc-forward.btn-animate:hover,
.woocommerce-page a.wc-forward.btn-animate:hover,
.woocommerce button.button.btn-animate:hover,
.woocommerce-page button.button.btn-animate:hover,
.woocommerce input.button.btn-animate:hover,
.woocommerce-page input.button.btn-animate:hover,
.woocommerce .cart button.button.btn-animate:hover,
.woocommerce-page .cart button.button.btn-animate:hover,
.woocommerce a.button.alt.btn-animate:hover,
.woocommerce-page a.button.alt.btn-animate:hover,
.woocommerce .form-row button.button.alt.btn-animate:hover,
.woocommerce-page .form-row button.button.alt.btn-animate:hover,
.woocommerce #respond input#submit.alt.btn-animate:focus,
.woocommerce-page #respond input#submit.alt.btn-animate:focus,
.woocommerce #respond input#submit.btn-animate:focus,
.woocommerce-page #respond input#submit.btn-animate:focus,
.woocommerce a.button:not.add_to_cart_button.btn-animate:focus,
.woocommerce-page a.button:not.add_to_cart_button.btn-animate:focus,
.woocommerce a.wc-forward.btn-animate:focus,
.woocommerce-page a.wc-forward.btn-animate:focus,
.woocommerce button.button.btn-animate:focus,
.woocommerce-page button.button.btn-animate:focus,
.woocommerce input.button.btn-animate:focus,
.woocommerce-page input.button.btn-animate:focus,
.woocommerce .cart button.button.btn-animate:focus,
.woocommerce-page .cart button.button.btn-animate:focus,
.woocommerce a.button.alt.btn-animate:focus,
.woocommerce-page a.button.alt.btn-animate:focus,
.woocommerce .form-row button.button.alt.btn-animate:focus,
.woocommerce-page .form-row button.button.alt.btn-animate:focus {
    background-color: #bf2025
}

.woocommerce a.wc-forward.btn-animate:hover,
.woocommerce-page a.wc-forward.btn-animate:hover,
.woocommerce a.wc-forward.btn-animate:focus,
.woocommerce-page a.wc-forward.btn-animate:focus {
    background-color: initial
}

.woocommerce .comment-form,
.woocommerce-page .comment-form {
    max-width: 100%
}

.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-info {
    color: #fff;
    border-color: #bf2025;
    background-color: #121212
}

.woocommerce .woocommerce-message:before,
.woocommerce-page .woocommerce-message:before,
.woocommerce .woocommerce-info:before,
.woocommerce-page .woocommerce-info:before {
    color: #bf2025
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message .button {
    padding: 0;
    text-transform: capitalize;
    line-height: 20px;
    background-color: initial;
    color: #fff
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-page .woocommerce-notices-wrapper .woocommerce-message .button:hover {
    background-color: initial;
    color: #bf2025
}

.woocommerce .quantity,
.woocommerce-page .quantity {
    position: relative;
    display: inline-block;
    border: 2px solid #242424
}

.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty {
    padding: 0 15px;
    border: none;
    color: #ededed;
    font-size: 18px;
    font-weight: 700;
    -moz-appearance: textfield;
    width: 126px;
    height: 56px;
    font-family: chakra petch, sans-serif
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce-page .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce-page .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

@media screen and (max-width:991px) {

    .woocommerce .quantity .qty,
    .woocommerce-page .quantity .qty {
        width: 110px
    }
}

.woocommerce .quantity-icon i,
.woocommerce-page .quantity-icon i {
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    height: 28px;
    width: 28px;
    line-height: 1.5;
    text-align: center;
    position: absolute;
    cursor: pointer;
    top: 50%;
    font-family: chakra petch, sans-serif;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.woocommerce .quantity-icon i.quantity-up,
.woocommerce-page .quantity-icon i.quantity-up {
    right: 10px
}

.woocommerce .quantity-icon i.quantity-down,
.woocommerce-page .quantity-icon i.quantity-down {
    left: 10px
}

.woocommerce .quantity-icon i:hover,
.woocommerce-page .quantity-icon i:hover {
    color: #bf2025
}

.woocommerce .quantity-icon i:active,
.woocommerce-page .quantity-icon i:active {
    color: #fff;
    background-color: #bf2025
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce table.shop_table td,
.woocommerce-page table.shop_table td {
    padding: 20px 15px
}

.woocommerce table.shop_table th,
.woocommerce-page table.shop_table th,
.woocommerce table.shop_table tbody th,
.woocommerce-page table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce-page table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce-page table.shop_table tfoot th {
    font-weight: 500
}

.woocommerce-page #add_payment_method table.cart img,
.woocommerce-page.woocommerce-cart table.cart img,
.woocommerce-page.woocommerce-checkout table.cart img {
    width: 50px
}

@media screen and (min-width:992px) {
    .woocommerce .content-row {
        margin: 0 -15px
    }

    .woocommerce #primary.content-has-sidebar {
        padding-left: 15px;
        padding-right: 25px;
        flex: 0 0 75%;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        -o-flex: 0 0 75%;
        max-width: 75%
    }

    .woocommerce #secondary.widget-has-sidebar {
        padding-left: 25px;
        padding-right: 15px;
        flex: 0 0 25%;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        -o-flex: 0 0 25%;
        max-width: 25%
    }
}

.woocommerce #secondary .widget_price_filter .ui-slider-horizontal {
    height: 4px;
    background-color: #e6e6e6;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #bf2025
}

.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle {
    height: 11px;
    width: 11px;
    background-color: #bf2025;
    top: -3px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    clip-path: polygon(25% 0, 100% 0, 100% 75%, 75% 100%, 0 100%, 0 25%)
}

.woocommerce #secondary .widget_price_filter .price_slider_amount {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 10px
}

.woocommerce #secondary .widget_price_filter .price_slider_amount .button {
    line-height: 36px;
    font-size: 14px;
    margin-right: 10px;
    letter-spacing: .05em;
    padding-left: 18px;
    padding-right: 18px;
    color: #ededed;
    background-color: initial;
    border: 1px solid #343434;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce #secondary .widget_price_filter .price_slider_amount .button:hover {
    border-color: #bf2025
}

.woocommerce #secondary .widget_price_filter .price_label {
    font-size: 14px;
    color: #ededed;
    font-weight: 500
}

@media screen and (min-width:1400px) {
    .woocommerce #secondary .widget_price_filter .price_slider_amount .button {
        opacity: 0;
        -webkit-transition: all 200ms linear 0ms;
        -khtml-transition: all 200ms linear 0ms;
        -moz-transition: all 200ms linear 0ms;
        -ms-transition: all 200ms linear 0ms;
        -o-transition: all 200ms linear 0ms;
        transition: all 200ms linear 0ms
    }

    .woocommerce #secondary .widget_price_filter .price_label {
        position: absolute;
        left: 0;
        -webkit-transition: all 200ms linear 0ms;
        -khtml-transition: all 200ms linear 0ms;
        -moz-transition: all 200ms linear 0ms;
        -ms-transition: all 200ms linear 0ms;
        -o-transition: all 200ms linear 0ms;
        transition: all 200ms linear 0ms
    }

    .woocommerce #secondary .widget_price_filter:hover .price_slider_amount .button {
        opacity: 1
    }

    .woocommerce #secondary .widget_price_filter:hover .price_label {
        left: 120px
    }
}

.widget_products .amount {
    font-size: 16px;
    font-weight: 500;
    color: #ededed
}

.widget_products del {
    color: #c6c6c6
}

.widget_products del .amount {
    font-weight: 400;
    color: #c6c6c6
}

.widget_products .star-rating-wrap {
    display: none !important
}

.widget_products .wg-product-holder .star-rating {
    font-size: 12px;
    height: 14px
}

.widget_products .woocommerce-product--brand {
    font-size: 14px;
    color: #c6c6c6;
    font-weight: 500;
    padding-bottom: 13px
}

.widget_rating_filter .wc-layered-nav-rating a {
    font-size: 0;
    display: block;
    padding-left: 28px !important;
    position: relative
}

.widget_rating_filter .wc-layered-nav-rating a:before {
    content: "";
    height: 18px;
    width: 18px;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 18px;
    -khtml-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    border-radius: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    -webkit-transition: all .2s cubic-bezier(.39, .575, .565, 1)0s;
    -khtml-transition: all .2s cubic-bezier(.39, .575, .565, 1)0s;
    -moz-transition: all .2s cubic-bezier(.39, .575, .565, 1)0s;
    -ms-transition: all .2s cubic-bezier(.39, .575, .565, 1)0s;
    -o-transition: all .2s cubic-bezier(.39, .575, .565, 1)0s;
    transition: all .2s cubic-bezier(.39, .575, .565, 1)0s
}

.widget_rating_filter .wc-layered-nav-rating a .star-rating {
    font-size: 14px
}

.widget_rating_filter .wc-layered-nav-rating a:hover:before {
    border-color: #bf2025;
    background-color: #bf2025
}

.widget_rating_filter .wc-layered-nav-rating.chosen a:before {
    border-color: #bf2025;
    background-color: #bf2025
}

#shop-topbar {
    border-bottom: 1px solid #e5e5e5;
    background-color: #f7f7f7
}

#shop-topbar .shop-topbar-item {
    margin: 11px 0;
    position: relative;
    padding-left: 76px;
    color: #000;
    font-size: 16px;
    min-height: 56px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

#shop-topbar .shop-topbar-item i {
    height: 56px;
    width: 56px;
    -webkit-border-radius: 56px;
    -khtml-border-radius: 56px;
    -moz-border-radius: 56px;
    -ms-border-radius: 56px;
    -o-border-radius: 56px;
    border-radius: 56px;
    border: 1px solid #e5e5e5;
    line-height: 54px;
    text-align: center;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0
}

#shop-topbar .shop-topbar-item span {
    font-weight: 500
}

#shop-breadcrumb {
    padding: 23px 0
}

#shop-breadcrumb ul {
    list-style: none;
    margin: 0
}

#shop-breadcrumb ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #bf2025;
    margin: 10px 0;
    padding: 0 12px;
    position: relative
}

#shop-breadcrumb ul li::after {
    content: '/';
    color: #e9e9e9;
    position: absolute;
    top: 0;
    right: -4px
}

#shop-breadcrumb ul li:first-child {
    padding-left: 0
}

#shop-breadcrumb ul li:last-child:after {
    display: none
}

#shop-breadcrumb ul li a {
    color: #282828
}

#shop-breadcrumb ul li a:hover {
    color: #bf2025
}

.woocommerce .star-rating-wrap {
    display: flex;
    align-items: center;
    flex-wrap: nowrap
}

.woocommerce .star-rating-wrap .star-rating {
    margin: 0
}

.woocommerce .star-rating-wrap .count-rating {
    color: #161616;
    margin-left: 4px
}

.woocommerce span.onsale {
    display: none;
    height: 45px;
    width: 45px;
    min-width: inherit;
    min-height: inherit;
    font-size: 16px;
    color: #fff;
    padding: 0;
    text-align: center;
    line-height: 45px;
    background-color: #bf2025;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    margin: 0 !important;
    top: 14px !important;
    left: 29px !important;
    right: auto !important;
    font-weight: 400;
    z-index: 1
}

.woocommerce .star-rating {
    width: 130px;
    font-size: 14px;
    margin: 0 !important
}

.woocommerce .star-rating:before,
.woocommerce .star-rating span:before {
    letter-spacing: 11px
}

.woocommerce .star-rating span {
    color: #eccc39
}

@media screen and (max-width:575px) {
    .woocommerce .star-rating {
        width: 150px
    }
}

@media screen and (min-width:992px) {
    .woocommerce #primary.content-has-sidebar ul.products.columns-4 li.product {
        width: 33.33%
    }
}

.woocommerce .woocommerce-product-category {
    font-size: 14px;
    color: inherit;
    margin-bottom: 3px
}

.woocommerce .woocommerce-product-category a {
    color: inherit
}

.woocommerce .woocommerce-product-category a:hover {
    color: #bf2025
}

.woocommerce .woocommerce-topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
    z-index: 101
}

.woocommerce .woocommerce-topbar div.woocommerce-result-count {
    margin: 0 30px 20px 0;
    flex-grow: 1
}

@media screen and (max-width:575px) {
    .woocommerce .woocommerce-topbar div.woocommerce-result-count {
        width: 50%
    }
}

.woocommerce .woocommerce-topbar .woocommerce-topbar-ordering {
    cursor: pointer;
    margin-bottom: 20px
}

@media screen and (max-width:575px) {
    .woocommerce .woocommerce-topbar .woocommerce-topbar-ordering {
        width: 50%
    }
}

.woocommerce .woocommerce-topbar .woocommerce-result-count,
.woocommerce .woocommerce-topbar .woocommerce-topbar-ordering .woocommerce-ordering {
    float: none;
    margin: 0;
    font-size: 15px;
    font-weight: 500
}

.woocommerce .woocommerce-topbar .woocommerce-ordering {
    min-width: 230px
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
    position: relative;
    padding: 12px 40px 12px 25px
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select .list {
    min-width: 230px;
    margin-left: 0 !important
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select .option {
    line-height: 42px
}

.woocommerce .woocommerce-product-inner {
    padding-top: 21px;
    z-index: 1
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header {
    position: relative;
    background-color: #121212
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
    -webkit-transition: all .5s ease;
    -khtml-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    width: auto;
    display: inline-block;
    margin-bottom: 0 !important
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-sale {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    color: #fff;
    padding: 0 9px;
    background-color: #bf2025
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    z-index: 4
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta>div {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    opacity: 0;
    -webkit-transform: translateX(10px);
    -khtml-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px)
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #bf2025;
    display: block;
    position: relative;
    padding: 0;
    font-size: 0;
    color: #fff;
    clip-path: none;
    border: 1px solid #bf2025;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: inherit;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    font-family: Grandicon;
    font-size: 18px;
    font-weight: 400
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.add_to_cart_button:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.add_to_cart_button:before {
    content: "\f12f";
    font-family: Grandicon;
    font-size: 16px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.product_type_variable:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.product_type_variable:before {
    content: "\f122";
    font-family: Grandicon;
    font-size: 17px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.added_to_cart:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.added_to_cart:before {
    content: "\f134";
    font-family: Grandicon;
    font-size: 16px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.woosc-btn:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.woosc-btn:before {
    font-family: Grandicon;
    content: "\f111"
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.woosw-btn:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.woosw-btn:before {
    font-family: Grandicon;
    content: "\f11a"
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.woosw-added:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.woosw-added:before {
    font-family: "font awesome 5 free";
    content: "\f004";
    font-weight: 700
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.woosq-btn:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.woosq-btn:before {
    font-family: Grandicon;
    content: "\f13a"
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a:hover,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button:hover {
    background-color: initial
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta a:hover:before,
.woocommerce .woocommerce-product-inner .woocommerce-product-meta button:hover:before {
    color: #bf2025
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a {
    margin: 0;
    display: inline-flex;
    overflow: hidden;
    text-transform: capitalize
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.added {
    display: none
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.loading {
    opacity: 1;
    padding-right: 35px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.loading i {
    -webkit-transform: translateX(100px);
    -khtml-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px)
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.loading:after {
    right: 28px;
    top: 0;
    -webkit-transition-delay: .8s;
    -moz-transition-delay: .8s;
    transition-delay: .8s
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.wc-forward {
    opacity: 0
}

.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.wc-forward:after {
    content: "\f12f";
    font-family: Grandicon;
    margin-left: 6px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content {
    position: relative;
    padding-top: 20px;
    z-index: 2
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content .star-rating {
    font-size: 14px !important
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content .count-rating {
    display: none
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content .woocommerce-product--rating {
    justify-content: center;
    display: flex
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content .woocommerce-product--rating .star-rating {
    margin: 0;
    height: 17px;
    overflow: hidden
}

.woocommerce .woocommerce-product-inner .woocommerce-product-content>.price {
    margin-bottom: 11px !important;
    line-height: 22px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-title {
    padding: 0 !important
}

.woocommerce .woocommerce-product-inner .woocommerce-product-title a {
    color: inherit
}

.woocommerce .woocommerce-product-inner .woocommerce-product-title a:hover {
    color: #bf2025
}

.woocommerce .woocommerce-product-inner .woocommerce-product-attr {
    margin-bottom: 12px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-attr img {
    width: auto !important;
    margin: 0 !important
}

.woocommerce .woocommerce-product-inner:hover .woocommerce-product-content .woocommerce-add-to-cart {
    bottom: -42px;
    opacity: 1;
    visibility: visible
}

.woocommerce .woocommerce-product-inner.cart-added .woocommerce-product-content .woocommerce-add-to-cart {
    bottom: -42px;
    opacity: 1;
    visibility: visible
}

.woocommerce .woocommerce-product-inner:hover .woocommerce-product-meta>div {
    opacity: 1;
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

.woocommerce .woocommerce-product-inner:hover .woocommerce-add-to-cart:not(.woocommerce-add-to-cart-grid) a.wc-forward {
    opacity: 1
}

.woocommerce .woocommerce-product-inner:hover .woocommerce-product-content .woocommerce-add-to-cart {
    opacity: 1 !important;
    bottom: 50px !important
}

.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-details img {
    transform: scale(.9);
    -webkit-filter: Saturate(70%)
}

.woocommerce .product-type-grouped .woocommerce-product-header .woocommerce-product-meta {
    display: none !important
}

.woocommerce nav.woocommerce-pagination {
    text-align: left;
    margin-top: 27px
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
    display: block;
    border: none
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li {
    border: none;
    overflow: visible
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    padding: 0;
    margin-right: 20px;
    background-color: initial;
    text-align: center;
    color: #ededed;
    border: 1px solid #343434;
    z-index: 1;
    font-family: chakra petch, sans-serif
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current {
    color: #fff;
    background-color: #bf2025;
    border-color: #bf2025
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):before,
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):after {
    content: '';
    position: absolute;
    background: #161616;
    z-index: -1;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):before {
    width: 0;
    height: calc(100% + 2px);
    top: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):after {
    height: 0;
    width: calc(100% + 2px);
    left: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):hover {
    color: #fff;
    border-color: #bf2025;
    background-size: 10% 10%;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):hover:before {
    width: calc(100% - 20%)
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:not(.current):hover:after {
    height: calc(100% - 30%)
}

.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px
}

.woocommerce ul.products li.product {
    margin-bottom: 30px !important;
    margin-right: 0;
    margin-left: 0;
    padding: 0 15px
}

.woocommerce ul.products li.product.sale .woocommerce-product-sale {
    display: block
}

.woocommerce ul.products li.product.last {
    margin-right: 0
}

.woocommerce ul.products li.product>.woosw-btn,
.woocommerce ul.products li.product>.woosq-btn,
.woocommerce ul.products li.product>.woosc-btn {
    display: none !important
}

.woocommerce ul.products li.product .price {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: #c6c6c6;
    font-family: chakra petch, sans-serif
}

.woocommerce ul.products li.product .price .amount {
    color: #fff
}

.woocommerce ul.products li.product .price del {
    font-size: 16px;
    font-weight: 600;
    padding-left: 10px;
    opacity: 1;
    order: 2
}

.woocommerce ul.products li.product .price del .amount {
    color: #c6c6c6
}

.woocommerce ul.products li.product .price ins {
    color: #bf2025;
    font-weight: 700;
    padding: 0;
    order: 1
}

.woocommerce ul.products li.product .woocommerce-product-title,
.woocommerce ul.products li.product .woocommerce-product--title {
    margin-bottom: 4px
}

.woocommerce ul.products li.product .woocommerce-product--category {
    font-size: 14px;
    color: #c6c6c6;
    font-weight: 500
}

.woocommerce ul.products li.product .woocommerce-product--category a {
    color: #c6c6c6;
    font-family: mulish, sans-serif
}

.woocommerce ul.products li.product .woocommerce-product--category a:hover {
    color: #bf2025
}

.woocommerce ul.products li.product .woocommerce-product--brand {
    font-size: 14px;
    color: #c6c6c6;
    font-weight: 500
}

.woocommerce ul.products li.product .woocommerce-product--features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px
}

@media screen and (max-width:1199px) {
    .woocommerce ul.products li.product .woocommerce-product--features .woocommerce-product--price {
        width: 100%
    }

    .woocommerce ul.products li.product .woocommerce-product--features .woocommerce-add-to--cart {
        width: 100%;
        margin-top: 5px
    }

    .woocommerce ul.products li.product .woocommerce-product--features .woocommerce-add-to--cart a {
        text-align: left
    }
}

.woocommerce ul.products li.product .woocommerce-add-to--cart {
    overflow: hidden
}

.woocommerce ul.products li.product .woocommerce-add-to--cart .add_to_cart_button,
.woocommerce ul.products li.product .woocommerce-add-to--cart .button {
    display: block;
    color: #ededed;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 0;
    padding: 5px 0;
    background-color: initial;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce ul.products li.product .woocommerce-add-to--cart .add_to_cart_button:before,
.woocommerce ul.products li.product .woocommerce-add-to--cart .button:before {
    content: '\f054';
    font-family: "font awesome 5 pro";
    color: #ededed;
    position: relative;
    bottom: 3px;
    font-size: 10px;
    line-height: 1;
    background-color: #bf2025;
    padding: 4.5px 6.5px 5.5px 7.5px;
    margin-right: 10px;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.woocommerce ul.products li.product .woocommerce-add-to--cart .add_to_cart_button span,
.woocommerce ul.products li.product .woocommerce-add-to--cart .button span {
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    overflow: hidden;
    -webkit-transition: background-position 300ms ease;
    -khtml-transition: background-position 300ms ease;
    -moz-transition: background-position 300ms ease;
    -ms-transition: background-position 300ms ease;
    -o-transition: background-position 300ms ease;
    transition: background-position 300ms ease
}

.woocommerce ul.products li.product .woocommerce-add-to--cart .add_to_cart_button:hover span,
.woocommerce ul.products li.product .woocommerce-add-to--cart .button:hover span {
    background-position: 0 100%
}

.woocommerce ul.products li.product .woocommerce-add-to--cart .add_to_cart_button.loading:after,
.woocommerce ul.products li.product .woocommerce-add-to--cart .button.loading:after {
    content: "\e031";
    font-family: woocommerce;
    vertical-align: top;
    font-weight: 400;
    position: absolute;
    top: 15%;
    right: 35%;
    -webkit-animation: spin 2s linear infinite;
    -khtml-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.woocommerce ul.products li.product .woocommerce-add-to--cart .added_to_cart.wc-forward {
    display: none
}

@media screen and (min-width:992px) {
    .woocommerce ul.products.columns-4 li.product {
        width: 25%
    }
}

@media screen and (max-width:991px) {
    .woocommerce ul.products.columns-4 li.product {
        width: 33.33%
    }
}

@media screen and (min-width:768px) {
    .woocommerce ul.products.columns-3 li.product {
        width: 33.33%
    }

    .woocommerce ul.products.columns-2 li.product {
        width: 50%
    }
}

@media(min-width:576px) and (max-width:767px) {
    .woocommerce ul.products li.product {
        width: 50% !important
    }
}

@media screen and (max-width:575px) {
    .woocommerce ul.products li.product {
        width: 100% !important
    }
}

.woocommerce ul.products.ct-products-list li.product {
    width: 100% !important
}

.woocommerce ul.products.ct-products-list .woocommerce-product-header {
    width: 35%;
    padding: 40px 30px 50px
}

@media screen and (max-width:575px) {
    .woocommerce ul.products.ct-products-list .woocommerce-product-header {
        width: 100%
    }
}

.woocommerce ul.products.ct-products-list .woocommerce-product-content {
    width: 65%;
    text-align: left;
    padding: 40px 30px 50px
}

@media screen and (max-width:575px) {
    .woocommerce ul.products.ct-products-list .woocommerce-product-content {
        width: 100%;
        padding: 0
    }
}

.woocommerce ul.products.ct-products-list .woocommerce-product-content .woocommerce-product--rating {
    justify-content: flex-start
}

.woocommerce ul.products.ct-products-list .woocommerce-product--excerpt {
    display: block !important;
    margin-top: 12px
}

.woocommerce ul.products.ct-products-list .woocommerce-product-inner {
    display: flex;
    flex-wrap: wrap
}

.woocommerce ul.products.ct-products-list .woocommerce-product-inner .woocommerce-product-meta {
    top: 20px;
    right: 20px
}

.single-product .woocommerce-social-share {
    border-top: 2px solid #242424;
    padding-top: 28px;
    margin-top: 28px;
    display: flex;
    align-items: center
}

.single-product .woocommerce-social-share label {
    color: #fff;
    font-weight: 600;
    margin-right: 10px;
    position: relative;
    padding-left: 25px
}

.single-product .woocommerce-social-share label svg {
    position: absolute;
    top: 8px;
    left: 0;
    max-height: 15px;
    display: inline-block;
    margin-right: 3px;
    fill: #bf2025
}

.single-product .woocommerce-social-share a {
    color: #fff;
    font-size: 14px;
    margin-right: 6px;
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 32px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #c6c6c6
}

.single-product .woocommerce-social-share a i {
    line-height: 1
}

.single-product .woocommerce-social-share a:hover {
    border-color: #bf2025
}

.single-product .woocommerce-summary-wrap {
    margin: 0 -25px
}

.single-product .woocommerce-summary-wrap>.col-xl-6 {
    padding: 0 25px
}

.single-product #shop-breadcrumb {
    padding-bottom: 46px
}

.single-product #shop-newsletter {
    margin-top: 30px
}

.single-product .woocommerce-sg-product-price {
    padding-top: 21px
}

.single-product .woocommerce-sg-product-price p {
    margin-bottom: 12px
}

.single-product section.related h2 {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 10px
}

.single-product section.related ul.products {
    margin-bottom: 0
}

.single-product section.related ul.products li.product {
    margin-bottom: 0 !important
}

.single-product section.related ul.products li:first-child,
.single-product section.related ul.products li+li {
    margin-top: 30px !important
}

.single-product #primary div.product .entry-summary {
    width: 100% !important;
    margin-bottom: 80px
}

@media screen and (min-width:768px) {
    .single-product #primary div.product .entry-summary {
        position: sticky;
        top: 62px
    }
}

.single-product #primary div.product .woocommerce-product-gallery {
    width: 100% !important;
    margin-bottom: 80px
}

@media screen and (max-width:991px) {
    .single-product #primary div.product .woocommerce-product-gallery {
        margin-bottom: 30px
    }
}

.single-product #primary div.product .woocommerce-product-details__short-description p,
.single-product>div.product .woocommerce-product-details__short-description p {
    font-size: 16px;
    margin-bottom: 15px
}

.single-product #primary div.product .woocommerce-product-details__short-description p:last-child,
.single-product>div.product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0
}

.single-product #primary div.product .woocommerce-sg-product-feature,
.single-product>div.product .woocommerce-sg-product-feature {
    margin-bottom: 71px;
    list-style: none
}

.single-product #primary div.product .woocommerce-sg-product-feature li,
.single-product>div.product .woocommerce-sg-product-feature li {
    display: flex;
    flex-wrap: nowrap
}

.single-product #primary div.product .woocommerce-sg-product-feature li i,
.single-product>div.product .woocommerce-sg-product-feature li i {
    margin-right: 8px;
    margin-top: 6px;
    color: #bf2025
}

.single-product #primary div.product .woocommerce-sg-product-feature li p:last-child,
.single-product>div.product .woocommerce-sg-product-feature li p:last-child {
    margin-bottom: 0
}

.single-product #primary div.product .woocommerce-sg-product-feature li+li,
.single-product>div.product .woocommerce-sg-product-feature li+li {
    margin-top: 10px
}

.single-product #primary div.product form.cart,
.single-product>div.product form.cart {
    margin-bottom: 20px
}

.single-product #primary div.product form.cart label,
.single-product>div.product form.cart label {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-family: chakra petch, sans-serif
}

.single-product #primary div.product form.cart .reset_variations,
.single-product>div.product form.cart .reset_variations {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    margin-top: 6px;
    display: none;
    visibility: visible !important
}

.single-product #primary div.product form.cart .reset_variations:hover,
.single-product>div.product form.cart .reset_variations:hover {
    color: #bf2025
}

.single-product #primary div.product form.cart .variations td.label,
.single-product>div.product form.cart .variations td.label {
    padding: 0
}

.single-product #primary div.product form.cart .variations td.woo-variation-items-wrapper,
.single-product>div.product form.cart .variations td.woo-variation-items-wrapper {
    padding: 0;
    margin-bottom: 12px
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item,
.single-product>div.product form.cart .button-variable-wrapper .button-variable-item {
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
    background-color: #f9f9f9
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item .variable-item-span-button,
.single-product>div.product form.cart .button-variable-wrapper .button-variable-item .variable-item-span-button {
    font-size: 15px;
    line-height: 26px;
    padding: 0 8px;
    color: #383838
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item.selected,
.single-product>div.product form.cart .button-variable-wrapper .button-variable-item.selected,
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item:hover,
.single-product>div.product form.cart .button-variable-wrapper .button-variable-item:hover {
    background-color: #bf2025;
    box-shadow: 0 0 0 1px #bf2025
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item.selected .variable-item-span-button,
.single-product>div.product form.cart .button-variable-wrapper .button-variable-item.selected .variable-item-span-button,
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item:hover .variable-item-span-button,
.single-product>div.product form.cart .button-variable-wrapper .button-variable-item:hover .variable-item-span-button {
    color: #fff
}

.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item,
.single-product>div.product form.cart .color-variable-wrapper .color-variable-item {
    border: 1px solid #c6c6c6;
    padding: 2px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    opacity: 1
}

.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item .variable-item-span-color,
.single-product>div.product form.cart .color-variable-wrapper .color-variable-item .variable-item-span-color {
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%
}

.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item .variable-item-span-color:after,
.single-product>div.product form.cart .color-variable-wrapper .color-variable-item .variable-item-span-color:after {
    display: none
}

.single-product #primary div.product form.cart.variations_form .woocommerce-variation-add-to-cart,
.single-product>div.product form.cart.variations_form .woocommerce-variation-add-to-cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.single-product #primary div.product form.cart.variations_form .woocommerce-variation-price,
.single-product>div.product form.cart.variations_form .woocommerce-variation-price {
    margin: 0 0 24px
}

.single-product #primary div.product form.cart:not(.variations_form),
.single-product>div.product form.cart:not(.variations_form),
.single-product #primary div.product form.cart:not(.grouped_form),
.single-product>div.product form.cart:not(.grouped_form) {
    display: flex;
    margin: 0 0 20px;
    align-items: center;
    flex-wrap: wrap
}

.single-product #primary div.product form.cart .woocommerce-grouped-product-list td,
.single-product>div.product form.cart .woocommerce-grouped-product-list td {
    vertical-align: middle
}

.single-product #primary div.product .woocommerce-gallery span.onsale,
.single-product>div.product .woocommerce-gallery span.onsale {
    display: none
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    top: 46px;
    right: 30px;
    color: #fff;
    border: 1px solid #bf2025;
    background-color: #bf2025;
    overflow: hidden;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

@media screen and (max-width:991px) {

    .single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger,
    .single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
        top: 30px;
        right: 20px
    }
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
    border-color: #fff
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
    background: #fff
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
    background-color: initial;
    border-color: #bf2025
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover:before,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover:before {
    border-color: #bf2025
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover:after,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover:after {
    background: #bf2025
}

.single-product #primary div.product .woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger,
.single-product>div.product .woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__image {
    pointer-events: none !important;
    padding-top: 6px;
    padding-bottom: 50px
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img,
.single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    padding: 20.5% 30px;
    background-color: #121212;
    object-fit: contain;
    object-position: center center;
    height: 620px
}

@media screen and (max-width:991px) {

    .single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img,
    .single-product>div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
        padding: 0 !important;
        height: auto !important
    }
}

.single-product #primary div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image,
.single-product>div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image {
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

.single-product #primary div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img,
.single-product>div.product .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
    padding: 20.5% 30px 20.5% 140px
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav,
.single-product>div.product .woocommerce-product-gallery .flex-control-nav {
    position: absolute;
    top: 46px;
    left: 30px;
    display: inline-block;
    width: 119px
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li,
.single-product>div.product .woocommerce-product-gallery .flex-control-nav li {
    display: inline-block;
    clear: left;
    float: left;
    width: inherit;
    margin-bottom: 20px
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img,
.single-product>div.product .woocommerce-product-gallery .flex-control-nav img {
    padding: 15px 20px;
    border: 1px solid #242424;
    background-color: #121212;
    opacity: .7;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1)
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img.flex-active,
.single-product>div.product .woocommerce-product-gallery .flex-control-nav img.flex-active {
    opacity: 1;
    border-color: #bf2025
}

@media screen and (max-width:991px) {

    .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav,
    .single-product>div.product .woocommerce-product-gallery .flex-control-nav {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        justify-content: space-between
    }

    .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li,
    .single-product>div.product .woocommerce-product-gallery .flex-control-nav li {
        width: 200px
    }
}

.single-product #primary div.product .entry-summary>.woosc-btn,
.single-product>div.product .entry-summary>.woosc-btn,
.single-product #primary div.product .entry-summary>.woosw-btn,
.single-product>div.product .entry-summary>.woosw-btn {
    display: none !important
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button,
.single-product>div.product .entry-summary .woocommerce-sg-product-button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 30px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button a,
.single-product>div.product .entry-summary .woocommerce-sg-product-button a,
.single-product #primary div.product .entry-summary .woocommerce-sg-product-button button,
.single-product>div.product .entry-summary .woocommerce-sg-product-button button {
    display: flex;
    font-size: 15px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button a:before,
.single-product>div.product .entry-summary .woocommerce-sg-product-button a:before,
.single-product #primary div.product .entry-summary .woocommerce-sg-product-button button:before,
.single-product>div.product .entry-summary .woocommerce-sg-product-button button:before {
    margin-right: 10px;
    font-family: Grandicon;
    font-weight: 400;
    font-size: 18px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosc-btn,
.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosc-btn {
    margin-right: 16px;
    background-color: #c6c6c6
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosc-btn:before,
.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosc-btn:before {
    content: "\f111"
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosc-btn:hover,
.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosc-btn:hover {
    background-color: #bf2025;
    border-color: #bf2025;
    color: #fff
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosw-btn,
.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosw-btn {
    font-size: 14px;
    line-height: 2.14;
    background-color: initial;
    color: #ededed;
    padding: 0;
    text-transform: uppercase
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosw-btn:before,
.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosw-btn:before {
    content: '';
    display: none
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosw-btn:hover,
.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosw-btn:hover {
    color: #bf2025
}

.single-product #primary div.product .entry-summary .woocommerce-product-rating,
.single-product>div.product .entry-summary .woocommerce-product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 21px
}

.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link,
.single-product>div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
    font-size: 16px;
    color: inherit;
    margin-left: 4px
}

@media screen and (max-width:575px) {

    .single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link,
    .single-product>div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
        font-size: 13px
    }
}

.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link:hover,
.single-product>div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link:hover {
    color: #bf2025
}

.single-product #primary div.product .entry-summary .entry-title,
.single-product>div.product .entry-summary .entry-title {
    font-size: 42px;
    line-height: 1.2;
    padding-top: 15px;
    margin-bottom: 14px;
    text-transform: uppercase
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .entry-summary .entry-title,
    .single-product>div.product .entry-summary .entry-title {
        font-size: 30px
    }
}

.single-product #primary div.product .entry-summary .price,
.single-product>div.product .entry-summary .price {
    display: flex;
    align-items: center;
    font-size: 29px;
    font-weight: 700;
    color: #ededed;
    font-family: chakra petch, sans-serif
}

.single-product #primary div.product .entry-summary .price ins,
.single-product>div.product .entry-summary .price ins {
    margin-right: 22px;
    color: #ededed;
    order: 1
}

.single-product #primary div.product .entry-summary .price del,
.single-product>div.product .entry-summary .price del {
    color: #c6c6c6;
    order: 2
}

.single-product #primary div.product .entry-summary .price del .amount,
.single-product>div.product .entry-summary .price del .amount {
    color: #c6c6c6
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt .woocommerce-product-details__short-description,
.single-product>div.product .entry-summary .woocommerce-sg-product-excerpt .woocommerce-product-details__short-description {
    margin-bottom: 43px
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button,
.single-product>div.product .entry-summary .single_add_to_cart_button {
    clear: left;
    display: flex;
    padding: 0 46.5px;
    line-height: 56px;
    margin-right: 15px;
    font-weight: 600;
    background-color: #bf2025;
    text-transform: uppercase;
    border-radius: 0;
    border: 2px solid #bf2025;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    font-family: chakra petch, sans-serif
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button.loading,
.single-product>div.product .entry-summary .single_add_to_cart_button.loading {
    padding: 0 46.5px 0 16.5px
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button.loading:after,
.single-product>div.product .entry-summary .single_add_to_cart_button.loading:after {
    content: '\e031';
    top: 0;
    right: 14px
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button.added,
.single-product>div.product .entry-summary .single_add_to_cart_button.added {
    padding: 0 15.5px
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button.added:after,
.single-product>div.product .entry-summary .single_add_to_cart_button.added:after {
    display: none
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button:hover,
.single-product>div.product .entry-summary .single_add_to_cart_button:hover,
.single-product #primary div.product .entry-summary .single_add_to_cart_button:focus,
.single-product>div.product .entry-summary .single_add_to_cart_button:focus {
    background-color: initial;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

@media screen and (max-width:575px) {

    .single-product #primary div.product .entry-summary .single_add_to_cart_button,
    .single-product>div.product .entry-summary .single_add_to_cart_button {
        padding: 0 8px;
        line-height: 46px
    }
}

.single-product #primary div.product .entry-summary .added_to_cart,
.single-product>div.product .entry-summary .added_to_cart {
    font-weight: 500;
    padding-top: 0;
    text-transform: uppercase
}

.single-product #primary div.product .entry-summary .added_to_cart:before,
.single-product>div.product .entry-summary .added_to_cart:before {
    content: '\f07a';
    font-family: "font awesome 5 pro";
    position: relative;
    font-size: 15px;
    margin-right: 10px;
    line-height: 1;
    color: #ededed;
    overflow: hidden
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs,
.single-product>div.product .woocommerce-tabs ul.wc-tabs {
    overflow: visible;
    padding-left: 0;
    margin-top: -30px;
    position: relative;
    z-index: 1
}

@media screen and (max-width:575px) {

    .single-product #primary div.product .woocommerce-tabs ul.wc-tabs,
    .single-product>div.product .woocommerce-tabs ul.wc-tabs {
        margin-bottom: 30px
    }
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before,
.single-product>div.product .woocommerce-tabs ul.wc-tabs:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #343434;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:after,
.single-product>div.product .woocommerce-tabs ul.wc-tabs:after {
    display: none !important
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li {
    margin: 0;
    padding: 0 55px 0 0;
    font-size: 23px;
    text-transform: uppercase;
    border: none;
    background-color: initial;
    position: relative;
    z-index: 99;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:before,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li:before,
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:after,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li:after {
    display: none
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li a {
    position: relative;
    color: #ededed;
    padding: 1.5em 0 .5em;
    z-index: 1;
    font-family: chakra petch, sans-serif
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:after,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    border-top: 3px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active>a:after,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li.active>a:after,
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:hover:after,
.single-product>div.product .woocommerce-tabs ul.wc-tabs li a:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel p,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel p {
    font-size: 16px;
    margin-bottom: 15px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
    margin-bottom: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel>h2,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel>h2 {
    display: none
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
    margin-bottom: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes {
    margin-bottom: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
    font-size: 16px;
    border-bottom: none;
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
    padding: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th {
    width: 240px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-noreviews,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-noreviews {
    margin-bottom: 25px !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel#tab-description,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel#tab-description,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel#tab-reviews,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel#tab-reviews {
    padding: 10px 0
}

.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list,
.single-product>div.product .woocommerce-tabs .tab-product-feature-list {
    font-size: 18px;
    line-height: 34px
}

.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .col-xl-4,
.single-product>div.product .woocommerce-tabs .tab-product-feature-list .col-xl-4 {
    font-weight: 600
}

.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .line-gap,
.single-product>div.product .woocommerce-tabs .tab-product-feature-list .line-gap {
    margin: 0;
    width: 100%
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews label[for=rating],
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews label[for=rating],
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews label[for=comment],
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews label[for=comment],
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-cookies-consent,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-cookies-consent {
    margin-top: 25px !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment+.comment-form-author,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment+.comment-form-author {
    margin: 25px 0 !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes {
    margin-bottom: 15px
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes {
        margin: 40px 0 15px !important
    }

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes+.comment-form-rating,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-notes+.comment-form-rating {
        margin-top: 0
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
    margin-bottom: 15px
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
        margin: 40px 0 15px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating label,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating label {
    margin-bottom: 10px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating a,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating a {
    color: #999;
    padding-right: 20px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars {
    cursor: pointer
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars:hover a,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars:hover a,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars.selected a,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars.selected a {
    color: #eccc39
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment label,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-comment label {
    margin-bottom: 8px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
    font-size: 24px;
    margin-bottom: 12px
}

@media screen and (max-width:575px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
        font-size: 22px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .nice-select,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .nice-select {
    display: none !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form #comment,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form #comment {
    height: 140px;
    min-height: 140px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit {
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px)
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit {
    padding: 0 25px;
    line-height: 45px;
    margin-top: 20px;
    min-width: auto;
    height: auto;
    color: #fff;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #comments,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #comments {
    width: 50%;
    padding: 0 20px 0 15px
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #comments,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #comments {
        width: 100%;
        padding: 0 15px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #review_form_wrapper,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #review_form_wrapper {
    width: 50%;
    padding: 0 15px 0 20px
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #review_form_wrapper,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews #review_form_wrapper {
        width: 100%;
        padding: 0 15px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist {
    padding: 10px 0 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #121212
}

@media screen and (max-width:1199px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
        padding: 20px 15px 20px 20px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
    position: absolute;
    right: 0;
    top: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap .count-rating,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap .count-rating {
    display: none
}

@media screen and (max-width:991px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
        position: static;
        margin-bottom: 8px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container {
    position: relative
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
    padding: 0;
    width: 80px;
    border: none
}

@media screen and (max-width:575px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
        width: 40px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
    border: none;
    margin: 0;
    padding: 0 0 0 100px
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating {
        float: none;
        margin-bottom: 8px
    }
}

@media screen and (max-width:575px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
        padding-left: 60px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
    margin: 0 0 8px;
    font-size: 16px
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta,
    .single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
        display: block;
        margin: 8px 0
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date {
    display: block;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
    color: #bf2025
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
    display: block;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    font-family: chakra petch, sans-serif
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__dash,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__dash {
    display: none
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p {
    margin: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review:last-child,
.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review:last-child {
    margin-bottom: 0
}

.single-product #primary div.product .quantity,
.single-product>div.product .quantity {
    margin-right: 55px !important
}

@media screen and (max-width:767px) {

    .single-product #primary div.product .quantity,
    .single-product>div.product .quantity {
        margin-right: 15px !important
    }
}

.single-product #primary div.product .product_meta,
.single-product>div.product .product_meta {
    display: flex;
    flex-wrap: wrap;
    color: inherit
}

.single-product #primary div.product .product_meta>span,
.single-product>div.product .product_meta>span {
    display: block;
    width: 100%;
    color: #ededed;
    font-size: 14px;
    line-height: 2.14;
    text-transform: uppercase
}

.single-product #primary div.product .product_meta a,
.single-product>div.product .product_meta a {
    color: inherit;
    font-weight: 600
}

.single-product #primary div.product .product_meta a:hover,
.single-product>div.product .product_meta a:hover {
    color: #bf2025
}

body.woocommerce-cart .cart-empty.woocommerce-info {
    padding: 112px 0 0;
    background-color: initial;
    border: none;
    text-align: center !important;
    color: #222
}

body.woocommerce-cart .cart-empty.woocommerce-info:before {
    content: "\f12f";
    font-family: Grandicon;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: #f8f8f8;
    line-height: 100px;
    font-size: 30px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0)
}

body.woocommerce-cart .entry-content>.woocommerce {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap
}

body.woocommerce-cart .entry-content>.woocommerce .woocommerce-cart-form {
    flex-grow: 1;
    padding: 0 15px
}

body.woocommerce-cart .entry-content>.woocommerce .cart-collaterals {
    width: 100%;
    max-width: 370px;
    padding: 0 15px
}

body.woocommerce-cart .entry-content>.woocommerce .cart-collaterals .cart_totals {
    width: 100%
}

body.woocommerce-cart .entry-content>.woocommerce .woocommerce-notices-wrapper {
    display: flex;
    width: 100%;
    padding: 0 15px
}

body.woocommerce-cart .entry-content>.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
    width: 100%
}

body.woocommerce-cart .entry-content>.woocommerce .woocommerce-notices-wrapper .woocommerce-message .restore-item {
    font-weight: 600
}

body.woocommerce-cart .entry-content>.woocommerce .cart-empty.woocommerce-info {
    width: 100%;
    text-align: left;
    color: #fff
}

body.woocommerce-cart .entry-content>.woocommerce .return-to-shop {
    width: 100%
}

body.woocommerce-cart .entry-content>.woocommerce .return-to-shop .button {
    text-transform: uppercase;
    color: #ededed !important;
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important
}

body.woocommerce-cart .woocommerce-cart-form .actions .button {
    text-transform: uppercase;
    padding: 10px 29px 7px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px);
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important
}

body.woocommerce-cart .woocommerce-cart-form.processing .actions .button {
    opacity: .1
}

body.woocommerce-cart .woocommerce-cart-form table.cart td.actions .input-text {
    width: 250px !important;
    height: 45px;
    padding: 0 20px;
    font-size: 15px;
    border-color: #343434
}

body.woocommerce-cart .woocommerce-cart-form table.cart td.actions button {
    color: #fff
}

body.woocommerce-cart .woocommerce-cart-form .shop_table thead th {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding: 25px 10px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #bf2025
}

body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td {
    text-align: left;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td.actions {
    border-bottom: none
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name a {
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name a:hover {
    color: #bf2025
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name dl.variation {
    display: none
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-price,
body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal {
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-price ins,
body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal ins {
    color: #fff;
    background-color: initial
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail {
    text-align: center !important;
    min-width: 120px
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a {
    display: block
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a img {
    width: 100%;
    max-width: 80px
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table {
    margin-bottom: 50px;
    border: none;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody td:before {
    font-size: 16px
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table tbody .product-quantity:before {
    margin-top: 10px
}

body.woocommerce-cart .cart-collaterals .cart_totals {
    background-color: #121212;
    padding: 40px 50px;
    width: 33.33%
}

@media screen and (max-width:991px) {
    body.woocommerce-cart .cart-collaterals .cart_totals {
        width: 50%;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media screen and (max-width:991px) {
    body.woocommerce-cart .cart-collaterals .cart_totals {
        padding: 30px;
        width: 100%
    }
}

body.woocommerce-cart .cart-collaterals .cart_totals>h2 {
    font-size: 24px;
    border-bottom: 1px solid rgba(96, 101, 104, .15);
    margin-bottom: 20px;
    padding-bottom: 14px;
    text-transform: capitalize
}

body.woocommerce-cart .cart-collaterals .cart_totals th {
    vertical-align: middle !important;
    border: none !important;
    color: inherit;
    font-weight: 400;
    padding: 12px 10px 12px 0
}

body.woocommerce-cart .cart-collaterals .cart_totals th+td {
    border-left: 1px solid #ebebeb
}

body.woocommerce-cart .cart-collaterals .cart_totals td {
    border: none !important;
    padding: 12px 10px;
    text-align: right
}

body.woocommerce-cart .cart-collaterals .cart_totals strong {
    font-weight: 600
}

body.woocommerce-cart .cart-collaterals .cart_totals .order-total th,
body.woocommerce-cart .cart-collaterals .cart_totals .order-total td {
    color: #fff;
    font-weight: 700
}

body.woocommerce-cart .cart-collaterals .cart_totals .shop_table {
    border: none
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator p {
    margin-bottom: 0
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button {
    color: #bf2025
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after {
    position: relative;
    top: 1px
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover {
    color: #bf2025
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
    padding-top: 10px
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    padding-bottom: 0
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
    margin-bottom: 0;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    padding: 18px 20px 15px;
    font-size: 16px
}

@media screen and (max-width:777px) {
    body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
        padding: 13px 25px 10px
    }
}

body.woocommerce-cart .cart-collaterals .cart_totals.processing .wc-proceed-to-checkout .checkout-button {
    opacity: .1
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    text-align: right
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error {
    color: #fff;
    background-color: #121212
}

.woocommerce-checkout form.checkout_coupon {
    border: 1px solid #343434;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: #121212
}

.woocommerce-checkout form.checkout_coupon .form-row-first {
    width: 50%;
    padding-right: 30px
}

.woocommerce-checkout form.checkout_coupon .form-row-first input.input-text {
    padding: 29px 0 12px
}

.woocommerce-checkout form.checkout_coupon .form-row-last {
    width: 50%
}

@media screen and (max-width:777px) {
    .woocommerce-checkout form.checkout_coupon .form-row-first {
        width: 100%;
        padding-right: 0
    }

    .woocommerce-checkout form.checkout_coupon .form-row-last {
        width: 100%;
        justify-content: flex-end;
        margin-top: 20px
    }
}

.woocommerce-checkout .woocommerce-checkout .place-order button,
.woocommerce-checkout .woocommerce-form-coupon .place-order button,
.woocommerce-checkout .woocommerce-checkout .form-row-last button,
.woocommerce-checkout .woocommerce-form-coupon .form-row-last button {
    text-transform: uppercase;
    color: #ededed;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce-checkout .woocommerce-checkout.processing button,
.woocommerce-checkout .woocommerce-form-coupon.processing button {
    opacity: 0
}

.woocommerce-checkout input.input-text {
    border-bottom: 1px solid #343434
}

.woocommerce-checkout input.input-text:focus {
    border-color: #bf2025
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
    background-color: #121212;
    color: #fff
}

.woocommerce-checkout #add_payment_method #payment,
.woocommerce-checkout #payment {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce-checkout #customer_details {
    padding: 0 15px;
    width: 50%
}

@media screen and (max-width:767px) {
    .woocommerce-checkout #customer_details {
        width: 100%
    }
}

.woocommerce-checkout #customer_details>div {
    float: none;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 0
}

.woocommerce-checkout #customer_details span.woocommerce-input-wrapper {
    width: 100%;
    display: block
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields {
    margin-bottom: 36px
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields>h3 {
    font-size: 24px;
    margin-bottom: 18px;
    text-transform: capitalize
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields .update_totals_on_change {
    margin: 20px 0
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields input[placeholder="House number and street name"] {
    margin-bottom: 10px
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields #billing_address_2_field,
.woocommerce-checkout #customer_details .woocommerce-billing-fields #billing_state_field,
.woocommerce-checkout #customer_details .woocommerce-billing-fields #billing_state_field>label {
    margin-bottom: 20px
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields .form-row.woocommerce-invalid label {
    font-weight: 500
}

.woocommerce-checkout #customer_details .woocommerce-additional-fields {
    margin-bottom: 36px
}

.woocommerce-checkout #customer_details .woocommerce-additional-fields>h3 {
    font-size: 24px;
    margin-bottom: 18px;
    text-transform: capitalize
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address {
    font-size: 24px;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -khtml-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address:hover {
    color: #bf2025
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {
    position: absolute;
    opacity: 0
}

.woocommerce-checkout #customer_details #billing_country_field label,
.woocommerce-checkout #customer_details #shipping_country_field label,
.woocommerce-checkout #customer_details #billing_address_1_field label,
.woocommerce-checkout #customer_details #shipping_address_1_field label,
.woocommerce-checkout #customer_details #order_comments_field label {
    display: none !important
}

.woocommerce-checkout #customer_details #billing_country_field textarea,
.woocommerce-checkout #customer_details #shipping_country_field textarea,
.woocommerce-checkout #customer_details #billing_address_1_field textarea,
.woocommerce-checkout #customer_details #shipping_address_1_field textarea,
.woocommerce-checkout #customer_details #order_comments_field textarea {
    padding: 12px 0;
    border-bottom: 1px solid #343434
}

.woocommerce-checkout #customer_details #billing_country_field textarea:focus,
.woocommerce-checkout #customer_details #shipping_country_field textarea:focus,
.woocommerce-checkout #customer_details #billing_address_1_field textarea:focus,
.woocommerce-checkout #customer_details #shipping_address_1_field textarea:focus,
.woocommerce-checkout #customer_details #order_comments_field textarea:focus {
    border-color: #bf2025
}

.woocommerce-checkout form.woocommerce-checkout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px
}

@media screen and (max-width:991px) {
    .woocommerce-checkout form.woocommerce-checkout .about_paypal {
        display: none
    }
}

.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: capitalize
}

.woocommerce-checkout form.woocommerce-checkout .ct-checkout-order-review {
    width: 50%;
    padding: 0 15px
}

@media screen and (max-width:767px) {
    .woocommerce-checkout form.woocommerce-checkout .ct-checkout-order-review {
        width: 100%
    }
}

.woocommerce-checkout form.woocommerce-checkout #order_review th {
    font-weight: 500;
    vertical-align: middle !important
}

.woocommerce-checkout form.woocommerce-checkout #order_review th+td {
    border-left: 1px solid #ebebeb
}

.woocommerce-checkout form.woocommerce-checkout #order_review .product-total {
    border-left: 1px solid #ebebeb
}

.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
    margin-bottom: 60px;
    border-right: none;
    border-top: none
}

.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th {
    font-weight: 700
}

.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
    border-left: none
}

.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .order-total td {
    font-size: 14px;
    font-weight: 700;
    color: #bf2025
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment {
    background-color: #121212;
    border: none
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .about_paypal {
    margin-left: 10px
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_method+.wc_payment_method {
    margin-top: 12px
}

@media screen and (max-width:991px) {
    .woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_method input {
        margin-right: 6px
    }
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_methods {
    padding: 30px;
    border: none
}

@media screen and (max-width:991px) {
    .woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_methods {
        padding-left: 20px;
        padding-right: 20px
    }
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .place-order {
    padding: 30px;
    margin: 0;
    position: relative
}

@media screen and (max-width:991px) {
    .woocommerce-checkout form.woocommerce-checkout #order_review #payment .place-order {
        padding-left: 20px;
        padding-right: 20px
    }
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .place-order:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
    display: block
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order {
    float: none;
    margin-top: 10px
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment div.payment_box {
    border: 1px solid #242424;
    background-color: #121212;
    color: #ededed
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment div.payment_box:before {
    top: -.95em;
    border-bottom-color: #242424
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment div.payment_box .form-row {
    width: 100%;
    margin: 0
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment ul.payment_methods .stripe-card-group {
    width: 100%
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment ul.payment_methods li img {
    width: 40px
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment div.form-row {
    margin: 0
}

.woocommerce-checkout .showcoupon,
.woocommerce-checkout .woocommerce-privacy-policy-link {
    font-weight: 600;
    text-decoration: underline
}

.woocommerce-account .site-content #primary .woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
    display: block;
    width: 100%
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
    width: 30%;
    float: left;
    padding: 0 15px
}

@media screen and (max-width:767px) {
    .woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 60px
    }
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul {
    margin: 0;
    list-style: none
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #eaeaea
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a {
    font-size: 16px;
    padding: 10px 0;
    font-weight: 600;
    position: relative;
    display: block
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
    color: #bf2025
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:before {
    content: "\f104";
    font-family: Grandicon;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
    color: #bf2025;
    margin-left: -16px;
    opacity: 0;
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 10px
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active>a,
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
    color: inherit;
    padding-left: 22px
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active>a:before,
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover:before {
    margin-left: 0;
    opacity: 1
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
    margin-bottom: 30px;
    padding: 0 15px;
    width: 70%;
    float: left
}

@media screen and (max-width:767px) {
    .woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
        width: 100%;
        margin-bottom: 0
    }
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-1,
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-2 {
    flex: inherit;
    max-width: inherit
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row label {
    width: 100%
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row .woocommerce-input-wrapper {
    width: 100%
}

.woocommerce-account .site-content #primary .woocommerce-form {
    background-color: #f8f8f8;
    border: 1px solid #343434;
    padding: 30px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    max-width: 670px;
    margin: 0 auto 30px
}

.woocommerce-account .site-content #primary .woocommerce-form label {
    font-weight: 500;
    margin-bottom: 2px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button.button {
    margin-right: 16px;
    height: auto
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword {
    margin-bottom: 0
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a {
    color: #bf2025
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a:hover {
    color: #bf2025
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox {
    padding: 0;
    line-height: 50px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox span {
    font-size: 15px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
    position: relative;
    top: -1px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button {
    height: 42px
}

.woocommerce-account .site-content #primary .woocommerce-notices-wrapper+h2 {
    text-align: center;
    font-size: 24px
}

.woocommerce-account .site-content #primary #customer_login {
    margin: 0 -15px;
    width: inherit;
    display: flex;
    flex-wrap: wrap
}

.woocommerce-account .site-content #primary #customer_login h2 {
    font-size: 24px
}

.woocommerce-account .site-content #primary #customer_login .u-column1.col-1,
.woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
    width: 50%;
    flex: inherit;
    max-width: 100%
}

@media screen and (max-width:767px) {
    .woocommerce-account .site-content #primary #customer_login {
        margin: 0
    }

    .woocommerce-account .site-content #primary #customer_login .u-column1.col-1,
    .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
        width: 100%;
        padding: 0
    }
}

.woocommerce-account .site-content #primary .woocommerce-password-strength.bad {
    background-color: initial;
    padding: 8px 0
}

.woosw-list .woosw-content-item--title a,
#woosw-area .woosw-content-item--title a {
    color: #fff
}

.woosw-list .woosw-content-item--title a:hover,
#woosw-area .woosw-content-item--title a:hover {
    color: #bf2025
}

.woosw-list .woosw-content-item--price,
#woosw-area .woosw-content-item--price {
    color: #bf2025;
    font-weight: 600;
    font-size: 15px
}

.woosw-list .woosw-content-item--add .add_to_cart_button.loading,
#woosw-area .woosw-content-item--add .add_to_cart_button.loading {
    padding-right: 36px !important
}

.woosw-list .woosw-content-item--add .add_to_cart_button.loading:after,
#woosw-area .woosw-content-item--add .add_to_cart_button.loading:after {
    top: 0;
    right: 16px
}

.woosw-list .woosw-actions {
    display: none
}

.woosw-list .woosw-content-mid-notice {
    text-align: center;
    color: #222;
    padding-top: 112px;
    position: relative
}

.woosw-list .woosw-content-mid-notice:before {
    content: "\f12f";
    font-family: Grandicon;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: #f8f8f8;
    line-height: 100px;
    font-size: 30px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    position: absolute;
    color: #bf2025
}

.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .add_to_cart_button,
.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .added_to_cart {
    background-color: #bf2025;
    line-height: 40px;
    padding: 0 22px;
    font-size: 14px;
    width: auto;
    min-width: auto;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    -webkit-border-radius: 26px;
    -khtml-border-radius: 26px;
    -moz-border-radius: 26px;
    -ms-border-radius: 26px;
    -o-border-radius: 26px;
    border-radius: 26px
}

@media screen and (max-width:767px) {

    .woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .add_to_cart_button,
    .woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .added_to_cart {
        min-width: 85px;
        padding: 8px 3px;
        line-height: 1.2;
        -webkit-border-radius: 15px;
        -khtml-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
        font-size: 12px
    }
}

.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .add_to_cart_button:hover,
.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .added_to_cart:hover,
.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .add_to_cart_button:focus,
.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .added_to_cart:focus {
    background-color: #c6c6c6
}

.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .add_to_cart_button.added,
.woosw-list table.woosw-content-items .woosw-content-item .woosw-content-item--add .added_to_cart.added {
    display: none
}

@media screen and (min-width:1200px) {
    .woosw-list .woosw-content-item--actions {
        width: 22%
    }
}

#woosw-area .woosw-content-item--add .button,
#woosw-area .woosw-content-item--add .add_to_cart_button,
#woosw-area .woosw-content-item--add .added_to_cart {
    line-height: 40px;
    padding: 0 18px;
    font-size: 14px;
    width: auto;
    min-width: auto;
    display: inline-block
}

#woosw-area .woosw-content-item--add .button.added,
#woosw-area .woosw-content-item--add .add_to_cart_button.added,
#woosw-area .woosw-content-item--add .added_to_cart.added {
    display: none
}

@media screen and (max-width:767px) {

    #woosw-area .woosw-content-item--add .button,
    #woosw-area .woosw-content-item--add .add_to_cart_button,
    #woosw-area .woosw-content-item--add .added_to_cart {
        min-width: 85px;
        padding: 8px 3px;
        -webkit-border-radius: 15px;
        -khtml-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
        font-size: 12px;
        line-height: 1.2
    }
}

#woosw-area .woosw-content-item--info,
#woosw-area .woosw-content-item--actions {
    text-align: center
}

#woosw-area.woosw-area {
    background-color: rgba(0, 0, 0, .8)
}

#woosw-area.woosw-area .woosw-content {
    -webkit-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -khtml-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -o-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 40px 60px rgba(0, 0, 0, .2)
}

#woosq-popup .summary-content .product_meta {
    margin-bottom: 30px
}

#woosq-popup .summary-content .woocommerce-product-details__short-description {
    margin-bottom: 20px
}

#woosq-popup .ps-theme-wpc>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    background-color: #bf2025;
    width: 3px !important;
    -webkit-border-radius: 3px !important;
    -khtml-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;
    border-radius: 3px !important
}

#woosq-popup .single_add_to_cart_button.loading {
    padding-right: 38px
}

#woosq-popup .single_add_to_cart_button.loading:after {
    top: 0;
    right: 15px
}

#woosq-popup .quantity .input-text {
    width: 60px
}

@media screen and (max-width:575px) {
    #woosq-popup .quantity .input-text {
        height: 46px
    }
}

.wooscp_list .wooscp-no-result {
    text-align: center;
    font-weight: 500;
    color: #fff
}

#wooscp-area .wooscp-no-result {
    text-align: center;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    padding-top: 112px
}

#wooscp-area .wooscp-no-result:before {
    content: "\f12f";
    font-family: Grandicon;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: #f8f8f8;
    line-height: 100px;
    font-size: 30px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    position: absolute;
    color: #bf2025
}

#wooscp-area .tr-add_to_cart .add_to_cart_button.loading,
.wooscp_list .tr-add_to_cart .add_to_cart_button.loading {
    padding-right: 30px
}

#wooscp-area .tr-add_to_cart .add_to_cart_button.loading:after,
.wooscp_list .tr-add_to_cart .add_to_cart_button.loading:after {
    right: 12px;
    top: 0
}

#wooscp-area .tr-add_to_cart .add_to_cart_button,
.wooscp_list .tr-add_to_cart .add_to_cart_button,
#wooscp-area .tr-add_to_cart .added_to_cart,
.wooscp_list .tr-add_to_cart .added_to_cart,
#wooscp-area .tr-add_to_cart .product_type_variable,
.wooscp_list .tr-add_to_cart .product_type_variable {
    line-height: 40px;
    padding: 0 18px;
    font-size: 14px;
    width: auto;
    min-width: auto;
    display: inline-block
}

#wooscp-area .tr-add_to_cart .add_to_cart_button.added,
.wooscp_list .tr-add_to_cart .add_to_cart_button.added,
#wooscp-area .tr-add_to_cart .added_to_cart.added,
.wooscp_list .tr-add_to_cart .added_to_cart.added,
#wooscp-area .tr-add_to_cart .product_type_variable.added,
.wooscp_list .tr-add_to_cart .product_type_variable.added {
    display: none
}

@media screen and (max-width:767px) {

    #wooscp-area .tr-add_to_cart .add_to_cart_button,
    .wooscp_list .tr-add_to_cart .add_to_cart_button,
    #wooscp-area .tr-add_to_cart .added_to_cart,
    .wooscp_list .tr-add_to_cart .added_to_cart,
    #wooscp-area .tr-add_to_cart .product_type_variable,
    .wooscp_list .tr-add_to_cart .product_type_variable {
        min-width: 85px;
        padding: 8px 3px;
        line-height: 1.2;
        -webkit-border-radius: 15px;
        -khtml-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
        font-size: 12px
    }
}

#wooscp-area .ps-theme-wpc>.ps-scrollbar-y-rail>.ps-scrollbar-y,
.wooscp_list .ps-theme-wpc>.ps-scrollbar-y-rail>.ps-scrollbar-y {
    background-color: #bf2025;
    width: 3px !important;
    -webkit-border-radius: 3px !important;
    -khtml-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;
    border-radius: 3px !important
}

#wooscp-area .wooscp_table th a,
.wooscp_list .wooscp_table th a {
    color: #fff
}

#wooscp-area .wooscp_table .td-label,
.wooscp_list .wooscp_table .td-label {
    font-weight: 600
}

#wooscp-area #wooscp_table th a,
.wooscp_list #wooscp_table th a {
    color: #fff
}

#wooscp-area #wooscp_table .td-label,
.wooscp_list #wooscp_table .td-label {
    font-weight: 600
}

#wooscp-area #wooscp_table .woocommerce-product-attributes,
.wooscp_list #wooscp_table .woocommerce-product-attributes {
    border: none;
    background-color: initial !important
}

#wooscp-area #wooscp_table .woocommerce-product-attributes th,
.wooscp_list #wooscp_table .woocommerce-product-attributes th,
#wooscp-area #wooscp_table .woocommerce-product-attributes td,
.wooscp_list #wooscp_table .woocommerce-product-attributes td {
    padding: 0;
    border: none;
    background-color: initial !important
}

#wooscp-area #wooscp_table .woocommerce-product-attributes th p,
.wooscp_list #wooscp_table .woocommerce-product-attributes th p,
#wooscp-area #wooscp_table .woocommerce-product-attributes td p,
.wooscp_list #wooscp_table .woocommerce-product-attributes td p {
    margin-bottom: 0
}

.wooscp-popup.wooscp-search {
    background-color: rgba(0, 0, 0, .8)
}

.wooscp-popup.wooscp-search .wooscp-popup-close {
    background-color: rgba(0, 0, 0, .1)
}

.wooscp-popup.wooscp-search .wooscp-popup-content {
    -webkit-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -khtml-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -o-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 40px 60px rgba(0, 0, 0, .2)
}

.wooscp-area .wooscp-inner .wooscp-table .wooscp-table-inner .wooscp-table-items table tbody tr.tr-image:hover td {
    background-color: #fff
}

body .mfp-bg.mfp-woosq.mfp-ready {
    opacity: 1;
    background-color: rgba(0, 0, 0, .8)
}

body .mfp-wrap #woosq-popup {
    -webkit-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -khtml-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -ms-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    -o-box-shadow: 0 40px 60px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 40px 60px rgba(0, 0, 0, .2)
}

.woocommerce-lost-password .woocommerce-error {
    max-width: 440px;
    margin: auto
}

.woocommerce-lost-password .woocommerce-ResetPassword {
    border: 1px solid #efefef;
    background-color: #f9f9f9;
    padding: 35px 30px 25px;
    max-width: 440px;
    margin: auto
}

.woocommerce-lost-password .woocommerce-ResetPassword p {
    width: 100% !important;
    float: none !important
}

.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button {
    width: 100%;
    height: 54px;
    line-height: 54px !important;
    padding: 0 30px !important;
    color: #fff !important
}

.woocommerce-archive-layout {
    display: flex;
    margin-bottom: 20px;
    margin-right: 22px
}

@media screen and (max-width:575px) {
    .woocommerce-archive-layout {
        width: 100%;
        margin-right: 0
    }

    .woocommerce-archive-layout .archive-layout:first-child {
        margin-left: 0
    }
}

.woocommerce-archive-layout .archive-layout {
    width: 30px;
    height: 30px;
    margin-left: 15px;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    background-position: 50%;
    background-repeat: no-repeat;
    cursor: pointer
}

.woocommerce-archive-layout .archive-layout.layout-grid {
    background-image: url(../images/layout-grid.png)
}

.woocommerce-archive-layout .archive-layout.layout-list {
    background-image: url(../images/layout-list.png)
}

.woocommerce-archive-layout .archive-layout:hover.layout-grid,
.woocommerce-archive-layout .archive-layout.active.layout-grid {
    background-image: url(../images/layout-grid-hover.png)
}

.woocommerce-archive-layout .archive-layout:hover.layout-list,
.woocommerce-archive-layout .archive-layout.active.layout-list {
    background-image: url(../images/layout-list-hover.png)
}

.ct-privacy-policy .ct-text-editor h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 22px
}

.ct-privacy-policy .ct-text-editor h4,
.ct-privacy-policy .ct-text-editor .ct-countdown-layout1 .countdown-amount,
.ct-countdown-layout1 .ct-privacy-policy .ct-text-editor .countdown-amount {
    font-size: 20px;
    font-weight: 500
}

.ct-privacy-policy .ct-text-editor p {
    margin-bottom: 24px
}

.woosw-popup-content-bot-inner a,
.woosw-continue {
    font-weight: 600
}

@media screen and (max-width:575px) {

    .woosw-popup-content-bot-inner a,
    .woosw-continue {
        font-size: 13px
    }
}

.woosw-popup-content-bot-inner a:hover,
.woosw-continue:hover {
    color: #fff !important;
    border-color: #bf2025 !important
}

.woosw-popup .woosw-items .woosw-item--actions,
.woosw-list .woosw-items .woosw-item--actions {
    text-align: center
}

@media screen and (max-width:575px) {

    .woosw-popup .woosw-items .woosw-item--actions a,
    .woosw-list .woosw-items .woosw-item--actions a {
        font-size: 13px;
        min-width: 60px;
        line-height: 23px
    }

    .woosw-popup .woosw-items .woosw-item--actions .added_to_cart,
    .woosw-list .woosw-items .woosw-item--actions .added_to_cart {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap
    }

    .woosw-popup .woosw-items .woosw-item--actions .added_to_cart:before,
    .woosw-list .woosw-items .woosw-item--actions .added_to_cart:before {
        margin-right: 0
    }
}

.select2-container .select2-results .select2-results__options li {
    padding: 6px 12px
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout .woocommerce-error {
    margin: 0 15px 2em
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-mid,
.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot {
    background-color: #161616
}

.woosq-product>.product .summary {
    background-color: #161616
}

.woocommerce-tabs-custom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 150px;
    padding: 158.5px 0
}

@media screen and (max-width:991px) {
    .woocommerce-tabs-custom {
        margin-top: 85px;
        padding: 100px 0
    }
}

.woocommerce-tabs-custom .woocommerce-content {
    width: 45%
}

@media screen and (max-width:1199px) {
    .woocommerce-tabs-custom .woocommerce-content {
        width: 50%
    }
}

@media screen and (max-width:991px) {
    .woocommerce-tabs-custom .woocommerce-content {
        width: 100%
    }
}

.woocommerce-tabs-custom .woocommerce-content .text-title {
    margin-bottom: 25px
}

.woocommerce-tabs-custom .woocommerce-content .text-description {
    margin-bottom: 54px
}

.woocommerce-tabs-custom .woocommerce-bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    margin-left: -50vw;
    left: 50%;
    background-color: #121212;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: -1
}

.woocommerce-tabs-custom+.related.products {
    padding-top: 156px
}

@media screen and (max-width:991px) {
    .woocommerce-tabs-custom+.related.products {
        padding-top: 90px
    }
}

.woocommerce-tabs.wc-tabs-wrapper+.related.products {
    padding-top: 136px
}

@media screen and (max-width:991px) {
    .woocommerce-tabs.wc-tabs-wrapper+.related.products {
        padding-top: 70px
    }
}

.woosq-popup .slick-list .slick-slide img {
    background-color: #121212
}

.woosq-popup .slick-arrow {
    color: #fff !important
}

.woosq-popup .slick-arrow:hover {
    background-color: rgba(255, 255, 255, .1) !important
}

.woosq-popup .slick-dots li button:before {
    background-color: #fff !important
}

.woosw-popup .woosw-popup-inner .woosw-popup-close:after {
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.woosw-popup .woosw-popup-inner .woosw-popup-close:hover:after {
    -webkit-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.woosw-popup .add_to_cart_button {
    text-transform: uppercase;
    color: #ededed !important;
    background-color: initial !important;
    border: 2px solid #bf2025 !important;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important
}

.woosw-popup .add_to_cart_button:hover,
.woosw-popup .add_to_cart_button:focus {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

.woosw-popup .add_to_cart_button.loading:after {
    content: "\e031"
}

.woosw-popup .add_to_cart_button.added {
    display: none
}

.woosw-popup .added_to_cart.wc-forward {
    font-weight: 500;
    padding-top: 0;
    text-transform: uppercase
}

.woosw-popup .added_to_cart.wc-forward:before {
    content: '\f07a';
    font-family: "font awesome 5 pro";
    position: relative;
    font-size: 15px;
    margin-right: 10px;
    line-height: 1;
    color: #ededed;
    overflow: hidden
}

.blockUI {
    background-color: rgba(192, 192, 192, .6)
}

.woosq-product>.product .summary .summary-content {
    padding: 30px
}

.woocommerce #respond input#submit.loading::after,
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after {
    content: "\e031"
}

.woosw-list .woosw-items .woosw-item--add .add_to_cart_button {
    padding: 0 46.5px;
    line-height: 56px;
    margin-right: 15px;
    color: #fff;
    font-weight: 600;
    background-color: #bf2025;
    text-transform: uppercase;
    border-radius: 0;
    border: 2px solid #bf2025;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    font-family: chakra petch, sans-serif
}

.woosw-list .woosw-items .woosw-item--add .add_to_cart_button.loading {
    padding: 0 46.5px 0 16.5px
}

.woosw-list .woosw-items .woosw-item--add .add_to_cart_button.loading:after {
    content: '\e031';
    top: 0;
    right: 14px
}

.woosw-list .woosw-items .woosw-item--add .add_to_cart_button.added {
    padding: 0 15.5px
}

.woosw-list .woosw-items .woosw-item--add .add_to_cart_button.added:after {
    display: none
}

.woosw-list .woosw-items .woosw-item--add .add_to_cart_button:hover,
.woosw-list .woosw-items .woosw-item--add .add_to_cart_button:focus {
    color: #fff;
    background-color: initial;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px)
}

@media screen and (max-width:575px) {
    .woosw-list .woosw-items .woosw-item--add .add_to_cart_button {
        padding: 0 8px;
        line-height: 46px
    }
}

.woosw-list .woosw-items .woosw-item--add .added_to_cart.wc-forward {
    font-weight: 500;
    padding-top: 0;
    text-transform: uppercase
}

.woosw-list .woosw-items .woosw-item--add .added_to_cart.wc-forward:before {
    content: '\f07a';
    font-family: "font awesome 5 pro";
    position: relative;
    font-size: 15px;
    margin-right: 10px;
    line-height: 1;
    color: #ededed;
    overflow: hidden
}

@media screen and (max-width:575px) {
    .woosw-list .woosw-items .woosw-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center
    }

    .woosw-list .woosw-items .woosw-item .woosw-item--info {
        width: 100%
    }

    .woosw-list .woosw-items .woosw-item .add_to_cart_inline {
        display: flex;
        align-items: center
    }

    .woosw-list .woosw-items .woosw-item+.woosw-item {
        margin-top: 20px
    }
}

.woocommerce #respond input#submit.added::after,
.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after {
    display: none
}

.woocommerce .woocommerce-Button.button {
    color: #fff;
    padding: 14px 39px 11px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.woocommerce .woocommerce-MyAccount-content .input-text {
    border-bottom: 1px solid #343434
}

.woocommerce .woocommerce-MyAccount-content .input-text:focus {
    border-color: #bf2025
}

.woocommerce .woocommerce-EditAccountForm .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide .woocommerce-Input.woocommerce-Input--text.input-text+span {
    margin-top: 20px
}

.woocommerce .woocommerce-EditAccountForm input[type=text] {
    padding-right: 2.5rem
}

.woocommerce .woocommerce-EditAccountForm .woocommerce-Button.button {
    margin-top: 20px
}

.woocommerce .woocommerce-Addresses .woocommerce-Address-title {
    display: flex;
    align-items: center
}

.woocommerce .woocommerce-Addresses .woocommerce-Address-title h3 {
    width: 100%;
    margin-bottom: 0
}

.woocommerce .woocommerce-Addresses .woocommerce-Address-title a {
    width: min-content;
    height: 35px;
    padding: 5px;
    background-color: #bf2025
}

.woocommerce .woocommerce-Addresses .woocommerce-Address-title a:hover {
    background-color: initial
}

.woocommerce .woocommerce-address-fields .country_to_state.country_select,
.woocommerce .woocommerce-address-fields .state_select {
    margin-top: 20px
}

.woocommerce .woocommerce-address-fields .button {
    color: #fff;
    padding: 14px 39px 11px;
    margin-top: 20px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

#stripe-exp-element,
#stripe-cvc-element {
    width: 100%
}

.packetery-widget-button-table-row {
    display: flex;
    align-items: center
}

.packetery-widget-button-table-row th {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.woocommerce-checkout #payment #wc-stripe-cc-form .form-row {
    padding: 1em 0
}

.cpsw-stripe-info {
    word-wrap: break-word
}

.wc-empty-cart-message {
    width: 100%;
    margin-bottom: 20px
}

body:not(.elementor-editor-active) .ct-slick-slider {
    height: 150px;
    overflow: hidden;
    opacity: 0
}

.slick-slide.slick-cloned img.lazyload {
    max-width: 100px
}

.ct-slick-carousel[data-vertical=false] .slick-list .slick-track {
    display: flex
}

#elementor-panel-get-pro-elements {
    display: none !important
}

.elementor-icons-manager__tab__item {
    height: 80px !important
}

.elementor-element .elementor-widget:not(:last-child) {
    margin-bottom: 0
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container.elementor-column-gap-default {
    max-width: 1360px
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container.elementor-column-gap-extended {
    max-width: 1360px
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container.elementor-column-gap-extended .elementor-section-boxed>.elementor-column-gap-no {
    max-width: 1360px
}

.elementor-editor-active .site-footer-custom,
.elementor-editor-active #ct-header-wrap,
.elementor-editor-active #ct-header-elementor,
.elementor-editor-active #pagetitle {
    display: none !important
}

.elementor-editor-active .elementor-element--toggle-edit-tools.elementor-widget-empty {
    background-color: initial
}

.elementor-editor-active .tnp-field>label {
    display: none
}

.elementor-editor-active .site-content {
    padding: 0 !important
}

.site-content .elementor-container.elementor-column-gap-default,
.site-footer-custom .elementor-container.elementor-column-gap-default,
#ct-header-elementor .elementor-container.elementor-column-gap-default {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #000000bb;
}

.site-content .elementor-container.elementor-column-gap-extended,
.site-footer-custom .elementor-container.elementor-column-gap-extended,
#ct-header-elementor .elementor-container.elementor-column-gap-extended {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.site-content .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed>.elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed>.elementor-column-gap-extended,
#ct-header-elementor .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed>.elementor-column-gap-extended {
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -khtml-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    margin: 0
}

.site-content .elementor-widget-text-editor,
.site-footer-custom .elementor-widget-text-editor,
#ct-header-elementor .elementor-widget-text-editor {
    color: inherit;
    font-family: inherit;
    font-weight: inherit
}

.site-content .elementor-inner-section .elementor-column-gap-extended .elementor-row .elementor-column:last-child,
.site-footer-custom .elementor-inner-section .elementor-column-gap-extended .elementor-row .elementor-column:last-child,
#ct-header-elementor .elementor-inner-section .elementor-column-gap-extended .elementor-row .elementor-column:last-child {
    margin-right: -1px;
    padding-right: 1px
}

.site-content .elementor-section.elementor-section-stretched .elementor-inner-section .elementor-column-gap-extended {
    margin: 0 -15px
}

.site-footer-custom .elementor-section:not(.elementor-section-full_width) .elementor-inner-section .elementor-container.elementor-column-gap-extended,
#ct-header-elementor .elementor-section:not(.elementor-section-full_width) .elementor-inner-section .elementor-container.elementor-column-gap-extended {
    margin: 0 -15px
}

.footer-template-default #ct-masthead,
.header-template-default #ct-masthead,
.footer-template-default #pagetitle,
.header-template-default #pagetitle,
.footer-template-default #ct-header-elementor,
.header-template-default #ct-header-elementor,
.footer-template-default .site-footer-default,
.header-template-default .site-footer-default {
    display: none
}

.elementor-section-full_width.landing-boxed>.elementor-container {
    max-width: 1810px;
    padding: 0 55px
}

@media screen and (max-width:1260px) {
    .elementor-section-full_width.landing-boxed>.elementor-container {
        padding: 0 15px
    }
}

.elementor-section-full_width.landing-boxed>.elementor-container>.elementor-row {
    background-color: #fff;
    -webkit-box-shadow: 0 0 54px rgba(7, 0, 76, .3);
    -khtml-box-shadow: 0 0 54px rgba(7, 0, 76, .3);
    -moz-box-shadow: 0 0 54px rgba(7, 0, 76, .3);
    -ms-box-shadow: 0 0 54px rgba(7, 0, 76, .3);
    -o-box-shadow: 0 0 54px rgba(7, 0, 76, .3);
    box-shadow: 0 0 54px rgba(7, 0, 76, .3);
    overflow: hidden
}

.elementor-section-full_width.landing-boxed>.elementor-container>.elementor-row .elementor-element>.elementor-container {
    margin-left: auto;
    margin-right: auto
}

.elementor-section-full_width.landing-boxed>.elementor-container>.elementor-row {
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

.ct-text-editor .ct-text-inner {
    display: inline-block;
    color: #fff;
}

.ct-text-editor .ct-text-inner p:last-child {
    margin-bottom: 0
}

.elementor-widget-icon-box .elementor-icon i:before {
    position: static
}

body .elementor-widget-icon-box.elementor-view-framed .elementor-icon,
body .elementor-widget-icon-box.elementor-view-default .elementor-icon {
    fill: #bf2025;
    color: #bf2025;
    border-color: #bf2025
}

.single-footer #ct-masthead,
.elementor_library-template-default.single-elementor_library #ct-masthead,
.single-footer #colophon,
.elementor_library-template-default.single-elementor_library #colophon {
    display: none
}

.elementor_library-template-default .entry-meta,
.elementor_library-template-default .entry-footer,
.elementor_library-template-default .post-previous-next,
.elementor_library-template-default #secondary {
    display: none
}

.elementor_library-template-default #content #primary {
    padding-left: 15px;
    padding-right: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media screen and (max-width:1199px) {

    .col-offset-left>.elementor-column-wrap .elementor-widget-wrap,
    .col-offset-left>.elementor-widget-wrap {
        padding-left: 0 !important
    }

    .col-offset-right>.elementor-column-wrap .elementor-widget-wrap,
    .col-offset-right>.elementor-widget-wrap {
        padding-right: 0 !important
    }
}

@media screen and (max-width:1024px) {
    .ct-column-order>.elementor-container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse
    }
}

@media screen and (min-width:1200px) {
    .ct-row-scroll-fixed>.elementor-container {
        align-items: flex-start;
        justify-content: space-between
    }

    .ct-row-scroll-fixed .ct-column-sticky {
        position: sticky;
        top: 100px
    }
}

.ct-fancy-box .item--particle,
.ct-section-particle-show .item--particle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden
}

.ct-fancy-box .item--particle .dotWrapper,
.ct-section-particle-show .item--particle .dotWrapper {
    position: absolute;
    z-index: 1
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-1,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-1 {
    top: 58%;
    left: 83%;
    -webkit-animation: flying 29s ease-in-out -7.1s infinite alternate;
    animation: flying 29s ease-in-out -7.1s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-2,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-2 {
    top: 24%;
    left: 63%;
    -webkit-animation: flying 39s ease-in-out -7.9s infinite alternate;
    animation: flying 39s ease-in-out -7.9s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-3,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-3 {
    top: 91%;
    left: 81%;
    -webkit-animation: flying 63s ease-in-out -4.4s infinite alternate;
    animation: flying 63s ease-in-out -4.4s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-4,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-4 {
    top: 89%;
    left: 85%;
    -webkit-animation: flying 56s ease-in-out -3.4s infinite alternate;
    animation: flying 56s ease-in-out -3.4s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-5,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-5 {
    top: 45%;
    left: 47%;
    -webkit-animation: flying 37s ease-in-out -2.3s infinite alternate;
    animation: flying 37s ease-in-out -2.3s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-6,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-6 {
    top: 28%;
    left: 7%;
    -webkit-animation: flying 41s ease-in-out -4.3s infinite alternate;
    animation: flying 41s ease-in-out -4.3s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-7,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-7 {
    top: 70%;
    left: 2%;
    -webkit-animation: flying 64s ease-in-out -.9s infinite alternate;
    animation: flying 64s ease-in-out -.9s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-8,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-8 {
    top: 100%;
    left: 17%;
    -webkit-animation: flying 66s ease-in-out -7.9s infinite alternate;
    animation: flying 66s ease-in-out -7.9s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-9,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-9 {
    top: 12%;
    left: 24%;
    -webkit-animation: flying 25s ease-in-out -5s infinite alternate;
    animation: flying 25s ease-in-out -5s infinite alternate
}

.ct-fancy-box .item--particle .dotWrapper.dotWrapper-10,
.ct-section-particle-show .item--particle .dotWrapper.dotWrapper-10 {
    top: 88%;
    left: 12%;
    -webkit-animation: flying 54s ease-in-out -6.3s infinite alternate;
    animation: flying 54s ease-in-out -6.3s infinite alternate
}

.ct-fancy-box .item--particle .dot,
.ct-section-particle-show .item--particle .dot {
    width: 5px;
    height: 5px;
    background: #bf2025;
    border-radius: 50%
}

.ct-fancy-box .item--particle .dot.dot-1,
.ct-section-particle-show .item--particle .dot.dot-1 {
    transform-origin: 5px -6px;
    -webkit-animation: rotating 21s ease-in-out -8.4s infinite;
    animation: rotating 21s ease-in-out -8.4s infinite
}

.ct-fancy-box .item--particle .dot.dot-2,
.ct-section-particle-show .item--particle .dot.dot-2 {
    transform-origin: 6px 7px;
    -webkit-animation: rotating 20s ease-in-out -6.5s infinite;
    animation: rotating 20s ease-in-out -6.5s infinite
}

.ct-fancy-box .item--particle .dot.dot-3,
.ct-section-particle-show .item--particle .dot.dot-3 {
    transform-origin: 0 9px;
    -webkit-animation: rotating 19s ease-in-out -9.4s infinite;
    animation: rotating 19s ease-in-out -9.4s infinite
}

.ct-fancy-box .item--particle .dot.dot-4,
.ct-section-particle-show .item--particle .dot.dot-4 {
    transform-origin: 5px 10px;
    -webkit-animation: rotating 18s ease-in-out -9.6s infinite;
    animation: rotating 18s ease-in-out -9.6s infinite
}

.ct-fancy-box .item--particle .dot.dot-5,
.ct-section-particle-show .item--particle .dot.dot-5 {
    transform-origin: 5px -3px;
    -webkit-animation: rotating 29s ease-in-out -4.2s infinite;
    animation: rotating 29s ease-in-out -4.2s infinite
}

.ct-fancy-box .item--particle .dot.dot-6,
.ct-section-particle-show .item--particle .dot.dot-6 {
    transform-origin: 6px 3px;
    -webkit-animation: rotating 29s ease-in-out -8.3s infinite;
    animation: rotating 29s ease-in-out -8.3s infinite
}

.ct-fancy-box .item--particle .dot.dot-7,
.ct-section-particle-show .item--particle .dot.dot-7 {
    transform-origin: -5px 3px;
    -webkit-animation: rotating 14s ease-in-out -5.1s infinite;
    animation: rotating 14s ease-in-out -5.1s infinite
}

.ct-fancy-box .item--particle .dot.dot-8,
.ct-section-particle-show .item--particle .dot.dot-8 {
    transform-origin: 13px 10px;
    -webkit-animation: rotating 17s ease-in-out -8s infinite;
    animation: rotating 17s ease-in-out -8s infinite
}

.ct-fancy-box .item--particle .dot.dot-9,
.ct-section-particle-show .item--particle .dot.dot-9 {
    transform-origin: -10px 8px;
    -webkit-animation: rotating 24s ease-in-out -5.8s infinite;
    animation: rotating 24s ease-in-out -5.8s infinite
}

.ct-fancy-box .item--particle .dot.dot-10,
.ct-section-particle-show .item--particle .dot.dot-10 {
    transform-origin: -8px 10px;
    -webkit-animation: rotating 21s ease-in-out -9.5s infinite;
    animation: rotating 21s ease-in-out -9.5s infinite
}

.ct-fancy-box-layout1 {
    background-color: #121212;
    background-size: cover;
    background-position: 50%;
    position: relative;
    overflow: hidden
}

.ct-fancy-box-layout1 .item--title {
    font-size: 23px;
    line-height: 1.4347;
    margin-bottom: 14px
}

.ct-fancy-box-layout1 .item--description {
    font-size: 16px;
    line-height: 1.4
}

.ct-fancy-box-layout1 .item--link {
    color: #ededed
}

.ct-fancy-box-layout1 .item--description+.item--link {
    margin-top: 34px
}

.ct-fancy-box-layout2 {
    border: 1px solid #343434
}

.ct-fancy-box-layout2 .item--title {
    font-size: 23px;
    line-height: 1.4347
}

.ct-fancy-box-layout2 .item--list {
    display: flex;
    justify-content: space-between
}

.ct-fancy-box-layout2 .item--list span {
    color: #ededed;
    min-width: 102px
}

.ct-fancy-box-layout2 .item--title+.item--list {
    margin-top: 17px
}

.ct-fancy-box-layout2 .item--list+.item--list {
    margin-top: 4px
}

.ct-fancy-box-layout3 .item--meta {
    display: table;
    width: 100%;
    background-color: #121212
}

.ct-fancy-box-layout3 .item--list--title .td {
    padding: 22px 30px 20px;
    border: 1px solid #242424
}

.ct-fancy-box-layout3 .tr {
    display: table-row
}

.ct-fancy-box-layout3 .td {
    display: table-cell;
    padding: 11px 30px;
    border: 1px solid #242424;
    border-width: 0 1px;
    font-size: 16px;
    line-height: 1.25;
    vertical-align: middle
}

.ct-fancy-box-layout3 .list--title a {
    color: #c6c6c6
}

.ct-fancy-box-layout3 .list--title a:hover {
    color: #bf2025
}

.ct-fancy-box-layout3 .item--list--title+.item--list .td {
    padding-top: 30px
}

.ct-fancy-box-layout3 .item--list:last-child .td {
    padding-bottom: 31px;
    border-bottom: 1px solid #242424
}

.ct-fancy-box-layout4 .item--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px
}

@media screen and (max-width:767px) {
    .ct-fancy-box-layout4 .item--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.ct-fancy-box-layout4 .item--meta {
    margin: 0 15px;
    width: 50%
}

@media screen and (max-width:767px) {
    .ct-fancy-box-layout4 .item--meta {
        width: 100%
    }
}

.ct-fancy-box-layout4 .item--meta.style1 {
    padding-top: 29px
}

@media screen and (max-width:767px) {
    .ct-fancy-box-layout4 .item--meta.style1+.item--meta {
        margin-top: 30px !important
    }
}

.ct-fancy-box-layout4 .item--meta.style1 .item--list--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.ct-fancy-box-layout4 .item--meta.style1 .item--list--title .item--sub--title,
.ct-fancy-box-layout4 .item--meta.style1 .item--list--title .item--title {
    margin-bottom: 0
}

.ct-fancy-box-layout4 .item--meta.style1 .item--list--title .item--sub--title {
    color: #bf2025
}

.ct-fancy-box-layout4 .item--meta.style1 .item--list--title .item--title {
    padding-left: 15px
}

.ct-fancy-box-layout4 .item--meta.style1 .item--list--title+.item--description {
    margin-top: 14px
}

.ct-fancy-box-layout4 .item--meta.style1:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-fancy-box-layout4 .item--meta.style2 {
    position: relative;
    padding: 30px
}

.ct-fancy-box-layout4 .item--meta.style2 .item--title {
    margin-bottom: 25px
}

.ct-fancy-box-layout4 .item--meta.style2 .item--background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat
}

.ct-fancy-box-layout4 .item--meta.style2 .item--list--title,
.ct-fancy-box-layout4 .item--meta.style2 .btn-readmore {
    position: relative;
    z-index: 2
}

.ct-fancy-box-layout4.ct-flex-column .item--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.ct-fancy-box-layout4.ct-flex-column .item--meta {
    width: 100%
}

.ct-fancy-box-layout4.ct-flex-column .item--meta+.item--meta {
    margin-top: 60px
}

@media screen and (max-width:575px) {
    .ct-fancy-box-layout4.ct-flex-column .item--meta+.item--meta {
        margin-top: 30px
    }
}

.ct-fancy-box-layout4.ct-flex-column .item--sub--title,
.ct-fancy-box-layout4.ct-flex-column .item--title {
    font-size: 20px
}

.ct-fancy-box-layout4.ct-flex-column .item--meta {
    padding-top: 23px
}

.ct-fancy-box-layout4.ct-flex-column .item--meta .item--description {
    font-size: 14px
}

.ct-fancy-box-layout4.ct-flex-column .item--meta .item--list--title+.item--description {
    margin-top: 17px
}

.ct-fancy-box-layout5 {
    position: relative;
    overflow: hidden;
    padding: 35px 40px 40px;
    border: 1px solid #343434
}

@media screen and (max-width:991px) {
    .ct-fancy-box-layout5 {
        padding: 35px 30px 40px
    }
}

.ct-fancy-box-layout5 .item--inner {
    min-height: 385px
}

.ct-fancy-box-layout5 .item--title {
    margin-bottom: 28px
}

.ct-fancy-box-layout5 .item--description {
    margin-bottom: 44px
}

.ct-fancy-box-layout5 .item--link {
    position: relative;
    z-index: 1
}

.ct-fancy-box-layout5 .ct-fancybox-image img {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-fancy-box-layout5 .ct-fancybox-image img.img-hover {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -khtml-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%)
}

@media screen and (max-width:575px) {
    .ct-fancy-box-layout5 .ct-fancybox-image img {
        width: 100%
    }
}

.ct-fancy-box-layout5:hover .ct-fancybox-image .img-main {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -khtml-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%)
}

.ct-fancy-box-layout5:hover .ct-fancybox-image .img-hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

.ct-fancy-box-layout6 .item--icon {
    margin: 6px 20px 0 0;
    line-height: 1;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.ct-fancy-box-layout6 .item--icon svg path {
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

.ct-fancy-box-layout6 .item--icon img {
    width: 60px;
    height: 60px
}

.ct-fancy-box-layout6 .item--icon i {
    font-size: 60px;
    color: #bf2025
}

.ct-fancy-box-layout6 .item--title {
    margin-bottom: 8px
}

.ct-fancy-box-layout6 .item--description {
    font-size: 14px;
    line-height: 1.2857;
    font-weight: 400
}

.ct-fancy-box-layout6 .item--inner {
    border: 1px solid #343434;
    -webkit-transition: all 300ms ease;
    -khtml-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.ct-fancy-box-layout6 .item--inner:hover .item--icon svg path {
    stroke: #bf2025;
    fill: none;
    stroke-dashoffset: 0 !important
}

.ct-fancy-box-layout6.box-style1 .item--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 26px 40px 30px
}

@media screen and (max-width:575px) {
    .ct-fancy-box-layout6.box-style1 .item--inner {
        padding: 26px 20px 30px
    }
}

.ct-fancy-box-layout6.box-style2 .item--inner {
    border-color: transparent
}

.ct-fancy-box-layout6.box-style2 .item--meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.ct-fancy-box-layout6.box-style2 .item--icon {
    margin: 0 20px 0 0
}

.ct-fancy-box-layout6.box-style2 .item--title {
    color: #fff;
    margin-bottom: 0
}

@media screen and (max-width:575px) {
    .ct-fancy-box-layout6.box-style2 .item--title {
        font-size: 19px
    }
}

.ct-fancy-box-layout6.box-style2 .item--description {
    color: #c2c2c2;
    margin-top: 12px
}

.ct-fancy-box-layout7 .item--inner {
    padding: 38px 40px 40px;
    border: 1px solid #343434
}

@media screen and (max-width:767px) {
    .ct-fancy-box-layout7 .item--inner {
        padding: 38px 30px 40px
    }
}

.ct-fancy-box-layout7 .item--title {
    margin-bottom: 13px
}

@media screen and (max-width:575px) {
    .ct-fancy-box-layout7 .item--title {
        font-size: 18px
    }
}

.ct-fancy-box-layout7 .item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -15px
}

.ct-fancy-box-layout7 .item--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 16px;
    width: 50%;
    padding: 7.5px 15px;
    z-index: 1
}

@media screen and (max-width:767px) {
    .ct-fancy-box-layout7 .item--list {
        width: 100%
    }
}

.ct-fancy-box-layout7 .item--list i:before {
    font-size: 8px;
    line-height: 1;
    color: #bf2025;
    margin-right: 10px;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%, 20% 0)
}

.ct-fancy-box-layout7 .item--link {
    padding-top: 33px
}

@media screen and (max-width:575px) {
    .ct-fancy-box-layout7 .item--link {
        padding-top: 20px
    }
}

.ct-fancybox-carousel1 .slick-list {
    margin: 0 -14px
}

.ct-fancybox-carousel1 .slick-slide {
    padding: 0 30px !important
}

.ct-fancybox-carousel1 .item-holder {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ct-fancybox-carousel1 .item-content,
.ct-fancybox-carousel1 .item--image {
    width: 50%
}

.ct-fancybox-carousel1 .item-content {
    padding-right: 20px
}

.ct-fancybox-carousel1 .item--image {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    padding: 200px 0
}

.ct-fancybox-carousel1 .item--title a {
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-transition: background-position 300ms ease;
    -khtml-transition: background-position 300ms ease;
    -moz-transition: background-position 300ms ease;
    -ms-transition: background-position 300ms ease;
    -o-transition: background-position 300ms ease;
    transition: background-position 300ms ease;
    overflow: hidden
}

.ct-fancybox-carousel1 .item--title+.item--description {
    padding-top: 13px
}

.ct-fancybox-carousel1 .item--title:hover a {
    background-position: 0 100%
}

.ct-fancybox-carousel1 .item--description {
    font-size: 16px;
    font-weight: 400
}

.ct-fancybox-carousel1 .btn,
.ct-fancybox-carousel1 input[type=submit],
.ct-fancybox-carousel1 .btn-form button[type=submit],
.btn-form .ct-fancybox-carousel1 button[type=submit] {
    margin-top: 44px
}

@media screen and (max-width:767px) {
    .ct-fancybox-carousel1 .item-holder {
        flex-wrap: wrap
    }

    .ct-fancybox-carousel1 .item-content,
    .ct-fancybox-carousel1 .item--image {
        width: 100%
    }

    .ct-fancybox-carousel1 .item--image {
        order: 1;
        margin-bottom: 40px;
        padding: 150px 0
    }

    .ct-fancybox-carousel1 .item-content {
        order: 2
    }

    .ct-fancybox-carousel1 .item--title+.item--description {
        padding-top: 0
    }

    .ct-fancybox-carousel1 .btn,
    .ct-fancybox-carousel1 input[type=submit],
    .ct-fancybox-carousel1 .btn-form button[type=submit],
    .btn-form .ct-fancybox-carousel1 button[type=submit] {
        margin-top: 30px
    }
}

.ct-fancybox-carousel2 .item-inner {
    position: relative;
    border-top: 3px solid transparent
}

.ct-fancybox-carousel2 .item-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid #bf2025;
    z-index: 1;
    opacity: 0;
    -webkit-transform: translateY(-6px);
    -khtml-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-fancybox-carousel2 .item-inner:hover:before {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-fancybox-carousel2 .item-holder {
    position: relative;
    padding: 30px;
    background-color: #161616;
    cursor: e-resize;
    overflow: hidden
}

.ct-fancybox-carousel2 .item-holder .item-content {
    position: relative;
    z-index: 1
}

.ct-fancybox-carousel2 .item-holder .item--image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%
}

.ct-fancybox-carousel2 .item--title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px
}

.ct-fancybox-carousel2 .item--description {
    font-size: 14px;
    font-weight: 400
}

.ct-fancybox-carousel2 .item--description .item--list {
    position: relative;
    padding-left: 10px
}

.ct-fancybox-carousel2 .item--description .item--list:before {
    content: '\f45c';
    font-family: "font awesome 5 free";
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 5px;
    line-height: 1;
    color: #bf2025;
    margin-right: 5px;
    clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%, 20% 0);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.ct-fancybox-carousel2 .item--description .item--list+.item--list {
    margin-top: 8px
}

.ct-fancybox-carousel3 .image--inner {
    position: relative
}

.ct-fancybox-carousel3 .image--inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 1, 10, .49);
    opacity: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    z-index: 1
}

.ct-fancybox-carousel3 .item--image {
    position: relative;
    height: 600px;
    overflow: hidden
}

.ct-fancybox-carousel3 .item--image img {
    display: block;
    object-fit: cover
}

.ct-fancybox-carousel3 .item--description {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 10px;
    font-size: 15px;
    color: #fff;
    background-color: #bf2025;
    box-shadow: 0 12px 10px rgba(0, 0, 0, .16);
    font-weight: 600;
    z-index: 2
}

.ct-fancybox-carousel3 .btn,
.ct-fancybox-carousel3 input[type=submit],
.ct-fancybox-carousel3 .btn-form button[type=submit],
.btn-form .ct-fancybox-carousel3 button[type=submit] {
    position: absolute;
    top: 60%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    display: block;
    min-width: 100px;
    background-color: #161616;
    line-height: 45px;
    padding: 2px 25px;
    margin: 15px 0;
    color: #fff;
    font-size: 16px;
    border: 2px solid #bf2025;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -khtml-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -moz-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -ms-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    -o-box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35);
    box-shadow: 0 0 10px 5px rgba(237, 237, 237, .35)
}

@media screen and (max-width:1199px) {

    .ct-fancybox-carousel3 .btn,
    .ct-fancybox-carousel3 input[type=submit],
    .ct-fancybox-carousel3 .btn-form button[type=submit],
    .btn-form .ct-fancybox-carousel3 button[type=submit] {
        font-size: 15px
    }
}

.ct-fancybox-carousel3 .btn span,
.ct-fancybox-carousel3 input[type=submit] span,
.ct-fancybox-carousel3 .btn-form button[type=submit] span,
.btn-form .ct-fancybox-carousel3 button[type=submit] span {
    margin-top: 0;
    color: #fff
}

.ct-fancybox-carousel3 .btn:hover span,
.ct-fancybox-carousel3 input[type=submit]:hover span,
.ct-fancybox-carousel3 .btn-form button[type=submit]:hover span,
.btn-form .ct-fancybox-carousel3 button[type=submit]:hover span {
    color: #bf2025
}

.ct-fancybox-carousel3 .item--title {
    margin: 30px 0 0
}

@media screen and (max-width:575px) {
    .ct-fancybox-carousel3 .item--title {
        font-size: 20px;
        margin: 20px 0 0
    }
}

.ct-fancybox-carousel3 .item-inner:hover .image--inner:before {
    opacity: 1
}

.ct-fancybox-carousel3 .item-inner:hover .btn,
.ct-fancybox-carousel3 .item-inner:hover input[type=submit],
.ct-fancybox-carousel3 .item-inner:hover .btn-form button[type=submit],
.btn-form .ct-fancybox-carousel3 .item-inner:hover button[type=submit] {
    top: 50%;
    opacity: 1;
    background-color: #161616
}

.ct-fancybox-carousel3.ct-showcase-scroll .item--image img {
    position: relative;
    top: 0;
    height: auto;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 3s ease;
    -khtml-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -ms-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease
}

.ct-fancybox-carousel3.ct-showcase-scroll .item-inner:hover .item--image img {
    top: 100%;
    -webkit-transform: translateY(-100%);
    -khtml-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%)
}

.ct-fancy-box-grid1 .item--overlay {
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-fancy-box-grid1 .item--holder {
    position: relative;
    z-index: 3
}

.ct-fancy-box-grid1 .item--inner {
    padding: 40px
}

@media screen and (max-width:575px) {
    .ct-fancy-box-grid1 .item--inner {
        padding: 40px 30px
    }
}

.ct-fancy-box-grid1 .item--inner:hover {
    background-color: initial
}

.ct-fancy-box-grid1 .item--inner:hover:before {
    visibility: visible
}

.ct-fancy-box-grid1 .item--inner.style1 .item--overlay {
    background-color: #121212
}

.ct-fancy-box-grid1 .item--inner.style1:hover .item--overlay {
    background-color: #0d0d0d;
    opacity: .8
}

.ct-fancy-box-grid1 .item--inner.style1 .item--description {
    color: #c2c2c2
}

.ct-fancy-box-grid1 .item--inner.style2 .item--overlay {
    background-color: #0e0e0e
}

.ct-fancy-box-grid1 .item--title {
    margin-bottom: 8px
}

.ct-fancy-box-grid1 .item--text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 19px
}

.ct-fancy-box-grid1 .item--text .item--title {
    font-size: 19px;
    line-height: 1.39;
    margin-bottom: 0
}

.ct-fancy-box-grid1 .item-sub--title {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    padding: 19px 12px 17px;
    background-color: #bf2025;
    font-family: chakra petch, sans-serif
}

.ct-fancy-box-grid1 .item-sub--title+.item--title {
    padding-left: 15px
}

.ct-fancy-box-grid1 .item--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #343434
}

.ct-fancy-box-grid1 .item--content .item--list:first-child {
    margin-right: 40px
}

.ct-fancy-box-grid1 .item--content .label {
    font-size: 14px;
    color: #c2c2c2
}

.ct-fancy-box-grid1 .item--content .text {
    font-size: 16px;
    font-weight: 600;
    font-family: chakra petch, sans-serif
}

.ct-fancy-box-grid1 .item-readmore {
    padding-top: 22px
}

.ct-fancy-box-grid1 .item--particle {
    z-index: 2
}

.ct-service-carousel1.style1 .entry-holder {
    position: relative
}

.ct-service-carousel1.style1 .entry-holder:before,
.ct-service-carousel1.style1 .entry-holder:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-carousel1.style1 .entry-holder:after {
    border-top: 3px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

.ct-service-carousel1.style1 .entry-holder .inner-holder {
    padding-top: 28px
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-icon a {
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    position: relative;
    width: 50px;
    height: 50px
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-icon a i {
    position: relative;
    font-size: 55px;
    line-height: 1.1;
    display: inline-block;
    color: #bf2025;
    position: relative;
    padding: 15px 0 0 15px;
    z-index: 2
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-icon a:after {
    content: '';
    background-color: #fde4d0;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    z-index: 0;
    border-radius: 40% 45% 40% 30%;
    transition: all .3s ease;
    z-index: 1
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-image {
    position: relative;
    display: inline-flex
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-image img {
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-image .img-hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-title a {
    font-size: 23px;
    line-height: 1.43478;
    color: #ededed
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-title a:hover {
    color: #bf2025
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-excerpt {
    font-size: 16px;
    line-height: 1.38
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-excerpt.text-line {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-readmore {
    margin-top: 33px
}

.ct-service-carousel1.style1 .entry-holder .inner-holder .item-readmore a {
    display: inline-flex
}

.ct-service-carousel1.style1 .entry-holder:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-service-carousel1.style1 .entry-holder:hover .item-icon i {
    animation: icon-scale 1s infinite
}

.ct-service-carousel1.style1 .entry-holder:hover .item-image .img-main {
    opacity: 0
}

.ct-service-carousel1.style1 .entry-holder:hover .item-image .img-hover {
    opacity: 1
}

.ct-service-carousel1.style2 .slick-track {
    display: flex
}

.ct-service-carousel1.style2 .entry-holder {
    position: relative;
    padding: 30px;
    background-color: #121212
}

.ct-service-carousel1.style2 .entry-holder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid #bf2025;
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-service-carousel1.style2 .entry-holder .item-image {
    display: inline-flex;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-service-carousel1.style2 .entry-holder .item-image+.entry-meta {
    margin-top: 10px
}

.ct-service-carousel1.style2 .entry-holder .item-title {
    font-size: 23px;
    line-height: 1.43478;
    margin-bottom: 0
}

.ct-service-carousel1.style2 .entry-holder:hover:before {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-service-carousel1.style2 .entry-holder:hover .item-image {
    -webkit-transform: translateY(-4px);
    -khtml-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px)
}

.ct-service-carousel2 .inner-holder {
    position: relative
}

.ct-service-carousel2 .entry-feature {
    position: relative;
    overflow: hidden
}

.ct-service-carousel2 .entry-feature:before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 3px solid #bf2025;
    visibility: hidden;
    z-index: 2;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-service-carousel2 .entry-meta {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 50px
}

@media screen and (max-width:575px) {
    .ct-service-carousel2 .entry-meta {
        left: 20px;
        right: 20px
    }
}

.ct-service-carousel2 .item-title {
    position: relative;
    padding-top: 20px;
    -webkit-transform: translateY(84px);
    -khtml-transform: translateY(84px);
    -moz-transform: translateY(84px);
    -ms-transform: translateY(84px);
    -o-transform: translateY(84px);
    transform: translateY(84px);
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-service-carousel2 .item-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background-color: #bf2025
}

.ct-service-carousel2 .item-image {
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-service-carousel2 .item-image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    opacity: .6
}

.ct-service-carousel2 .item-image img {
    object-fit: cover
}

.ct-service-carousel2 .item-stroke {
    position: absolute;
    top: 52px;
    right: 40px;
    color: transparent;
    line-height: 1;
    margin: 0;
    opacity: .5;
    text-stroke-color: #ededed;
    -webkit-text-stroke-color: #ededed;
    text-stroke-width: 1px;
    -webkit-text-stroke-width: 1px
}

@media screen and (max-width:575px) {
    .ct-service-carousel2 .item-stroke {
        right: 20px
    }
}

.ct-service-carousel2 .item-excerpt {
    -webkit-transform: translateY(116px);
    -khtml-transform: translateY(116px);
    -moz-transform: translateY(116px);
    -ms-transform: translateY(116px);
    -o-transform: translateY(116px);
    transform: translateY(116px);
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.ct-service-carousel2 .grid-item-inner:hover .entry-feature:before {
    visibility: visible
}

.ct-service-carousel2 .grid-item-inner:hover .item-title,
.ct-service-carousel2 .grid-item-inner:hover .item-excerpt {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-service-carousel2 .grid-item-inner:hover .item-excerpt {
    visibility: visible;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    -webkit-animation-name: ct_skewInUp;
    animation-name: ct_skewInUp
}

.ct-service-carousel2 .grid-item-inner:hover .item-image {
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-service-grid1 .ct-grid-inner {
    margin: 0 -15px -50px
}

.ct-service-grid1 .ct-grid-inner .grid-item {
    margin-bottom: 50px
}

.ct-service-grid1 .grid-item-inner {
    position: relative
}

.ct-service-grid1 .grid-item-inner:before,
.ct-service-grid1 .grid-item-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid1 .grid-item-inner:after {
    border-top: 3px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

.ct-service-grid1 .grid-item-inner .item-body {
    padding-top: 30px
}

@media screen and (max-width:575px) {
    .ct-service-grid1 .grid-item-inner .item-body {
        padding-top: 18px
    }
}

.ct-service-grid1 .grid-item-inner .item-body .item-icon a {
    position: relative;
    width: 50px;
    height: 50px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid1 .grid-item-inner .item-body .item-icon a i {
    position: relative;
    font-size: 55px;
    line-height: 1.1;
    display: inline-block;
    color: #bf2025;
    padding: 15px 0 0 15px;
    z-index: 2
}

.ct-service-grid1 .grid-item-inner .item-body .item-icon a:after {
    content: '';
    background-color: #fde4d0;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    z-index: 0;
    -webkit-border-radius: 40% 45% 40% 30%;
    -khtml-border-radius: 40% 45% 40% 30%;
    -moz-border-radius: 40% 45% 40% 30%;
    -ms-border-radius: 40% 45% 40% 30%;
    -o-border-radius: 40% 45% 40% 30%;
    border-radius: 40% 45% 40% 30%;
    -webkit-transition: all .3s ease;
    -khtml-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1
}

.ct-service-grid1 .grid-item-inner .item-body .item-image {
    position: relative;
    display: inline-flex
}

.ct-service-grid1 .grid-item-inner .item-body .item-image img {
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-service-grid1 .grid-item-inner .item-body .item-image .img-hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0
}

.ct-service-grid1 .grid-item-inner .item-body .item-image+.item-title {
    margin-top: 10px
}

.ct-service-grid1 .grid-item-inner .item-body .item-excerpt {
    font-size: 16px;
    line-height: 1.38
}

.ct-service-grid1 .grid-item-inner .item-body .item-excerpt.text-line {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    color: #000000b0;
}

.ct-service-grid1 .grid-item-inner .item-body .item-readmore {
    margin-top: 33px
}

.ct-service-grid1 .grid-item-inner .item-body .item-readmore .btn-readmore {
    display: inline-flex
}

.ct-service-grid1 .grid-item-inner .item-body .item-readmore .btn-readmore:before {
    flex: none
}

.ct-service-grid1 .grid-item-inner:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-service-grid1 .grid-item-inner:hover .item-icon i {
    animation: icon-scale 1s infinite
}

.ct-service-grid1 .grid-item-inner:hover .item-image .img-main {
    opacity: 0
}

.ct-service-grid1 .grid-item-inner:hover .item-image .img-hover {
    opacity: 1
}

.ct-service-grid2 .ct-grid-inner {
    margin: 0 -15px -30px
}

.ct-service-grid2 .ct-grid-inner .grid-item {
    margin-bottom: 30px
}

.ct-service-grid2 .item-body {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #121212;
    padding: 35px 40px 30px 35px;
    overflow: hidden
}

@media screen and (max-width:991px) {
    .ct-service-grid2 .item-body {
        padding: 35px 30px 30px 25px
    }
}

.ct-service-grid2 .item-body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid #bf2025;
    -webkit-transform: scaleX(0);
    -khtml-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid2 .item-body .item-icon {
    width: 50px;
    height: 50px
}

.ct-service-grid2 .item-body .item-icon i {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 1.25;
    color: #bf2025
}

.ct-service-grid2 .item-body .item-icon+.item-title,
.ct-service-grid2 .item-body .item-image+.item-title {
    padding-left: 27px
}

.ct-service-grid2 .item-body .item-title {
    margin-bottom: 0
}

@media screen and (max-width:575px) {
    .ct-service-grid2 .item-body .item-title {
        font-size: 18px
    }
}

.ct-service-grid2 .item-body:hover:before {
    -webkit-transform: scaleX(1);
    -khtml-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.ct-service-grid2.ct-grid-direction .in-top .item-body:before {
    -webkit-animation: in-top-scale .3s ease 0ms 1 forwards;
    animation: in-top-scale .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .out-top .item-body:before {
    -webkit-animation: out-top-scale .3s ease 0ms 1 forwards;
    animation: out-top-scale .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .in-bottom .item-body:before {
    -webkit-animation: in-top-scale .3s ease 0ms 1 forwards;
    animation: in-top-scale .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .out-bottom .item-body:before {
    -webkit-animation: out-top-scale .3s ease 0ms 1 forwards;
    animation: out-top-scale .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .in-left .item-body:before {
    -webkit-animation: in-left-fade .3s ease 0ms 1 forwards;
    animation: in-left-fade .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .out-left .item-body:before {
    -webkit-animation: out-left-fade .3s ease 0ms 1 forwards;
    animation: out-left-fade .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .in-right .item-body:before {
    -webkit-animation: in-right-fade .3s ease 0ms 1 forwards;
    animation: in-right-fade .3s ease 0ms 1 forwards
}

.ct-service-grid2.ct-grid-direction .out-right .item-body:before {
    -webkit-animation: out-right-fade .3s ease 0ms 1 forwards;
    animation: out-right-fade .3s ease 0ms 1 forwards
}

.ct-service-grid3 .ct-grid-inner {
    margin: 0 -15px -40px
}

.ct-service-grid3 .ct-grid-inner .grid-item {
    margin-bottom: 40px
}

.ct-service-grid3 .container-custom {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 30px
}

.ct-service-grid3 .container-custom:before,
.ct-service-grid3 .container-custom:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid3 .container-custom:after {
    border-bottom: 3px solid #242424;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-service-grid3:hover .container-custom:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-service-grid3 .item-body {
    position: relative;
    display: flex;
    justify-content: space-between
}

.ct-service-grid3 .item-body .item-image {
    position: relative;
    width: 51%;
    overflow: hidden
}

.ct-service-grid3 .item-body .item-image a {
    display: block
}

.ct-service-grid3 .item-body .item-image .item-date {
    display: flex;
    position: absolute;
    top: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ededed;
    min-width: 96px;
    padding: 20px 18.5px;
    justify-content: center;
    background-color: #bf2025;
    z-index: 2;
    font-family: mulish, sans-serif
}

.ct-service-grid3 .item-body .item-image img {
    width: 100%;
    object-fit: cover
}

.ct-service-grid3 .item-body .item-content {
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    width: 60%;
    padding: 14px 0 18px 30px
}

.ct-service-grid3 .item-body .item-content .item-title {
    width: 100%;
    margin-bottom: 10px
}

@media screen and (max-width:1199px) {
    .ct-service-grid3 .item-body .item-content .item-title {
        font-size: 26px
    }
}

.ct-service-grid3 .item-body .item-content .item-category {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-size: 15px;
    font-weight: 500;
    border-top: 1px solid #bf2025;
    padding: 10px 0;
    -webkit-transition: all 100ms linear 0ms;
    -khtml-transition: all 100ms linear 0ms;
    -moz-transition: all 100ms linear 0ms;
    -ms-transition: all 100ms linear 0ms;
    -o-transition: all 100ms linear 0ms;
    transition: all 100ms linear 0ms
}

.ct-service-grid3 .item-body .item-content .item-category:before,
.ct-service-grid3 .item-body .item-content .item-category:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid3 .item-body .item-content .item-category:before {
    top: -2px
}

.ct-service-grid3 .item-body .item-content .item-category:after {
    top: 0
}

.ct-service-grid3 .item-body .item-content .item-category:hover:before,
.ct-service-grid3 .item-body .item-content .item-category:hover:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-service-grid3 .item-body .item-content .item-button {
    width: 100%;
    margin-top: 20px
}

.ct-service-grid3 .item-body .item-content .item-button .btn-readmore {
    display: inline-flex
}

.ct-service-grid3 .item-body .item-content .item-button .btn-readmore:before {
    flex: none
}

@media screen and (max-width:991px) {
    .ct-service-grid3 .item-body .item-content {
        align-self: center
    }

    .ct-service-grid3 .item-body .item-content .item-title+.item-category {
        margin-top: 13px
    }

    .ct-service-grid3 .item-body .item-content .item-button {
        margin-top: 15px
    }
}

@media screen and (max-width:575px) {
    .ct-service-grid3 .item-body {
        flex-wrap: wrap
    }

    .ct-service-grid3 .item-body .item-image,
    .ct-service-grid3 .item-body .item-content {
        width: 100%
    }

    .ct-service-grid3 .item-body .item-content {
        padding: 25px 0 0
    }
}

.ct-service-grid4 .ct-grid-inner {
    margin: 0 -15px -40px
}

.ct-service-grid4 .ct-grid-inner .grid-item {
    margin-bottom: 40px
}

.ct-service-grid4 .container-custom {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 30px
}

.ct-service-grid4 .container-custom:before,
.ct-service-grid4 .container-custom:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid4 .container-custom:after {
    border-bottom: 3px solid #242424;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-service-grid4:hover .container-custom:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-service-grid4 .item-body {
    overflow: hidden
}

.ct-service-grid4 .item-body .item-image+.item-content {
    position: absolute;
    left: 40px;
    bottom: 46px
}

@media screen and (max-width:991px) {
    .ct-service-grid4 .item-body .item-image+.item-content {
        left: 20px;
        bottom: 21px
    }
}

.ct-service-grid4 .item-body .item-image img {
    object-fit: cover
}

@media screen and (max-width:991px) {
    .ct-service-grid4 .item-body .item-image img {
        width: 100%
    }
}

.ct-service-grid4 .item-body .item-content .item-category {
    position: relative;
    display: flex;
    width: fit-content;
    font-size: 15px;
    font-weight: 600;
    border-top: 1px solid #bf2025;
    padding-top: 7px;
    text-transform: uppercase;
    -webkit-transition: all 100ms linear 0ms;
    -khtml-transition: all 100ms linear 0ms;
    -moz-transition: all 100ms linear 0ms;
    -ms-transition: all 100ms linear 0ms;
    -o-transition: all 100ms linear 0ms;
    transition: all 100ms linear 0ms
}

.ct-service-grid4 .item-body .item-content .item-category+.item-title {
    padding-top: 8px
}

.ct-service-grid4 .item-body .item-content .item-category:before,
.ct-service-grid4 .item-body .item-content .item-category:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-service-grid4 .item-body .item-content .item-category:before {
    top: -2px
}

.ct-service-grid4 .item-body .item-content .item-category:after {
    top: 0
}

.ct-service-grid4 .item-body .item-content .item-category:hover:before,
.ct-service-grid4 .item-body .item-content .item-category:hover:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-service-grid4 .item-body .item-content .item-title {
    margin-bottom: 0
}

@media screen and (max-width:575px) {
    .ct-service-grid4 .item-body .item-content .item-title {
        font-size: 20px
    }
}

.ct-grid.style-zoom .item-body .item-image img {
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-grid.style-zoom .item-body:hover .item-image img {
    -webkit-transform: scale(1.1)rotate(-.5deg);
    -khtml-transform: scale(1.1)rotate(-.5deg);
    -moz-transform: scale(1.1)rotate(-.5deg);
    -ms-transform: scale(1.1)rotate(-.5deg);
    -o-transform: scale(1.1)rotate(-.5deg);
    transform: scale(1.1)rotate(-.5deg)
}

.ct-grid.style-overlay .item-body .item-image:before,
.ct-grid.style-overlay .item-body .item-image:after {
    content: '';
    position: absolute;
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-grid.style-overlay .item-body .item-image:before {
    top: 0;
    left: 0;
    opacity: 1
}

.ct-grid.style-overlay .item-body .item-image:after {
    bottom: 0;
    right: 0;
    opacity: .7
}

.ct-grid.style-overlay .item-body:hover .item-image:before {
    -webkit-animation: ctoverlaybg .55s;
    -khtml-animation: ctoverlaybg .55s;
    -moz-animation: ctoverlaybg .55s;
    -ms-animation: ctoverlaybg .55s;
    -o-animation: ctoverlaybg .55s;
    animation: ctoverlaybg .55s
}

.ct-grid.style-overlay .item-body:hover .item-image:after {
    -webkit-animation: ctoverlaybg .55s;
    -khtml-animation: ctoverlaybg .55s;
    -moz-animation: ctoverlaybg .55s;
    -ms-animation: ctoverlaybg .55s;
    -o-animation: ctoverlaybg .55s;
    animation: ctoverlaybg .55s
}

.ct-grid.style-overlay .item-body:hover .item-image img {
    -webkit-filter: brightness(100%) !important;
    -khtml-filter: brightness(100%) !important;
    -moz-filter: brightness(100%) !important;
    -ms-filter: brightness(100%) !important;
    -o-filter: brightness(100%) !important;
    filter: brightness(100%) !important
}

.ct-counter-layout1 {
    overflow: hidden
}

.ct-counter-layout1 .ct-counter-meta .ct-counter-number {
    display: flex;
    position: relative
}

@media screen and (max-width:991px) {

    .ct-counter-layout1 .ct-counter-meta .ct-counter-number .ct-counter-number-value,
    .ct-counter-layout1 .ct-counter-meta .ct-counter-number .ct-counter-number-suffix,
    .ct-counter-layout1 .ct-counter-meta .ct-counter-number .ct-counter-number-prefix {
        font-size: 56px
    }
}

.ct-counter-layout1 .ct-counter-meta .ct-counter-title {
    font-size: 16px;
    position: relative
}

.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-number .ct-counter-number-value,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-number .ct-counter-number-value,
.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-number .ct-counter-number-suffix,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-number .ct-counter-number-suffix,
.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-number .ct-counter-number-prefix,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-number .ct-counter-number-prefix {
    margin-bottom: 5px;
    color: #bf2025;
}

.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-number:after,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-number:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #242424
}

.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-title,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-title {
    width: 85%;
    padding: 25px 0 0;
    color: #000;
}

.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-title:before,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-title:before,
.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-title:after,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-title:after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-counter-layout1.style1 .ct-counter-meta .ct-counter-title:after,
.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-title:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-counter-layout1.style1 .ct-counter-meta:hover .ct-counter-title:after,
.ct-counter-layout1.style2 .ct-counter-meta:hover .ct-counter-title:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-counter-layout1.style2 .ct-counter-meta .ct-counter-number:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #bf2025;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    z-index: 1
}

.ct-counter-layout1.style2 .ct-counter-meta:hover .ct-counter-number:before {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-number .ct-counter-number-value,
.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-number .ct-counter-number-suffix,
.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-number .ct-counter-number-prefix {
    line-height: 1.3;
    margin-bottom: 0;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-number:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    border-bottom: 1px solid #bf2025
}

.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-title {
    padding: 15px 0 0
}

.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-title:before,
.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-title:after {
    content: '';
    position: absolute;
    left: 0;
    width: 160px;
    opacity: .5;
    border-top: 1px solid #bf2025;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-title:before {
    top: -2px
}

.ct-counter-layout1.style3 .ct-counter-meta .ct-counter-title:after {
    top: 0
}

.ct-counter-layout1.style3 .ct-counter-meta:hover .ct-counter-number-value,
.ct-counter-layout1.style3 .ct-counter-meta:hover .ct-counter-number-suffix,
.ct-counter-layout1.style3 .ct-counter-meta:hover .ct-counter-number-prefix {
    -webkit-transform: translateY(-5px);
    -khtml-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px)
}

.ct-counter-layout1.style3 .ct-counter-meta:hover .ct-counter-number:after {
    border-width: 2px
}

.ct-counter-layout2 .ct-counter-meta {
    display: flex;
    justify-content: center
}

.ct-counter-layout2 .ct-counter-number {
    max-width: 850px;
    text-align: center
}

.ct-counter-layout2 .ct-counter-number span {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    font-family: chakra petch, sans-serif
}

@media screen and (max-width:575px) {
    .ct-counter-layout2 .ct-counter-number span {
        font-size: 38px
    }
}

@media screen and (max-width:480px) {
    .ct-counter-layout2 .ct-counter-number span {
        font-size: 30px
    }
}

.ct-counter-layout2 .ct-counter-number .ct-counter-number-value {
    display: inline-block;
    min-width: 95px;
    color: #bf2025;
    padding: 0 7px
}

@media screen and (max-width:575px) {
    .ct-counter-layout2 .ct-counter-number .ct-counter-number-value {
        min-width: auto
    }
}

.ct-counter-layout2 .ct-counter-number .ct-counter-number-value:before {
    content: attr(data-prefix)
}

.ct-counter-layout2 .ct-counter-number .ct-counter-number-value:after {
    content: attr(data-suffix)
}

.ct-counter-layout3 .ct-counter-meta,
.ct-counter-layout3 .ct-counter-number {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.ct-counter-layout3 .ct-counter-number {
    margin-right: 20px
}

@media screen and (max-width:991px) {
    .ct-counter-layout3 .ct-counter-number {
        margin-right: 10px
    }
}

.ct-counter-layout3 h1 {
    color: transparent;
    text-stroke-color: #343434;
    -webkit-text-stroke-color: #343434;
    text-stroke-width: 1px;
    -webkit-text-stroke-width: 1px;
    line-height: 1;
    margin-bottom: 0
}

@media screen and (max-width:1199px) {
    .ct-counter-layout3 h1 {
        font-size: 60px
    }
}

@media screen and (max-width:991px) {
    .ct-counter-layout3 h1 {
        font-size: 45px
    }
}

@media screen and (max-width:575px) {
    .ct-counter-layout3 h1 {
        font-size: 38px
    }
}

.ct-counter-layout4 .ct-counter-meta,
.ct-counter-layout4 .ct-counter-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.ct-counter-layout4 .ct-counter-number-value,
.ct-counter-layout4 .ct-counter-number-suffix,
.ct-counter-layout4 .ct-counter-number-prefix {
    margin-bottom: 0
}

.ct-counter-layout4 .ct-counter-title {
    font-size: 14px;
    margin: 0 10px
}

.ct-testimonial-carousel1 .ct-slick-carousel[data-arrows=true] {
    padding-bottom: 0
}

.ct-testimonial-carousel1 .container-custom .wp-meta {
    position: relative
}

.ct-testimonial-carousel1 .container-custom .wp-meta .text-title {
    margin-bottom: 0
}

.ct-testimonial-carousel1 .ct-slick-carousel {
    margin: 0 -15px
}

.ct-testimonial-carousel1 .ct-slick-carousel .slick-list {
    padding: 0 !important
}

.ct-testimonial-carousel1 .ct-slick-carousel .slick-slide {
    padding: 0 15px
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--title {
    display: flex
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--icon {
    color: #bf2025;
    font-size: 22px;
    line-height: 1.227
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--text {
    padding-left: 20px;
    margin-bottom: 12px
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--rating {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    margin-top: 34px;
    padding-top: 29px
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--rating:before,
.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--rating:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--rating:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner .item--author {
    font-size: 14px
}

.ct-testimonial-carousel1 .ct-slick-carousel .item--inner:hover .item--rating:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-testimonial-carousel1.style1 .container-custom+.ct-slick-carousel {
    margin-top: 30px
}

.ct-testimonial-carousel1.style1 .ct-slick-carousel .item--inner {
    background-color: #121212;
    padding: 40px
}

@media screen and (max-width:767px) {
    .ct-testimonial-carousel1.style1 .ct-slick-carousel .item--inner {
        padding: 30px
    }
}

.ct-testimonial-carousel1.style2 .container-custom+.ct-slick-carousel {
    margin-top: 50px
}

@media screen and (max-width:575px) {
    .ct-testimonial-carousel1.style2 .container-custom+.ct-slick-carousel {
        margin-top: 20px
    }
}

.ct-testimonial-carousel1.style3 .container-custom+.ct-slick-carousel {
    margin-top: 37px
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner {
    position: relative;
    cursor: grab;
    cursor: -webkit-grab
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--rating:after {
    display: none
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:before,
.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #bf2025;
    z-index: 1;
    -webkit-transition: width .15s .3s ease-out;
    -khtml-transition: width .15s .3s ease-out;
    -moz-transition: width .15s .3s ease-out;
    -ms-transition: width .15s .3s ease-out;
    -o-transition: width .15s .3s ease-out;
    transition: width .15s .3s ease-out
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:before {
    right: 50%
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:after {
    left: 50%
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--meta {
    border: 2px solid #262626;
    padding: 40px
}

@media screen and (max-width:767px) {
    .ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--meta {
        padding: 30px
    }
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--meta:before,
.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--meta:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    background: 0 0;
    opacity: 0;
    -webkit-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -khtml-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -moz-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -ms-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    -o-transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s;
    transition: width .15s ease-in, height .1s .15s linear, opacity 0s .3s
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--meta:before {
    bottom: 0;
    left: 0;
    border-left: 2px solid #bf2025;
    border-top: 2px solid #bf2025
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner .item--meta:after {
    bottom: 0;
    right: 0;
    border-right: 2px solid #bf2025;
    border-top: 2px solid #bf2025
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:hover:before,
.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:hover:after {
    width: 50%;
    -webkit-transition: width .15s ease-in;
    -khtml-transition: width .15s ease-in;
    -moz-transition: width .15s ease-in;
    -ms-transition: width .15s ease-in;
    -o-transition: width .15s ease-in;
    transition: width .15s ease-in
}

.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:hover .item--meta:before,
.ct-testimonial-carousel1.style3 .ct-slick-carousel .item--inner:hover .item--meta:after {
    width: 50%;
    height: 100%;
    opacity: 1;
    -webkit-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -khtml-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -moz-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -ms-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    -o-transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s;
    transition: height .15s .15s ease-in, width .15s .35s linear, opacity 0s .15s
}

.ct-testimonial-carousel2 .ct-testimonial-inner {
    display: flex
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom {
    width: 35%;
    align-items: flex-start;
    flex-direction: column
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .wp-meta .text-title {
    min-width: 375px;
    margin-top: -9px
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .append-arrows-custom .slick-arrow:before {
    background: 0 0;
    -webkit-text-fill-color: unset
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .append-arrows-custom .slick-arrow:after {
    background: linear-gradient(to right, #000, #000 50%, #161616 50%);
    background-size: 200% 100%;
    overflow: hidden;
    -webkit-transition: background-position 300ms ease;
    -khtml-transition: background-position 300ms ease;
    -moz-transition: background-position 300ms ease;
    -ms-transition: background-position 300ms ease;
    -o-transition: background-position 300ms ease;
    transition: background-position 300ms ease
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .append-arrows-custom .slick-arrow.slick-prev:after {
    background-position: -100%
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .append-arrows-custom .slick-arrow.slick-next:after {
    background-position: 100%
}

.ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .append-arrows-custom .slick-arrow:hover:after {
    background-position: 0
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel {
    width: 65%;
    padding-bottom: 0;
    background-color: #121212;
    overflow: hidden
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .slick-list {
    margin: 0 -50px
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--author {
    position: relative;
    display: inline-block;
    margin-top: 43px;
    padding-top: 10px;
    cursor: default
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--author span {
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--author:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 2px;
    background-color: #bf2025;
    z-index: -1;
    -webkit-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .2s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .2s cubic-bezier(.24, .74, .58, 1);
    transition: .2s cubic-bezier(.24, .74, .58, 1)
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--inner {
    padding: 40px;
    cursor: grab
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--inner:hover .item--author:before {
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(5px);
    -khtml-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px)
}

.ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--inner:hover .item--author span {
    margin: 0 10px
}

@media screen and (max-width:1199px) {
    .ct-testimonial-carousel2 .ct-testimonial-inner {
        flex-wrap: wrap
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .container-custom {
        width: 100%;
        flex-direction: row
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .wp-meta {
        width: 50%
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel {
        width: 100%;
        margin-top: 40px
    }
}

@media screen and (max-width:575px) {
    .ct-testimonial-carousel2 .ct-testimonial-inner .container-custom {
        text-align: center;
        flex-wrap: wrap
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .wp-meta {
        width: 100%
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .wp-meta .text-title {
        min-width: fit-content
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .container-custom .append-arrows-custom {
        width: 100%;
        justify-content: center
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--inner {
        padding: 30px 25px
    }

    .ct-testimonial-carousel2 .ct-testimonial-inner .ct-slick-carousel .item--author {
        margin-top: 23px
    }
}

.ct-testimonial .item--star {
    display: inline-block
}

.ct-testimonial .item--star i {
    display: inline-block;
    font-size: 13px;
    color: rgba(198, 198, 198, .5);
    margin: 0 3px
}

.ct-testimonial .item--star.one-star i:nth-child(1) {
    color: #eccc39
}

.ct-testimonial .item--star.two-star i:nth-child(1),
.ct-testimonial .item--star.two-star i:nth-child(2) {
    color: #eccc39
}

.ct-testimonial .item--star.three-star i:nth-child(1),
.ct-testimonial .item--star.three-star i:nth-child(2),
.ct-testimonial .item--star.three-star i:nth-child(3) {
    color: #eccc39
}

.ct-testimonial .item--star.four-star i:nth-child(1),
.ct-testimonial .item--star.four-star i:nth-child(2),
.ct-testimonial .item--star.four-star i:nth-child(3),
.ct-testimonial .item--star.four-star i:nth-child(4) {
    color: #eccc39
}

.ct-testimonial .item--star.five-star i {
    color: #eccc39
}

.ct-testimonial-grid1 .item--title {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    font-size: 20px;
    color: #ededed;
    margin-bottom: 0
}

.ct-testimonial-grid1 .item--position {
    font-size: 16px;
    color: #161616
}

.ct-testimonial-grid1 .item--image {
    width: 60px;
    min-width: 60px;
    position: relative;
    z-index: 1;
    margin-right: 24px
}

.ct-testimonial-grid1 .item--image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 66px;
    height: 66px;
    -webkit-border-radius: 60px;
    -khtml-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    z-index: -1;
    background-color: #bf2025
}

.ct-testimonial-grid1 .item--image img {
    -webkit-border-radius: 60px;
    -khtml-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px
}

.ct-testimonial-grid1 .item--holder {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 28px
}

.ct-testimonial-grid1 .item--description {
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    margin-bottom: 12px
}

.ct-testimonial-grid1 .item--star {
    font-size: 12px;
    color: #ffa800
}

.ct-testimonial-grid1 .item--inner {
    -webkit-border-radius: 7px;
    -khtml-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    border-radius: 7px;
    padding: 40px 30px 36px 40px;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -moz-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -ms-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -o-transition: .3s cubic-bezier(.24, .74, .58, 1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(237, 237, 237, .12)
}

@media screen and (max-width:1199px) {
    .ct-testimonial-grid1 .item--inner {
        padding-left: 30px
    }
}

.woocommerce .ct-loading-add-cart .button.loading {
    opacity: 1
}

.woocommerce .ct-loading-add-cart .button.loading i {
    opacity: 0
}

.woocommerce .ct-loading-add-cart .button.loading:before {
    content: '' !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    z-index: 1;
    -webkit-border-radius: inherit;
    -khtml-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
    border-radius: inherit;
    display: block !important;
    transform: translate(0, 0)
}

.woocommerce .ct-loading-add-cart .button.loading:after {
    content: '' !important;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border-color: transparent #0a472f transparent #0a472f;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: ctspin .6s infinite linear;
    -webkit-animation: ctspin .6s infinite linear;
    box-sizing: border-box;
    z-index: 2
}

.woocommerce .woocommerce-product-inner.sale .woocommerce-product-sale {
    display: block
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 99;
    width: 100%;
    right: 0;
    left: 0;
    top: 0
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta>div {
    opacity: 1;
    -webkit-transform: translateX(0);
    -khtml-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    margin: 5px
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta button,
.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta a {
    background-color: #f9ebdb
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.add_to_cart_button:before,
.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.add_to_cart_button:before {
    background-color: initial;
    content: "\f12f";
    font-family: Caseicon;
    font-size: 16px
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.add_to_cart_button.added,
.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.add_to_cart_button.added {
    display: none
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.add_to_cart_button.loading,
.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.add_to_cart_button.loading {
    opacity: 1
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.add_to_cart_button.loading:before,
.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.add_to_cart_button.loading:before {
    opacity: 0
}

.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta button.add_to_cart_button.loading:after,
.woocommerce-product-meta-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta a.add_to_cart_button.loading:after {
    content: '';
    width: 16px;
    height: 16px;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    border-color: transparent #000 transparent #000;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: ctspin .6s infinite linear;
    -webkit-animation: ctspin .6s infinite linear;
    box-sizing: border-box;
    z-index: 2
}

.ct-slick-slider.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart .product_type_external:before,
.ct-grid.woocommerce .woocommerce-product-inner .woocommerce-product-meta .woocommerce-add-to-cart .product_type_external:before {
    content: "\f104";
    font-family: Caseicon;
    font-size: 12px !important
}

.ct-dot-carousel-center.elementor-column {
    position: static
}

.ct-dot-carousel-center.elementor-column .elementor-widget-wrap {
    position: static
}

.ct-dot-carousel-center.elementor-column .elementor-widget-wrap .elementor-element {
    position: static
}

.ct-dot-carousel-center.elementor-column .elementor-widget-wrap .elementor-element .slick-list,
.ct-dot-carousel-center.elementor-column .elementor-widget-wrap .elementor-element .slick-slider {
    position: static
}

.ct-dot-carousel-center.elementor-column .elementor-widget-wrap .elementor-element .slick-list .slick-track,
.ct-dot-carousel-center.elementor-column .elementor-widget-wrap .elementor-element .slick-slider .slick-track {
    position: static
}

.ct-dot-carousel-center.elementor-column .slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.ct-product-grid-layout1 .ct-grid-inner,
.ct-product-carousel1 .ct-grid-inner {
    margin: 0 -15px -46px
}

.ct-product-grid-layout1 .ct-grid-inner .grid-item,
.ct-product-carousel1 .ct-grid-inner .grid-item {
    margin-bottom: 46px
}

.ct-product-grid-layout1 .ct-grid-pagination,
.ct-product-carousel1 .ct-grid-pagination {
    padding: 0
}

.ct-product-grid-layout1 .ct-grid-pagination .ct-posts-pagination,
.ct-product-carousel1 .ct-grid-pagination .ct-posts-pagination {
    padding-top: 35px
}

.ct-product-grid-layout1 .ct-carousel-inner .container-custom,
.ct-product-carousel1 .ct-carousel-inner .container-custom {
    position: relative;
    margin: 0 15px;
    padding-bottom: 40px
}

@media screen and (max-width:575px) {

    .ct-product-grid-layout1 .ct-carousel-inner .container-custom,
    .ct-product-carousel1 .ct-carousel-inner .container-custom {
        padding-bottom: 30px
    }
}

.ct-product-grid-layout1 .woocommerce-product-header .woocommerce-product-details,
.ct-product-carousel1 .woocommerce-product-header .woocommerce-product-details {
    display: block
}

.ct-product-grid-layout1 .woocommerce-product-header .woocommerce-product-details img,
.ct-product-carousel1 .woocommerce-product-header .woocommerce-product-details img {
    padding: 45px
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--title,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--title {
    margin-bottom: 4px
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--brand,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--brand {
    font-size: 14px;
    color: #c6c6c6;
    padding: 2px 0
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    height: 30px;
    color: #c6c6c6;
    align-items: center;
    font-family: chakra petch, sans-serif
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price del,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price del {
    font-size: 16px;
    font-weight: 600;
    padding-left: 10px;
    height: 25px;
    order: 2
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price del .amount,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price del .amount {
    color: #c6c6c6
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price ins,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price ins {
    color: #fff;
    font-weight: 700;
    height: 30px;
    order: 1
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price .amount,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price .price .amount {
    color: #fff
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart a,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart a {
    position: relative;
    display: block;
    color: #ededed;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    background-color: initial;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button {
    padding: 5px 0;
    opacity: 1
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button:before,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button:before {
    content: '\f054';
    font-family: "font awesome 5 pro";
    color: #ededed;
    position: relative;
    bottom: 3px;
    font-size: 10px;
    line-height: 1;
    background-color: #bf2025;
    padding: 4.5px 6.5px 5.5px 7.5px;
    margin-right: 10px;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button span,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button span {
    background: linear-gradient(to right, #bf2025, #bf2025 50%, #ededed 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    overflow: hidden;
    -webkit-transition: background-position 300ms ease;
    -khtml-transition: background-position 300ms ease;
    -moz-transition: background-position 300ms ease;
    -ms-transition: background-position 300ms ease;
    -o-transition: background-position 300ms ease;
    transition: background-position 300ms ease
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button:hover span,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button:hover span {
    background-position: 0 100%
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button.loading span,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button.loading span {
    opacity: .1
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button.loading:after,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button.loading:after {
    content: "\e031";
    font-family: woocommerce;
    vertical-align: top;
    font-weight: 400;
    position: absolute;
    top: 15%;
    right: 35%;
    -webkit-animation: spin 2s linear infinite;
    -khtml-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button.added,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .add_to_cart_button.added {
    display: none
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .added_to_cart.wc-forward,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .added_to_cart.wc-forward {
    font-weight: 500;
    padding-top: 0
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .added_to_cart.wc-forward:before,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .added_to_cart.wc-forward:before {
    content: '\f07a';
    font-family: "font awesome 5 pro";
    position: relative;
    font-size: 14px;
    margin-right: 15px;
    line-height: 1;
    color: #ededed;
    overflow: hidden
}

.ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .added_to_cart.wc-forward:hover,
.ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart .added_to_cart.wc-forward:hover {
    color: #bf2025
}

@media screen and (max-width:1199px) {

    .ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price,
    .ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-product--price {
        width: 100%
    }

    .ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart,
    .ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart {
        width: 100%;
        margin-top: 5px
    }

    .ct-product-grid-layout1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart a,
    .ct-product-carousel1 .woocommerce-product-content .woocommerce-product--features .woocommerce-add-to--cart a {
        text-align: left
    }
}

.ct-product-carousel1 .ct-carousel-inner {
    overflow: hidden
}

.ct-product-carousel1.arrows-style2 .ct-slick-carousel[data-arrows=true] {
    padding-bottom: 0
}

.widget.woocommerce.widget_product_search .search-field {
    font-size: 16px;
    height: 60px;
    color: #ededed;
    padding: 20px;
    background-color: #121212
}

.widget.woocommerce.widget_product_search button {
    display: none
}

.widget.woocommerce.widget_products .product_list_widget li {
    position: relative;
    padding: 0;
    margin-bottom: 15px;
    min-height: 80px
}

.widget.woocommerce.widget_products .wg-product-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

.widget.woocommerce.widget_products .wg-product-inner .wg-product-image {
    width: 90px;
    min-width: 90px;
    margin-right: 20px
}

.widget.woocommerce.widget_products .wg-product-inner .wg-product-image img {
    position: static;
    width: 100%;
    margin: 0;
    top: 0;
    left: 0;
    background-color: #121212
}

.widget.woocommerce.widget_products .wg-product-inner .product-title {
    margin-bottom: 4px
}

.widget.woocommerce.widget_products .wg-product-inner .product-title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500
}

.woocommerce a.button.added::after {
    display: none
}

.ct-product-grid .grid-filter-wrap {
    margin-bottom: 40px;
    padding: 0
}

.ct-product-grid .nice-select.order-category {
    height: 60px;
    padding: 17px 20px;
    cursor: pointer
}

.ct-product-grid .nice-select.order-category:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #bf2025;
    opacity: 0;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-product-grid .nice-select.order-category .current {
    font-size: 16px;
    padding: 0;
    margin: 0;
    border: none;
    font-family: chakra petch, sans-serif
}

.ct-product-grid .nice-select.order-category .current:hover {
    background-color: inherit
}

.ct-product-grid .nice-select.order-category:hover:before,
.ct-product-grid .nice-select.order-category:active:before,
.ct-product-grid .nice-select.order-category:focus:before {
    opacity: 1
}

.ct-product-grid .niceopen .list {
    margin-top: 45px;
    max-height: 347px
}

.ct-product-grid .niceopen .list .option {
    line-height: 42px;
    text-transform: uppercase
}

.ct-blog-carousel-layout1 .container-custom,
.ct-related-post .container-custom {
    position: relative;
    margin: 0 15px;
    padding-bottom: 30px
}

.ct-blog-carousel-layout1 .container-custom .wp-meta,
.ct-related-post .container-custom .wp-meta {
    position: relative
}

.ct-blog-carousel-layout1 .container-custom .wp-meta .title-holder,
.ct-related-post .container-custom .wp-meta .title-holder {
    z-index: -1
}

.ct-blog-carousel-layout1 .container-custom .wp-meta .text-title,
.ct-related-post .container-custom .wp-meta .text-title {
    margin-bottom: 0
}

@media screen and (max-width:575px) {

    .ct-blog-carousel-layout1 .container-custom .wp-meta .text-title,
    .ct-related-post .container-custom .wp-meta .text-title {
        font-size: 38px
    }
}

@media screen and (max-width:480px) {

    .ct-blog-carousel-layout1 .container-custom .wp-meta .text-title,
    .ct-related-post .container-custom .wp-meta .text-title {
        font-size: 30px
    }
}

.ct-blog-carousel-layout1 .ct-slick-carousel,
.ct-related-post .ct-slick-carousel {
    margin: 0 15px;
    overflow: hidden
}

.ct-blog-carousel-layout1 .ct-slick-carousel .slick-list,
.ct-related-post .ct-slick-carousel .slick-list {
    margin: 0 -15px
}

.ct-blog-carousel-layout1 .grid-item-inner,
.ct-related-post .grid-item-inner {
    position: relative;
    padding-top: 31px
}

.ct-blog-carousel-layout1 .grid-item-inner:before,
.ct-related-post .grid-item-inner:before,
.ct-blog-carousel-layout1 .grid-item-inner:after,
.ct-related-post .grid-item-inner:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-carousel-layout1 .grid-item-inner:after,
.ct-related-post .grid-item-inner:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured,
.ct-related-post .grid-item-inner .item--featured {
    position: relative;
    overflow: hidden
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured img,
.ct-related-post .grid-item-inner .item--featured img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-filter: brightness(60%);
    -khtml-filter: brightness(60%);
    -moz-filter: brightness(60%);
    -ms-filter: brightness(60%);
    -o-filter: brightness(60%);
    filter: brightness(60%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category,
.ct-related-post .grid-item-inner .item--featured .item--category {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 1px solid #bf2025;
    padding-top: 7px;
    -webkit-transition: all 100ms linear 0ms;
    -khtml-transition: all 100ms linear 0ms;
    -moz-transition: all 100ms linear 0ms;
    -ms-transition: all 100ms linear 0ms;
    -o-transition: all 100ms linear 0ms;
    transition: all 100ms linear 0ms
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category:before,
.ct-related-post .grid-item-inner .item--featured .item--category:before,
.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category:after,
.ct-related-post .grid-item-inner .item--featured .item--category:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category:before,
.ct-related-post .grid-item-inner .item--featured .item--category:before {
    top: -2px
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category:after,
.ct-related-post .grid-item-inner .item--featured .item--category:after {
    top: 0
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category:hover:before,
.ct-related-post .grid-item-inner .item--featured .item--category:hover:before,
.ct-blog-carousel-layout1 .grid-item-inner .item--featured .item--category:hover:after,
.ct-related-post .grid-item-inner .item--featured .item--category:hover:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured+.item--holder,
.ct-related-post .grid-item-inner .item--featured+.item--holder {
    padding-top: 23px
}

@media screen and (max-width:575px) {

    .ct-blog-carousel-layout1 .grid-item-inner .item--title,
    .ct-related-post .grid-item-inner .item--title {
        font-size: 20px
    }
}

.ct-blog-carousel-layout1 .grid-item-inner .item--title .text-line,
.ct-related-post .grid-item-inner .item--title .text-line {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical
}

.ct-blog-carousel-layout1 .grid-item-inner .item--meta,
.ct-related-post .grid-item-inner .item--meta {
    display: flex;
    padding-top: 5px
}

@media screen and (max-width:1199px) {

    .ct-blog-carousel-layout1 .grid-item-inner .item--meta,
    .ct-related-post .grid-item-inner .item--meta {
        padding-top: 0
    }
}

.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--category,
.ct-related-post .grid-item-inner .item--meta .item--category,
.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--date,
.ct-related-post .grid-item-inner .item--meta .item--date,
.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--comment,
.ct-related-post .grid-item-inner .item--meta .item--comment {
    font-size: 14px;
    color: #fff
}

.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--date+.item--comment,
.ct-related-post .grid-item-inner .item--meta .item--date+.item--comment,
.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--date+.item--category,
.ct-related-post .grid-item-inner .item--meta .item--date+.item--category,
.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--comment+.item--category,
.ct-related-post .grid-item-inner .item--meta .item--comment+.item--category {
    position: relative;
    padding-left: 25px
}

.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--date+.item--comment:before,
.ct-related-post .grid-item-inner .item--meta .item--date+.item--comment:before,
.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--date+.item--category:before,
.ct-related-post .grid-item-inner .item--meta .item--date+.item--category:before,
.ct-blog-carousel-layout1 .grid-item-inner .item--meta .item--comment+.item--category:before,
.ct-related-post .grid-item-inner .item--meta .item--comment+.item--category:before {
    content: "\f45c";
    position: absolute;
    color: #bf2025;
    top: 50%;
    left: 10px;
    font-size: 5px;
    line-height: 1;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 900;
    font-family: "font awesome 5 pro"
}

.ct-blog-carousel-layout1 .grid-item-inner .item--featured+.item--holder .item--category,
.ct-related-post .grid-item-inner .item--featured+.item--holder .item--category {
    display: none
}

.ct-blog-carousel-layout1 .grid-item-inner .item--readmore,
.ct-related-post .grid-item-inner .item--readmore {
    margin-top: 29px
}

@media screen and (max-width:1199px) {

    .ct-blog-carousel-layout1 .grid-item-inner .item--readmore,
    .ct-related-post .grid-item-inner .item--readmore {
        margin-top: 20px
    }
}

.ct-blog-carousel-layout1 .grid-item-inner:hover:after,
.ct-related-post .grid-item-inner:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-blog-carousel-layout1 .grid-item-inner:hover .item--featured img,
.ct-related-post .grid-item-inner:hover .item--featured img {
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-grid-inner {
    margin: 0 -15px
}

.ct-grid-inner .grid-item {
    margin-bottom: 30px
}

.ct-grid-inner+.ct-grid-pagination {
    margin-top: -20px
}

.ct-grid.ct-blog-grid .ct-grid-inner {
    margin: 0 -15px
}

.ct-grid.ct-blog-grid .ct-grid-inner .grid-item {
    margin-bottom: 30px
}

.ct-grid.ct-blog-grid .ct-grid-inner+.ct-grid-pagination {
    margin-top: -20px
}

.ct-grid.ct-blog-grid .item--category.uppercase-text {
    text-transform: uppercase
}

.ct-blog-grid-layout1 .container-custom {
    padding-bottom: 30px
}

.ct-blog-grid-layout1 .grid-item-inner {
    position: relative;
    padding-top: 41px
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured {
    overflow: hidden;
    position: relative
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured a {
    display: block
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured a img {
    object-fit: cover;
    object-position: center center;
    -webkit-filter: brightness(60%);
    -khtml-filter: brightness(60%);
    -moz-filter: brightness(60%);
    -ms-filter: brightness(60%);
    -o-filter: brightness(60%);
    filter: brightness(60%);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured .item--meta {
    position: absolute;
    left: 40px;
    bottom: 47px
}

@media screen and (max-width:991px) {
    .ct-blog-grid-layout1 .grid-item-inner .item--featured .item--meta {
        left: 20px;
        bottom: 21px
    }
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured .item--category a,
.ct-blog-grid-layout1 .grid-item-inner .item--featured .item--title a {
    color: #fff
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured .item--category a:hover,
.ct-blog-grid-layout1 .grid-item-inner .item--featured .item--title a:hover {
    color: #bf2025
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured .item--title {
    max-width: 350px;
    margin-bottom: 0
}

@media screen and (max-width:575px) {
    .ct-blog-grid-layout1 .grid-item-inner .item--featured .item--title {
        font-size: 20px
    }
}

.ct-blog-grid-layout1 .grid-item-inner .item--category {
    position: relative;
    display: flex;
    width: fit-content;
    font-size: 15px;
    font-weight: 600;
    border-top: 1px solid #bf2025;
    padding-top: 7px;
    -webkit-transition: all 100ms linear 0ms;
    -khtml-transition: all 100ms linear 0ms;
    -moz-transition: all 100ms linear 0ms;
    -ms-transition: all 100ms linear 0ms;
    -o-transition: all 100ms linear 0ms;
    transition: all 100ms linear 0ms
}

.ct-blog-grid-layout1 .grid-item-inner .item--category+.item--title {
    padding-top: 8px
}

.ct-blog-grid-layout1 .grid-item-inner .item--category a {
    display: contents
}

.ct-blog-grid-layout1 .grid-item-inner .item--category:before,
.ct-blog-grid-layout1 .grid-item-inner .item--category:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-grid-layout1 .grid-item-inner .item--category:before {
    top: -2px
}

.ct-blog-grid-layout1 .grid-item-inner .item--category:after {
    top: 0
}

.ct-blog-grid-layout1 .grid-item-inner .item--category:hover:before,
.ct-blog-grid-layout1 .grid-item-inner .item--category:hover:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-blog-grid-layout1 .grid-item-inner .item--featured+.item--holder {
    display: none
}

.ct-blog-grid-layout1 .grid-item-inner:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-blog-grid-layout1 .grid-item-inner:hover .item--featured img {
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-blog-grid-layout2 .container-custom {
    padding-bottom: 30px
}

.ct-blog-grid-layout2 .grid-item-inner {
    padding-top: 41px
}

.ct-blog-grid-layout2 .item--featured {
    position: relative;
    display: flex;
    justify-content: space-between
}

.ct-blog-grid-layout2 .item--featured .item-date {
    display: flex;
    position: absolute;
    top: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ededed;
    min-width: 96px;
    padding: 19px 18.5px;
    justify-content: center;
    background-color: #bf2025;
    z-index: 1;
    font-family: mulish, sans-serif
}

.ct-blog-grid-layout2 .item--featured .item--image {
    overflow: hidden
}

.ct-blog-grid-layout2 .item--featured .item--image img {
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-blog-grid-layout2 .item--featured:hover img {
    -webkit-filter: brightness(80%);
    -khtml-filter: brightness(80%);
    -moz-filter: brightness(80%);
    -ms-filter: brightness(80%);
    -o-filter: brightness(80%);
    filter: brightness(80%);
    -webkit-transform: scale(1.1)rotate(-.5deg);
    -khtml-transform: scale(1.1)rotate(-.5deg);
    -moz-transform: scale(1.1)rotate(-.5deg);
    -ms-transform: scale(1.1)rotate(-.5deg);
    -o-transform: scale(1.1)rotate(-.5deg);
    transform: scale(1.1)rotate(-.5deg)
}

.ct-blog-grid-layout2 .item--holder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 0 18px 30px
}

.ct-blog-grid-layout2 .item--holder .item--category {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-size: 15px;
    border-top: 1px solid #bf2025;
    padding: 9px 0;
    -webkit-transition: all 100ms linear 0ms;
    -khtml-transition: all 100ms linear 0ms;
    -moz-transition: all 100ms linear 0ms;
    -ms-transition: all 100ms linear 0ms;
    -o-transition: all 100ms linear 0ms;
    transition: all 100ms linear 0ms
}

.ct-blog-grid-layout2 .item--holder .item--category:before,
.ct-blog-grid-layout2 .item--holder .item--category:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-grid-layout2 .item--holder .item--category:before {
    top: -2px
}

.ct-blog-grid-layout2 .item--holder .item--category:after {
    top: 0
}

.ct-blog-grid-layout2 .item--holder .item--category a:before,
.ct-blog-grid-layout2 .item--holder .item--category a:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-bottom: 1px solid #bf2025;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -khtml-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-grid-layout2 .item--holder .item--category a:before {
    bottom: -2px
}

.ct-blog-grid-layout2 .item--holder .item--category a:after {
    bottom: 0
}

.ct-blog-grid-layout2 .item--holder .item--category:hover {
    border-color: transparent
}

.ct-blog-grid-layout2 .item--holder .item--category:hover:before,
.ct-blog-grid-layout2 .item--holder .item--category:hover:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-blog-grid-layout2 .item--holder .item--category:hover a:before,
.ct-blog-grid-layout2 .item--holder .item--category:hover a:after {
    opacity: .5;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.ct-blog-grid-layout3 .ct-grid-inner .grid-item {
    padding-bottom: 20px
}

.ct-blog-grid-layout3 .item--featured {
    padding-top: 30px
}

.ct-blog-grid-layout3 .item--featured:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-blog-grid-layout3 .item--featured .item--category {
    display: flex;
    width: fit-content;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-top: 1px solid #bf2025;
    padding-top: 7px;
    -webkit-transition: all 100ms linear 0ms;
    -khtml-transition: all 100ms linear 0ms;
    -moz-transition: all 100ms linear 0ms;
    -ms-transition: all 100ms linear 0ms;
    -o-transition: all 100ms linear 0ms;
    transition: all 100ms linear 0ms
}

.ct-blog-grid-layout3 .item--featured .item--category a {
    display: contents
}

.ct-blog-grid-layout3 .item--featured .item--category:before,
.ct-blog-grid-layout3 .item--featured .item--category:after {
    content: '';
    position: absolute;
    left: 0;
    width: -webkit-fill-available;
    border-top: 1px solid #bf2025;
    opacity: .5;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-blog-grid-layout3 .item--featured .item--category:before {
    top: -2px
}

.ct-blog-grid-layout3 .item--featured .item--category:after {
    top: 0
}

.ct-blog-grid-layout3 .item--featured .item--category:hover:before,
.ct-blog-grid-layout3 .item--featured .item--category:hover:after {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px)
}

.ct-blog-grid-layout3 .item--featured .item--image {
    position: relative;
    margin-bottom: 29px
}

.ct-blog-grid-layout3 .item--featured .item--image a {
    display: block
}

.ct-blog-grid-layout3 .item--featured .item--image a img {
    width: 100%;
    object-fit: cover
}

.ct-blog-grid-layout3 .item--featured .item--image .item--category {
    position: absolute;
    left: 20px;
    bottom: 18px
}

.ct-blog-grid-layout3 .item--featured .item--image+.item--holder .item--category {
    display: none
}

.ct-blog-grid-layout3 .item--featured .item--holder .item--category {
    position: relative;
    margin-bottom: 11px
}

.ct-blog-grid-layout3 .item--featured .item--holder .item--title {
    margin-bottom: 9px
}

.ct-blog-grid-layout3 .item--featured .item--holder .item--title+.item-date {
    margin-top: 12px
}

.ct-blog-grid-layout3 .item--featured .item--holder .item-excerpt {
    margin-bottom: 13px
}

.ct-blog-grid-layout3 .item--featured .item--holder .btn-readmore {
    margin-top: 27px
}

.ct-blog-grid-layout3 .ct-grid-pagination {
    padding: 0
}

.ct-blog-grid-layout3 .ct-grid-pagination .ct-posts-pagination {
    padding-top: 10px
}

.ct-blog-grid-layout3 .os-scrollbar {
    opacity: 0
}

.ct-blog-grid-layout3 .ct-grid-inner:hover .os-scrollbar {
    opacity: 1
}

.ct-portfolio-grid1 .ct-grid-inner.row {
    margin: 0 -15px
}

.ct-portfolio-grid1 .item--featured {
    position: relative;
    overflow: hidden
}

.ct-portfolio-grid1 .item--featured img {
    max-width: inherit;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-portfolio-grid1 .item--featured:before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 5px solid #bf2025;
    visibility: hidden;
    z-index: 2;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-portfolio-grid1 .item--holder {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: .25s cubic-bezier(.48, .57, .33, .89)
}

.ct-portfolio-grid1 .item--holder .item--meta {
    position: absolute;
    top: 40px;
    left: 30px;
    padding-right: 30px;
    transition: .2s cubic-bezier(.48, .57, .33, .89)
}

.ct-portfolio-grid1 .item--holder .item--meta .item--title {
    -webkit-transform: translateY(30px);
    -khtml-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    color: #fff
}

.ct-portfolio-grid1 .item--holder .item--meta .item--title:hover {
    color: #bf2025
}

.ct-portfolio-grid1 .item--holder .item--meta .item--category {
    font-size: 14px;
    line-height: 1.714;
    font-weight: 500;
    margin-bottom: 10px;
    -webkit-transform: translateY(30px);
    -khtml-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
    color: #fff
}

.ct-portfolio-grid1 .item--holder .item--meta .item--category a {
    color: #fff
}

.ct-portfolio-grid1 .item--holder .item--meta .item--category a:hover {
    color: #bf2025
}

.ct-portfolio-grid1 .grid-item {
    margin-bottom: 30px
}

.ct-portfolio-grid1 .grid-item:hover .item--featured img {
    -webkit-filter: brightness(60%);
    -khtml-filter: brightness(60%);
    -moz-filter: brightness(60%);
    -ms-filter: brightness(60%);
    -o-filter: brightness(60%);
    filter: brightness(60%);
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-portfolio-grid1 .grid-item:hover .item--featured:before {
    visibility: visible
}

.ct-portfolio-grid1 .grid-item:hover .item--featured:after {
    opacity: 1
}

.ct-portfolio-grid1 .grid-item:hover .item--holder {
    background-color: rgba(22, 22, 22, .6)
}

.ct-portfolio-grid1 .grid-item:hover .item--holder .item--title,
.ct-portfolio-grid1 .grid-item:hover .item--holder .item--category {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.ct-portfolio-grid2 .ct-grid-inner.row {
    margin: 0 -15px -50px
}

.ct-portfolio-grid2 .grid-item-inner {
    margin-bottom: 20px
}

.ct-portfolio-grid2 .item--meta {
    padding-top: 25px
}

.ct-portfolio-grid2 .item--meta .item--text {
    display: flex;
    align-items: center;
    margin-bottom: 17px
}

.ct-portfolio-grid2 .item--meta .item--sale+.item--title {
    padding-left: 17px
}

.ct-portfolio-grid2 .item--meta .item--sale {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    padding: 16.5px 18px 14.5px;
    background-color: #bf2025;
    font-family: chakra petch, sans-serif
}

.ct-portfolio-grid2 .item--meta .item--title {
    line-height: 1.39;
    margin-bottom: 0
}

.ct-portfolio-grid2 .item--meta .item--excerpt.text-line {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical
}

.ct-portfolio-grid2 .item--meta .btn-readmore {
    margin-top: 33px
}

.ct-portfolio-grid2 .item--meta:hover:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-portfolio-carousel1 .entry-feature img,
.ct-portfolio-carousel1 .entry-meta,
.ct-portfolio-carousel1 .entry-icon,
.ct-portfolio-carousel1 .entry-category,
.ct-portfolio-carousel1 .entry-title,
.ct-portfolio-carousel1 .entry-excerpt,
.ct-portfolio-carousel1 .entry-feature:before {
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.ct-portfolio-carousel1 .ct-carousel-inner .container-custom {
    position: relative;
    margin: 0 15px;
    padding-bottom: 35px;
    margin-bottom: 39px
}

.ct-portfolio-carousel1 .ct-carousel-inner .container-custom:before,
.ct-portfolio-carousel1 .ct-carousel-inner .container-custom:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #242424;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms
}

.ct-portfolio-carousel1 .ct-carousel-inner .container-custom:after {
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border-color: #bf2025
}

.ct-portfolio-carousel1 .ct-carousel-inner:hover .container-custom:after {
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.ct-portfolio-carousel1 .wp-meta,
.ct-portfolio-carousel1 .entry-feature {
    position: relative
}

.ct-portfolio-carousel1 .entry-feature {
    overflow: hidden
}

.ct-portfolio-carousel1 .entry-feature a {
    color: #fff
}

.ct-portfolio-carousel1 .entry-feature img {
    width: 100%;
    object-fit: cover
}

.ct-portfolio-carousel1 .entry-feature:before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 5px solid #bf2025;
    visibility: hidden;
    z-index: 2
}

.ct-portfolio-carousel1 .entry-feature .entry-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-icon {
    position: absolute;
    left: 40px;
    bottom: 40px;
    -webkit-transform: translateY(10px);
    -khtml-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    z-index: 1
}

@media screen and (max-width:1199px) {
    .ct-portfolio-carousel1 .entry-feature .entry-meta .entry-icon {
        left: 20px
    }
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-icon a {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 2px solid #fff;
    font-size: 13px;
    color: #bf2025;
    width: 40px;
    height: 40px;
    line-height: 2.923;
    text-align: center;
    margin-right: 10px
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-icon a:hover {
    background-color: initial;
    color: #fff
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder {
    position: absolute;
    left: 40px;
    top: 40px
}

@media screen and (max-width:1199px) {
    .ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder {
        left: 20px
    }
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-category,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-title,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-excerpt {
    display: block;
    -webkit-transform: translateY(10px);
    -khtml-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    visibility: hidden;
    opacity: 0
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-category {
    font-size: 14px;
    line-height: 1.714;
    font-weight: 500;
    margin-bottom: 10px
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-title+.entry-excerpt {
    margin-top: 25px
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-category,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-title,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-excerpt {
    padding-right: 40px
}

.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-category a:hover,
.ct-portfolio-carousel1 .entry-feature .entry-meta .entry-holder .entry-title a:hover {
    color: #bf2025
}

.ct-portfolio-carousel1 .entry-feature:hover:before {
    visibility: visible
}

.ct-portfolio-carousel1 .entry-feature:hover img {
    -webkit-transform: scale(1.15)rotate(-.5deg);
    -khtml-transform: scale(1.15)rotate(-.5deg);
    -moz-transform: scale(1.15)rotate(-.5deg);
    -ms-transform: scale(1.15)rotate(-.5deg);
    -o-transform: scale(1.15)rotate(-.5deg);
    transform: scale(1.15)rotate(-.5deg)
}

.ct-portfolio-carousel1 .entry-feature:hover .entry-meta {
    background-color: rgba(22, 22, 22, .6)
}

.ct-portfolio-carousel1 .entry-feature:hover .entry-meta .entry-icon,
.ct-portfolio-carousel1 .entry-feature:hover .entry-meta .entry-category,
.ct-portfolio-carousel1 .entry-feature:hover .entry-meta .entry-title,
.ct-portfolio-carousel1 .entry-feature:hover .entry-meta .entry-excerpt {
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1
}

::-moz-selection {
    color: #fff;
    background: #bf2025
}

::selection {
    color: #fff;
    background: #bf2025
}

h2+ul,
h2+ol {
    margin-bottom: 0
}

.wp-block-button {
    margin-bottom: 30px
}

.entry-body .entry-content .wp-block-cover-text {
    color: rgba(255, 255, 255, .87);
    padding-left: 30px;
    padding-right: 30px;
    font-size: 24px;
    line-height: 1.25
}

body .wp-block-gallery {
    display: flex;
    margin-bottom: 25px
}

body .wp-block-gallery .blocks-gallery-caption {
    font-size: 15px
}

.alignleft,
.alignright,
.aligncenter {
    margin-top: 15px;
    margin-bottom: 35px
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 35px
}

.alignright {
    display: inline;
    float: right;
    margin-left: 35px
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-block-button {
    margin-bottom: 32px
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0
}

.wp-block-button a {
    color: #fff !important
}

.wp-block-button.is-style-outline a {
    color: #ededed !important
}

.wp-block-quote.is-style-large {
    padding: 30px 60px 30px 80px
}

@media screen and (max-width:767px) {
    .wp-block-quote.is-style-large {
        padding: 30px 15px 30px 40px
    }
}

.wp-block-quote cite {
    display: inline-block
}

.wp-block-quote.is-large {
    padding: 25px 20px
}

.wp-block-pullquote {
    padding-left: 20px;
    padding-right: 20px
}

.wp-block-pullquote.aligncenter {
    text-align: center
}

.wp-block-pullquote.alignright {
    text-align: right
}

.wp-block-pullquote.alignleft {
    text-align: left
}

@media screen and (max-width:767px) {
    .wp-block-pullquote p {
        line-height: 1.4;
        font-size: 25px
    }
}

@media screen and (max-width:767px) {

    .wp-block-quote.is-style-large p,
    .wp-block-quote.is-large p {
        line-height: 1.4;
        font-size: 25px
    }

    .wp-block-quote cite {
        font-size: 20px
    }
}

.blocks-gallery-caption {
    margin-bottom: 32px
}

.wp-block-cover,
.wp-block-cover-image {
    margin-bottom: 52px
}

.block-editor-rich-text__editable a {
    color: #fff
}

.wp-block-group.has-background {
    padding: 20px 30px;
    margin: 30px 0
}

.wp-block-media-text.has-background {
    margin-bottom: 25px
}

.wp-block-media-text .wp-block-media-text__content {
    padding-top: 15px
}

.wp-block-media-text .wp-block-media-text__content .has-large-font-size {
    line-height: 1.3;
    margin-bottom: 16px
}

.wp-block-media-text .wp-block-media-text__content .has-large-font-size+p {
    margin-bottom: 25px
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.6842em
}

@media screen and (min-width:576px) {
    blockquote>ul {
        margin-left: 1.65em;
        padding-left: 0
    }

    li>ol,
    blockquote>ol {
        margin-left: 1.15em;
        padding-left: 0
    }
}

blockquote cite a {
    color: #bf2025
}

blockquote cite a:hover {
    color: #bf2025
}

.wp-block-column .wp-block-quote {
    border-left: 4px solid #2e279d;
    background-color: #f3f3f3;
    padding: 28px 20px;
    font-size: 24px
}

.wp-block-column .wp-block-quote cite {
    font-size: 15px;
    padding-left: 20px
}

.wp-block-column .wp-block-quote cite:before {
    width: 10px
}

.wp-block-cover p {
    color: #fff
}

.wp-block-cover-image,
.wp-block-cover {}

.wp-block-cover-image.has-background-dim p,
.wp-block-cover.has-background-dim p {
    line-height: 48px;
    color: #fff
}

.format-gallery .entry-content>.gallery .gallery-item {
    display: inline-block;
    padding: 1.79104%;
    text-align: center;
    vertical-align: top;
    width: 100%
}

.format-gallery .entry-content>.gallery.gallery-columns-2 .gallery-item {
    max-width: 50%
}

.format-gallery .entry-content>.gallery.gallery-columns-3 .gallery-item {
    max-width: 33.33%
}

.format-gallery .entry-content>.gallery.gallery-columns-4 .gallery-item {
    max-width: 25%
}

.format-gallery .entry-content>.gallery.gallery-columns-5 .gallery-item {
    max-width: 20%
}

.format-gallery .entry-content>.gallery.gallery-columns-6 .gallery-item {
    max-width: 16.66%
}

.format-gallery .entry-content>.gallery.gallery-columns-7 .gallery-item {
    max-width: 14.28%
}

.format-gallery .entry-content>.gallery.gallery-columns-8 .gallery-item {
    max-width: 12.5%
}

.format-gallery .entry-content>.gallery.gallery-columns-9 .gallery-item {
    max-width: 11.11%
}

.format-gallery .entry-content>.gallery .gallery-caption {
    color: #707070;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 0
}

.format-gallery .entry-content>.gallery.gallery-columns-6 .gallery-caption,
.format-gallery .entry-content>.gallery.gallery-columns-7 .gallery-caption,
.format-gallery .entry-content>.gallery.gallery-columns-8 .gallery-caption,
.format-gallery .entry-content>.gallery.gallery-columns-9 .gallery-caption {
    display: none
}

@media(max-width:480px);
}

    {
    margin-left: 0;
    text-align: left;
    clear: none;
    float: none;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 480px)
}

    {
    min-width: 280px;
}

.wp-block-archives.wp-block-archives-dropdown {
    position: relative;
    margin-bottom: 30px;
}

.wp-block-archives.wp-block-archives-dropdown select {
    padding-right: 55px;
    position: relative;
}

.wp-block-archives.wp-block-archives-dropdown .nice-select:after,
.wp-block-archives.wp-block-archives-dropdown .select2 .select2-selection--single .select2-selection__arrow:after,
.select2 .select2-selection--single .wp-block-archives.wp-block-archives-dropdown .select2-selection__arrow:after {
    content: "\f107";
    font-family: fontawesome;
    font-size: 16px;
    text-align: center;
    color: #fff;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0px, -50%);
    height: 23px;
    width: 23px;
    line-height: 23px;
    -webkit-border-radius: 23px;
    -khtml-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
    border-radius: 23px;
    background-color: #bf2025;
    font-style: normal;
}

.wp-block-categories.wp-block-categories-dropdown {
    margin-bottom: 30px;
}

.wp-block-categories.wp-block-categories-dropdown .nice-select {
    position: relative;
}

.wp-block-categories.wp-block-categories-dropdown .nice-select:after,
.wp-block-categories.wp-block-categories-dropdown .select2 .select2-selection--single .select2-selection__arrow:after,
.select2 .select2-selection--single .wp-block-categories.wp-block-categories-dropdown .select2-selection__arrow:after {
    content: "\f107";
    font-family: fontawesome;
    font-size: 16px;
    text-align: center;
    color: #fff;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0px, -50%);
    height: 23px;
    width: 23px;
    line-height: 23px;
    -webkit-border-radius: 23px;
    -khtml-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
    border-radius: 23px;
    background-color: #bf2025;
    font-style: normal;
}

.wp-block-search {
    margin-bottom: 30px;
}

.wp-block-search .wp-block-search__button {
    margin-bottom: 0;
    border: none;
    height: 51px;
    line-height: 51px;
    min-width: 90px;
    padding: 0;
    background-color: #ededed;
    color: #fff;
}

.wp-block-search .wp-block-search__button:hover {
    background-color: #bf2025;
    color: #fff;
}

.single-post .entry-featured .image-light-box {
    display: inline-block;
}

.wp-block-latest-posts li {
    position: relative;
}

.wp-block-latest-posts li a {
    color: #c6c6c6;
}

.wp-block-latest-posts li+li {
    margin-top: 10px;
}

.wp-block-latest-posts li+li:before {
    top: 0px;
}

.wp-block-latest-posts.wp-block-latest-posts__list.has-dates li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f4f4f4;
}

.wp-block-latest-posts.wp-block-latest-posts__list.is-grid li {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.wp-block-latest-posts.wp-block-latest-posts__list.is-grid li a {
    color: #ededed;
}

.widget-area .widget_block .wp-block-latest-posts__list li:before {
    top: 10px;
}

.wp-block-calendar table {
    margin-bottom: 0;
}

.wp-block-calendar .wp-calendar-nav {
    margin-bottom: 30px;
}

.post-password-form label {
    display: block;
    max-width: 100%;
    margin-right: 20px;
}

.post-password-form label input {
    height: 51px;
    line-height: 51px;
    margin-top: 20px;
}

.post-password-form input {
    margin: 0;
}

.post-password-form input[type=submit] {
    border: none;
    line-height: 51px;
}

.post-password-form p {
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 767px) {
    .post-password-form label {
        max-width: 100%;
    }
}

#tslOverlay {
    background-color: transparent !important;
}

#elementor-panel-get-pro-elements {
    display: none !important;
}

.elementor-icons-manager__tab__item {
    height: 80px !important;
}

.entry-content .page-links {
    padding-top: 18px;
}

.entry-content p+.page-links {
    clear: left;
    padding-top: 0px;
}

.entry-content p+.page-links .post-page-numbers:first-child {
    margin-left: 0;
}

.single-post .entry-content .wp-block-archives-list {
    list-style: none;
    margin-bottom: 32px;
}

.single-post .entry-content .wp-block-archives-list li {
    padding-left: 14px;
    position: relative;
}

.single-post .entry-content .wp-block-archives-list li+li {
    margin-top: 4px;
}

.single-post .entry-content .wp-block-archives-list li:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #bf2025;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {

    .wp-block-calendar tbody td,
    .wp-block-calendar th {
        padding: 4px 5px 4px 15px;
        text-align: center;
    }
}

ol {
    list-style: outside none decimal;
}

ul {
    padding: 0;
    margin: 0 0 15px;
}

ul li {
    list-style-position: inside;
    line-height: 25px;
}

dl+h2+ul {
    padding-left: 0px;
    margin-left: 1.45em;
}

dl+h2+ul ul {
    padding-left: 1.65em;
    padding-left: 15px;
}

dl+h2+ul ul ul {
    padding-left: 1.65em;
    padding-left: 15px;
    margin-left: 5px;
}

dl+h2+ul ul li {
    font-size: 16px;
    list-style: outside;
}

dl+h2+ul ul {
    margin-top: 5px;
    margin-bottom: 5px;
}

dl+h2+ul ul li {
    line-height: 30px;
}

ul+h2+ol li {
    line-height: 30px;
    font-size: 16px;
}

h2+ol ol {
    margin-top: 5px;
    margin-bottom: 5px;
}

.single-post .single-hentry .single-meta .entry-meta li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.single-hentry .entry-holder .entry-title {
    text-overflow: ellipsis;
    overflow: hidden;
}

.wp-block-rss {
    margin-bottom: 32px;
    list-style: none;
}

.wp-block-rss li {
    padding-left: 14px;
    position: relative;
}

.wp-block-rss li:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #bf2025;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -khtml-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.single-post .wp-block-latest-posts li,
.single-post .wp-block-categories-list li,
.single-post .wp-block-archives-list li {
    padding-bottom: 18px;
    position: relative;
    padding: 10px 10px 10px 15px;
    line-height: 20px;
}

.single-post .wp-block-latest-posts li a,
.single-post .wp-block-categories-list li a,
.single-post .wp-block-archives-list li a {
    display: inline-block;
}

.single-post .wp-block-latest-posts li .count-post,
.single-post .wp-block-categories-list li .count-post,
.single-post .wp-block-archives-list li .count-post {
    margin-left: 15px;
    color: #47a145;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    width: 24px;
    line-height: 22px;
    font-size: 12px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(155, 155, 155, 0.2);
    position: absolute;
    right: 5px;
    top: 5px;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}

.single-product .up-sells h2 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: capitalize;
}

.comment-list-wrap+.no-comments {
    margin-top: 50px;
}

.woocommerce .cart-collaterals .cross-sells h2,
.woocommerce-page .cart-collaterals .cross-sells h2 {
    font-size: 24px;
    margin-bottom: 22px;
}

.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-page .cart-collaterals .cart_totals h2 {
    font-size: 24px;
    margin-bottom: 22px !important;
}

.woocommerce div.product .up-sells h2 {
    font-size: 22px;
    margin-bottom: 32px;
}

.woocommerce div.product .up-sells h2 {
    font-size: 22px;
    margin-bottom: 32px;
}

.no-results.not-found {}

.no-results.not-found .page-title {
    font-size: 42px;
    line-height: 1.2;
    text-transform: uppercase;
}

.no-results.not-found .search-field {
    background-color: #121212;
    border: 1px solid #343434;
    padding: 12px 60px 12px 15px;
}

.no-results.not-found .search-field:hover,
.no-results.not-found .search-field:active,
.no-results.not-found .search-field:focus {
    border-color: #bf2025;
}

.no-results.not-found .grandicon-search {
    color: #bf2025;
}

.no-results.not-found .grandicon-search:hover {
    color: #fff;
}

.widget-area .widget_block .wp-block-latest-posts__list li:before {
    top: 10px;
}

.widget-area .widget_block h2 {
    font-size: 22px;
    line-height: 21px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
}

.widget-area .widget_block.widget_search .wp-block-search__label {
    color: #ededed;
    margin-bottom: 25px;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
    font-family: 'Chakra Petch', sans-serif;
}

.widget-area .widget_block.widget_search .wp-block-search {
    margin-bottom: 0;
}

.widget-area .widget_block.widget_search .wp-block-search__input {
    background-color: #121212;
    padding: 12px;
    border: 1px solid #343434;
}

.widget-area .widget_block.widget_search .wp-block-search__input:hover,
.widget-area .widget_block.widget_search .wp-block-search__input:active,
.widget-area .widget_block.widget_search .wp-block-search__input:focus {
    border-color: #bf2025;
}

.widget-area .widget_block .wp-block-latest-posts li {
    padding-left: 20px;
    position: relative;
}

.widget-area .widget_block .wp-block-latest-posts li:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #bf2025;
    content: '';
    width: 8px;
    height: 8px;
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.widget-area .widget_block .wp-block-latest-posts li a {
    font-weight: 500;
}

.widget-area .widget_block .wp-block-latest-posts li a:hover {
    color: #bf2025;
}

.widget-area .widget_block .wp-block-latest-posts li+li {
    margin-top: 10px;
}

.widget-area .widget_block .wp-block-latest-posts.wp-block-latest-posts__list.has-dates li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f4f4f4;
}

.widget-area .widget_block .wp-block-latest-posts.wp-block-latest-posts__list.is-grid li {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.widget-area .widget_block .wp-block-latest-posts.wp-block-latest-posts__list.is-grid li a {
    color: #ededed;
}

.widget-area .widget_block .wp-block-calendar table {
    margin-bottom: 0;
}

.widget-area .widget_block .wp-block-calendar .wp-calendar-nav {
    margin-bottom: 30px;
}

.widget-area .widget_block .wp-block-latest-comments {
    padding-left: 0;
    margin-bottom: 0;
    font-weight: 300;
}

.widget-area .widget_block .wp-block-latest-comments a {
    color: #ededed;
}

.widget-area .widget_block .wp-block-latest-comments a:hover {
    color: #bf2025;
}

.widget-area .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    padding-left: 20px;
}

.widget-area .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 8px;
    background-color: #bf2025;
    content: '';
    width: 8px;
    height: 8px;
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}

.widget-area .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
    margin-bottom: 0;
}

#secondary .widget {}

#secondary .widget .widget-title {
    text-transform: uppercase;
}

#secondary .widget.widget_rss li {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #cfd8dd;
}

#secondary .widget.widget_rss li .rsswidget {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
    color: #ededed;
    text-transform: uppercase;
}

#secondary .widget.widget_rss li .rsswidget:hover {
    color: #bf2025;
}

#secondary .widget.widget_rss li .rssSummary {
    margin-bottom: 5px;
}

#secondary .widget.widget_rss li .rss-date {
    padding-left: 30px;
    position: relative;
    margin: 6px 0 6px;
    font-style: normal;
    font-weight: 500;
    color: #fff;
}

#secondary .widget.widget_rss li .rss-date:before {
    position: absolute;
    content: '\f109';
    font-family: grandicon;
    left: 0;
    color: #bf2025;
}

#secondary .widget.widget_rss li cite {
    padding-left: 30px;
    position: relative;
    margin: 10px 0 6px;
    font-style: normal;
    color: #ededed;
    font-size: 14px;
}

#secondary .widget.widget_rss li cite:before {
    position: absolute;
    content: '\f139';
    font-family: grandicon;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #bf2025;
}

#secondary .widget.widget_rss li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

#secondary .widget.widget_rss ul {
    margin-bottom: 0;
}

#secondary .widget.widget_rss .rss-widget-icon {
    margin-bottom: 5px;
}

#secondary .widget.widget_rss .rss-widget-title {
    color: #bf2025;
    font-size: 23px;
}

#secondary .widget.widget_rss .rss-widget-title:hover {
    color: #fff;
}

#secondary .widget.widget_archive select {
    height: 53px;
}

#secondary .widget.widget_archive .widget-title+ul {
    margin-top: -9px;
}

#secondary .widget.widget_categories,
#secondary .widget.widget_text,
#secondary .widget.widget_archive {
    overflow: visible;
}

#secondary .widget.widget_categories .widget-title {
    margin-bottom: 30px;
}

#secondary .widget.widget_categories .widget-title+ul {
    margin-top: -8px;
}

#secondary .widget.widget_text .textwidget>p>img {
    margin: 15px 0 25px;
}

#secondary .widget.widget_text form {
    margin-bottom: -20px;
}

#secondary .widget.widget_text img {
    width: 100%;
}

#secondary .widget.widget_nav_menu ul li:not(:last-child) a,
#secondary .widget.widget_pages ul li:not(:last-child) a,
#secondary .widget.widget_meta ul li:not(:last-child) a {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

body.rtl {
    direction: rtl;
    unicode-bidi: embed;
    text-align: right;
}

body.rtl .site-content .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed>.elementor-column-gap-extended,
body.rtl .site-footer-custom .elementor-section-stretched.elementor-section-full_width .elementor-section-boxed>.elementor-column-gap-extended {
    left: auto;
    right: 50%;
    -webkit-transform: translate(50%, 0%);
    -khtml-transform: translate(50%, 0%);
    -moz-transform: translate(50%, 0%);
    -ms-transform: translate(50%, 0%);
    -o-transform: translate(50%, 0%);
    transform: translate(50%, 0%);
}

body.rtl .text-left,
body.rtl .align-left {
    text-align: right;
}

body.rtl .slick-slide {
    float: right;
}

body.rtl .ct-grid .ct-load-more i {
    margin-left: 0;
    margin-right: 4px;
}

body.rtl input[type=text],
body.rtl input[type=email],
body.rtl input[type=url],
body.rtl input[type=password],
body.rtl input[type=search],
body.rtl input[type=tel],
body.rtl input[type=number],
body.rtl input[type=range],
body.rtl input[type=date],
body.rtl input[type=month],
body.rtl input[type=week],
body.rtl input[type=time],
body.rtl input[type=datetime],
body.rtl input[type=datetime-local],
body.rtl input[type=color],
body.rtl textarea,
body.rtl select,
body.rtl .nice-select {
    text-align: right;
}

body.rtl caption,
body.rtl td {
    text-align: right;
}

body.rtl .nice-select {
    padding-left: 40px;
    padding-right: 22px;
}

body.rtl .nice-select:after,
body.rtl .select2 .select2-selection--single .select2-selection__arrow:after,
.select2 .select2-selection--single body.rtl .select2-selection__arrow:after {
    left: 18px;
    right: auto;
}

body.rtl .ct-nav-carousel {}

body.rtl .ct-nav-carousel .nav-prev .fac-angle-left::before {
    content: "\f105";
}

body.rtl .ct-nav-carousel .nav-next {
    margin-left: 0;
    margin-right: 10px;
}

body.rtl .ct-nav-carousel .nav-next .fac-angle-right::before {
    content: "\f104";
}

body.rtl #ct-header-wrap .ct-header-meta .header-right-item.h-btn-cart .widget_cart_counter_header {
    right: auto;
    left: -11px;
}

body.rtl #ct-header-wrap .ct-header-branding .logo-light,
body.rtl #ct-header-wrap #ct-header-wrap .ct-header-branding .logo-mobile {
    left: auto;
    right: 0%;
}

body.rtl #ct-header-wrap .ct-header-holder.style1 .ct-h-middle-item .ct-h-middle-icon {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl #ct-header-wrap .ct-header-holder.style1 .ct-h-middle-item+.ct-h-middle-item {
    margin-left: 0;
    margin-right: 35px;
    padding-left: 0;
    padding-right: 30px;
}

body.rtl #ct-header-wrap .ct-header-holder.style1 .ct-h-middle-item+.ct-h-middle-item:before {
    left: auto;
    right: -1px;
}

body.rtl #ct-header-wrap .ct-header-meta {
    margin-left: 0;
    margin-right: 17px;
}

body.rtl #ct-header-wrap .ct-header-meta .header-right-item+.header-right-item {
    margin-left: 0;
    margin-right: 34px;
}

body.rtl #ct-header-wrap #ct-header-top.ct-header-top1 .ct-header-social a+a {
    margin-left: 0;
    margin-right: 20px;
}

body.rtl #ct-header-wrap #ct-header-top.ct-header-top1 .site-header-lang {
    padding-left: 0px !important;
    padding-right: 27px !important;
    margin-left: 0px;
    margin-right: 12px;
}

body.rtl #ct-header-wrap #ct-header-top.ct-header-top1 .site-header-lang:before {
    left: auto;
    right: 0;
}

body.rtl #ct-header-wrap .site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle,
body.rtl #ct-header-wrap .site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle {
    padding: 0 0 0 15px;
}

body.rtl #ct-header-wrap .site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle:after,
body.rtl #ct-header-wrap .site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle:after {
    right: auto;
    left: 0;
}

body.rtl .header-mobile-search .search-submit {
    right: auto;
    left: 0;
}

body.rtl .ct-menu-toggle {
    right: auto;
    left: 0;
}

body.rtl .ct-header-arrow:before {
    left: auto;
    right: 0;
    -webkit-transform: skew(30deg);
    -khtml-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -ms-transform: skew(30deg);
    -o-transform: skew(30deg);
    transform: skew(30deg);
}

@media screen and (min-width: 1200px) {
    body.rtl .ct-main-menu>li {
        float: right;
    }

    body.rtl .ct-main-menu>li.menu-item-has-children>a::after,
    body.rtl .ct-main-menu.children-plus>li>a .menu-icon-plus {
        margin-left: 0;
        margin-right: 4px;
    }

    body.rtl .ct-main-menu .sub-menu {
        left: auto;
        right: 0;
    }

    body.rtl .ct-main-menu .sub-menu a {
        padding-left: 10px;
        padding-right: 0;
    }

    body.rtl .ct-main-menu .sub-menu a:before {
        left: auto;
        right: 0px;
    }

    body.rtl .ct-main-menu .sub-menu li.menu-item-has-children>a::after {
        right: auto;
        left: 0;
        content: "\f103";
    }

    body.rtl .ct-main-menu .sub-menu li>a:hover,
    body.rtl .ct-main-menu .sub-menu li.current_page_item>a,
    body.rtl .ct-main-menu .sub-menu li.current-menu-item>a,
    body.rtl .ct-main-menu .sub-menu li.current_page_ancestor>a,
    body.rtl .ct-main-menu .sub-menu li.current-menu-ancestor>a {
        padding-left: 0;
        padding-right: 18px;
    }

    body.rtl .ct-main-menu .sub-menu li>a:hover:before,
    body.rtl .ct-main-menu .sub-menu li.current_page_item>a:before,
    body.rtl .ct-main-menu .sub-menu li.current-menu-item>a:before,
    body.rtl .ct-main-menu .sub-menu li.current_page_ancestor>a:before,
    body.rtl .ct-main-menu .sub-menu li.current-menu-ancestor>a:before {
        right: 0;
    }

    body.rtl .ct-main-menu .sub-menu .sub-menu {
        right: 100%;
    }

    body.rtl .ct-main-menu li.megamenu .sub-menu {
        left: 0;
        right: 0;
    }

    body.rtl #ct-header-wrap .ct-header-top1 .ct-topbar-cart i {
        margin-right: 0;
        margin-left: 6px;
    }

    body.rtl #ct-header-wrap .ct-secondary-menu>li>a::after {
        margin-left: 0;
        margin-right: 8px;
    }

    body.rtl .content-has-sidebar.float-left {
        padding-right: 15px;
        padding-left: 70px;
    }

    body.rtl .content-has-sidebar.float-right {
        padding-left: 15px;
        padding-right: 70px;
    }
}

@media screen and (max-width: 1199px) {
    body.rtl {}

    body.rtl .ct-main-menu .sub-menu li a {
        padding-left: 0;
        padding-right: 15px;
    }

    body.rtl .ct-main-menu .link-icon {
        float: right;
        margin-right: 0;
        margin-left: 8px;
    }

    body.rtl .ct-menu-mobile .btn-nav-cart {
        margin-right: 0;
        margin-left: 6px;
    }

    body.rtl #ct-header-wrap .ct-menu-mobile {
        right: auto;
        left: 15px;
    }

    body.rtl .ct-header-navigation {
        left: auto;
        right: 0;
    }

    body.rtl .ct-header-navigation .ct-main-navigation {
        -webkit-transform: translateX(100%);
        -khtml-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    body.rtl .ct-header-navigation.navigation-open .ct-main-navigation {
        -webkit-transform: translateX(0%);
        -khtml-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

body.rtl .ct-breadcrumb li a {
    display: inline-flex;
    align-items: center;
}

body.rtl .ct-breadcrumb li a:after {
    float: left;
    content: "\f113";
}

body.rtl .entry-meta li i,
body.rtl .item--meta-default li i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .entry-readmore .fac-angle-right:before {
    content: "\f104";
}

body.rtl .posts-pagination .fac-angle-right:before {
    content: "\f104";
}

body.rtl .posts-pagination .fac-angle-left:before {
    content: "\f105";
}

body.rtl .single-hentry .entry-featured .entry-date,
body.rtl .single-hentry .entry-featured .ct-blog-grid-layout1 .item--date,
body.rtl .ct-blog-grid-layout1 .single-hentry .entry-featured .item--date,
body.rtl .single-hentry .entry-featured .ct-blog-carousel-layout1 .item--date,
body.rtl .single-hentry .entry-featured .ct-related-post .item--date,
body.rtl .ct-blog-carousel-layout1 .single-hentry .entry-featured .item--date,
body.rtl .ct-related-post .single-hentry .entry-featured .item--date {
    left: auto;
    right: 24px;
}

body.rtl blockquote {
    padding-right: 37px;
    padding-left: 57px;
}

body.rtl .comments-title,
body.rtl .comment-reply-title {
    padding-right: 0;
    padding-left: 33px;
}

body.rtl .comments-title:before,
body.rtl .comment-reply-title:before {
    left: auto;
    right: 0;
}

body.rtl .ct-item-meta li {
    margin-right: 0;
    margin-left: 30px;
}

body.rtl.single-post .entry-tags {
    margin-right: 0;
    margin-left: 30px;
}

body.rtl.single-post .entry-tags a {
    margin-right: 0;
    margin-left: 5px;
}

body.rtl.single-post .entry-social a+a {
    margin-left: 0;
    margin-right: 6px;
}

body.rtl .comment-list li .comment-respond {
    margin-left: 0;
    margin-right: 127px;
}

body.rtl .single-hentry .entry-meta::before {
    left: auto;
    right: 0;
}

body.rtl .ct-recent-news1 .item--image,
body.rtl .ct-recent-news2 .item--image {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl #secondary .widget .widget-title span {
    padding-right: 0;
    padding-left: 35px;
}

body.rtl #secondary .widget .widget-title span:before {
    left: auto;
    right: 0;
}

body.rtl #content .widget_product_categories ul li a .count,
body.rtl #content .widget_categories ul li a .count,
body.rtl #content .widget_nav_menu ul li a .count,
body.rtl #content .widget_pages ul li a .count,
body.rtl #content .widget_archive ul li a .count,
body.rtl #content .widget_meta ul li a .count,
body.rtl #content .widget_recent_entries ul li a .count {
    float: left;
}

body.rtl span.count.left {
    float: left;
}

body.rtl .widget_search .search-form .search-submit {
    right: auto;
    left: 0;
}

body.rtl .widget_ct_recent_posts .entry-media {
    margin-right: 0;
    margin-left: 20px;
}

body.rtl .widget_ct_recent_posts .item-date i {
    margin-right: 0;
    margin-left: 5px;
}

body.rtl .ct-getintouch .ct-getintouch-item i {
    margin-right: 0;
    margin-left: 12px;
}

body.rtl .ct-getintouch .ct-getintouch-item a.btn i,
body.rtl .ct-getintouch .ct-getintouch-item a[type=submit] i,
body.rtl .ct-getintouch .ct-getintouch-item .btn-form a[type=submit] i,
.btn-form body.rtl .ct-getintouch .ct-getintouch-item a[type=submit] i {
    margin-left: 12px;
    margin-right: 0;
}

body.rtl .ct-mailchimp1.style1 .mc4wp-form .mc4wp-form-fields input[type=email],
body.rtl .ct-mailchimp1.style1 .mc4wp-form .mc4wp-form-fields input[type=text],
body.rtl .ct-mailchimp1.style4 .mc4wp-form .mc4wp-form-fields input[type=email],
body.rtl .ct-mailchimp1.style4 .mc4wp-form .mc4wp-form-fields input[type=text] {
    padding-right: 22px;
    padding-left: 72px;
    text-align: right;
}

body.rtl .ct-mailchimp1.style1 .mc4wp-form .mc4wp-form-fields input[type=submit],
body.rtl .ct-mailchimp1.style1 .mc4wp-form .mc4wp-form-fields::before,
body.rtl .ct-mailchimp1.style1 .mc4wp-form .mc4wp-form-fields::after,
body.rtl .ct-mailchimp1.style4 .mc4wp-form .mc4wp-form-fields input[type=submit],
body.rtl .ct-mailchimp1.style4 .mc4wp-form .mc4wp-form-fields::before,
body.rtl .ct-mailchimp1.style4 .mc4wp-form .mc4wp-form-fields::after {
    right: auto !important;
    left: 0;
}

body.rtl #content .widget_product_categories ul li a::before,
body.rtl #content .widget_categories ul li a::before,
body.rtl #content .widget_nav_menu ul li a::before,
body.rtl #content .widget_pages ul li a::before,
body.rtl #content .widget_archive ul li a::before,
body.rtl #content .widget_meta ul li a::before,
body.rtl #content .widget_recent_entries ul li a::before {
    content: "\f103";
    margin-right: 0;
    margin-left: 6px;
    display: inline-block;
}

body.rtl .ct-navigation-menu1.style1 a::before {
    content: "\f103";
    display: inline-block;
    margin-right: 0;
    margin-left: 6px;
}

body.rtl .ct-contact-info1 .ct-contact-icon {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .ct-counter-layout1 .ct-counter-icon,
body.rtl .ct-fancy-box-layout3 .item--icon {
    margin-right: 0;
    margin-left: 18px;
}

body.rtl .ct-shop-banner1 .item--image-animate {
    right: auto;
    left: 35px;
}

body.rtl .ct-shop-banner1 .item--image-fixed {
    right: auto;
    left: 25px;
}

body.rtl .woocommerce-product-inner .woocommerce-product-content .woocommerce-add-to-cart a i {
    -webkit-transform: scaleX(-1);
    -khtml-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 8px;
    margin-left: 0;
}

body.rtl .ct-countdown .countdown-item .countdown-amount:before {
    right: auto;
    left: -17px;
}

body.rtl .ct-blog-grid-layout1 .item--readmore,
body.rtl .ct-blog-carousel-layout1 .item--readmore,
body.rtl .ct-related-post .item--readmore {
    margin-left: 20px;
    margin-right: 0;
}

body.rtl .ct-blog-grid-layout1 .item--readmore i:before,
body.rtl .ct-blog-carousel-layout1 .item--readmore i:before,
body.rtl .ct-related-post .item--readmore i:before {
    content: "\f103";
}

body.rtl .ct-blog-grid-layout1 .item--comment i,
body.rtl .ct-blog-carousel-layout1 .item--comment i,
body.rtl .ct-related-post .item--comment i {
    margin-right: 0;
    margin-left: 4px;
}

body.rtl .ct-blog-grid-layout1 .item--title::before,
body.rtl .ct-blog-carousel-layout1 .item--title::before,
body.rtl .ct-related-post .item--title::before {
    left: auto;
    right: 0;
}

body.rtl .ct-blog-grid-layout1 .item--meta li+li,
body.rtl .ct-blog-carousel-layout1 .item--meta li+li,
body.rtl .ct-related-post .item--meta li+li {
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 18px;
    margin-right: 12px;
}

body.rtl .ct-blog-grid-layout1 .item--meta li+li:before,
body.rtl .ct-blog-carousel-layout1 .item--meta li+li:before,
body.rtl .ct-related-post .item--meta li+li:before {
    left: auto;
    right: 0;
}

body.rtl .ct-blog-grid-layout1 .item--meta li+li:after,
body.rtl .ct-blog-carousel-layout1 .item--meta li+li:after,
body.rtl .ct-related-post .item--meta li+li:after {
    left: auto;
    right: 5px;
}

body.rtl .ct-blog-grid-layout1 .item--meta i,
body.rtl .ct-blog-carousel-layout1 .item--meta i,
body.rtl .ct-related-post .item--meta i {
    margin-right: 0;
    margin-left: 6px;
}

body.rtl .ct-service-grid1 .item-icon,
body.rtl .ct-service-carousel1 .item-icon {
    right: auto;
    left: 25px;
}

body.rtl .ct-testimonial-carousel2 .item--image {
    margin-right: 0;
    margin-left: 20px;
}

body.rtl .ct-navigation-menu1.default a:after {
    left: auto;
    right: 0;
}

body.rtl .ct-navigation-menu1.default a:before {
    left: auto;
    right: 30px;
}

body.rtl .ct-navigation-menu1.default li.current-menu-item>a,
body.rtl .ct-navigation-menu1.default li>a:hover {
    padding-left: 0;
    padding-right: 60px;
}

body.rtl .ct-navigation-menu1.default li.current-menu-item>a::before,
body.rtl .ct-navigation-menu1.default li>a:hover::before {
    left: auto;
    right: 44px;
}

body.rtl blockquote:before {
    left: auto;
    right: 0;
}

body.rtl.single-post .entry-category {
    right: auto;
    left: 35px;
}

body.rtl.single-post .entry-meta::before {
    left: auto;
    right: 0;
}

body.rtl.single-post .entry-footer label {
    margin-right: 0;
    margin-left: 17px;
}

body.rtl.single-post .post-previous-next .fac-angle-double-left::before {
    content: "\f101";
}

body.rtl.single-post .post-previous-next .fac-angle-double-right::before {
    content: "\f100";
}

body.rtl.single-post .post-previous-next .post-previous {
    margin-right: 0;
    margin-left: 30px;
}

body.rtl .single-hentry .entry-readmore .btn i,
body.rtl .single-hentry .entry-readmore input[type=submit] i,
body.rtl .single-hentry .entry-readmore .btn-form button[type=submit] i,
.btn-form body.rtl .single-hentry .entry-readmore button[type=submit] i {
    margin-left: 0;
    -webkit-transform: scaleX(-1);
    -khtml-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 8px;
}

body.rtl .single-hentry:hover .entry-readmore i {
    -webkit-transform: scaleX(-1) translateX(8px);
    -khtml-transform: scaleX(-1) translateX(8px);
    -moz-transform: scaleX(-1) translateX(8px);
    -ms-transform: scaleX(-1) translateX(8px);
    -o-transform: scaleX(-1) translateX(8px);
    transform: scaleX(-1) translateX(8px);
}

body.rtl .comment-inner img.avatar {
    margin-right: 0;
    margin-left: 25px;
}

@media screen and (max-width: 767px) {
    body.rtl .comment-inner img.avatar {
        margin-left: 18px;
        margin-right: 0px;
    }
}

@media screen and (max-width: 575px) {
    body.rtl .comment-inner img.avatar {
        margin: 0 auto 22px auto;
    }
}

body.rtl .comment-reply {
    right: auto;
    left: 22px;
}

body.rtl .comment-reply a i {
    margin-left: 0;
    margin-right: 4px;
}

body.rtl .comment-reply a i:before {
    content: "\f103";
}

body.rtl .comment-form-cookies-consent {
    padding-left: 0;
    padding-right: 20px;
}

body.rtl .comment-form-cookies-consent input {
    left: auto;
    right: 0;
}

body.rtl .comment-form-cookies-consent label:before,
body.rtl .comment-form-cookies-consent label:after {
    left: auto;
    right: 0;
}

body.rtl .entry-navigation .nav-post-prev .nav-post-img {
    margin-right: 0;
    margin-left: 22px;
}

body.rtl .entry-navigation .nav-post-prev .nav-post-label i {
    margin-left: 4px;
    margin-right: 0px;
}

body.rtl .entry-navigation .nav-post-prev .nav-post-label i:before {
    content: "\f114";
}

body.rtl .entry-navigation .nav-post-next {
    text-align: left;
}

body.rtl .entry-navigation .nav-post-next {}

body.rtl .entry-navigation .nav-post-next .nav-post-img {
    margin-left: 0;
    margin-right: 22px;
}

body.rtl .entry-navigation .nav-post-next .nav-post-label i {
    margin-left: 0;
    margin-right: 4px;
}

body.rtl .entry-navigation .nav-post-next .nav-post-label i:before {
    content: "\f113";
}

body.rtl .ct-widget-cart-sidebar .widget_shopping_cart {
    width: auto;
}

body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li {
    padding-right: 0;
    padding-left: 15px;
}

body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content .cart-product-image {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_content a.remove_from_cart_button {
    right: auto;
    left: 0;
}

body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn:not(.checkout),
body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons input[type=submit]:not(.checkout),
body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons .btn-form button[type=submit]:not(.checkout),
.btn-form body.rtl .ct-widget-cart-sidebar .widget_shopping_cart .widget_shopping_cart_footer p.buttons button[type=submit]:not(.checkout) {
    margin-right: 0;
    margin-left: 20px;
}

body.rtl.woocommerce #secondary .widget_product_search button {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid #ececf0;
}

body.rtl.woocommerce #secondary .widget_product_search .woocommerce-product-search::before {
    display: none;
}

body.rtl.woocommerce #secondary .widget_price_filter .price_slider_amount .button {
    margin-left: 20px;
    margin-right: 0;
}

body.rtl.woocommerce #secondary .widget_products ul li {
    padding-left: 0;
    padding-right: 95px;
}

body.rtl.woocommerce #secondary .widget_products ul li img {
    left: auto;
    right: 0;
}

body.rtl.single-product #primary div.product .woocommerce-sg-product-feature li i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl.single-product #primary div.product .quantity,
body.rtl.single-product>div.product .quantity {
    margin-right: 0;
    margin-left: 30px;
}

body.rtl.single-product section.related h2::before {
    left: auto;
    right: 0;
}

body.rtl.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text,
body.rtl.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
    padding-right: 100px;
    padding-left: 0;
}

@media screen and (max-width: 575px) {

    body.rtl.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text,
    body.rtl.single-product>div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
        padding-left: 0px;
        padding-right: 60px;
    }
}

body.rtl.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosc-btn,
body.rtl.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosc-btn {
    margin-right: 0;
    margin-left: 16px;
}

body.rtl.single-product #primary div.product .entry-summary .woocommerce-sg-product-button .woosc-btn:before,
body.rtl.single-product>div.product .entry-summary .woocommerce-sg-product-button .woosc-btn:before {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl.single-product #primary div.product .entry-summary .woocommerce-sg-product-button a::before,
body.rtl.single-product>div.product .entry-summary .woocommerce-sg-product-button a::before,
body.rtl.single-product #primary div.product .entry-summary .woocommerce-sg-product-button button::before,
body.rtl.single-product>div.product .entry-summary .woocommerce-sg-product-button button::before,
body.rtl.single-product #primary div.product .entry-summary .single_add_to_cart_button::before,
body.rtl.single-product>div.product .entry-summary .single_add_to_cart_button::before {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl.woocommerce-cart .cart-empty.woocommerce-info::before {
    right: 50%;
    transform: translate(50%, 0);
}

body.rtl .scroll-top {
    right: auto;
    left: 0;
}



.footer-container {
  background-size: 100%;
  background-repeat: no-repeat;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

/* Company Info Styles */
.footer-company {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-company-name a {
  text-decoration: none;
  padding-left: 5px;
}

/* Social Icons Styles */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Tablet and larger: single row */
@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .footer-company {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-right: 40px;
  }
}





/* footer style start */
.footer {
  background-color: #fff;
  color: #ffffff;
  padding: 40px 20px;
}

.footer-subdiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 30%;
  margin: 10px;
  min-width: 250px;
}

.footer-logo {
  width: 85%;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
}

.footer-map {
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer-contact-item i {
  color: #ffc107;
  font-size: 16px;
  line-height: 1.5;
  flex-shrink: 0;
  margin-right: 5px;
  color: #bf2025;
}

.footer-contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  transition: all .3s;
}

.footer-contact-item p:hover {
  color: #bf2025;
}


.footer-col h4 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #bf2025;
}

.footer-col p {
    font-size: 17px;
    color: #000000bb;
}

/* footer style end */




.sponsor-section {
      padding-top: 60px !important;
    }

    .sponsor-section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #333;
    }

    .sponsor-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      /* max-width: 1200px; */
      margin: 0 auto;
      padding-top: 60px !important;
    }

    .sponsor-item {
      background-color: #f1f1f1;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      opacity: 0;
      transform: scale(0.8);
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

    .sponsor-item.visible {
      opacity: 1;
      transform: scale(1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sponsor-item:hover {
        transform: scale(1.05) rotateZ(0.5deg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .sponsor-logo {
        height: 100px !important;
        max-height: 100px !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        width: 100% !important;
        object-fit: contain !important;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .sponsor-grid {
        grid-template-columns: 1fr;
      }

      .slick-prev:before, .slick-next:before {
        display: none !important;
    }
    }



    /* mission */
    @media only screen and (min-width: 992px) {
        .image-column,
    .text-column {
      flex: 1;
    }

    .image-column img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    .text-column h2 {
      font-size: 56px;
      margin-bottom: 15px;
    }

    .text-column {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
    }

    .slick-prev:before, .slick-next:before {
        color: #000000 !important;
    }

    }
    

    /* Responsive styles */
    @media only screen and (max-width: 991px) {
        
      .text-column {
        order: 1;
        width: 100%;
      }

      .image-column {
        order: 2;
        width: 100%;
      }

      .text-column h2{
        font-size: 46px !important;
      }

        .elementor-8889 .elementor-element.elementor-element-3e5c060d {
            padding: 75px 15px 50px 15px !important;
        }
        
    }

    @media only screen and (max-width: 991px) {
        .we-offer-last-item{
            padding: 80px 25px 60px 15px !important;
        }

        
        .ct-logo-mobile img
        {
            max-width: 225px !important;
            max-height: auto;
        }

        .ct-header-navigation .ct-main-navigation {
            overflow: hidden;
            width: 260px;
            padding: 58px 0 45px;
            background-color: #ffffff !important;
            position: fixed;
            z-index: 1001;
            top: 0;
            height: 100%;
            left: 0;
            right: 0;
        }

        .ct-main-menu li a {
            display: block;
            padding: 0;
            line-height: 50px;
            color: #000000 !important;
            font-size: 15px;
            font-weight: 700;
            border-bottom: 1px solid #bababa !important;
        }
    }

    html{
        scrollbar-width: none !important;
    }









    @media only screen and (max-width:991.98px) {
     .padding {
         padding: 1.5rem
     }
 }

 @media only screen and (max-width:767.98px) {
     .padding {
         padding: 1rem
     }
 }

 .padding {
     padding: 5rem
 }

 .card {
    position: relative;
    display: flex;
    width: 600px;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #d2d2dc;
    border-radius: 11px;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(249, 249, 250);
    -moz-box-shadow: 0px 0px 5px 0px rgba(212,182,212,1);
    box-shadow: 0px 0px 5px 0px rgb(161, 163, 164);
}

 .card .card-body {
        padding: 1rem 1rem;
 }

 .card-body {
     flex: 1 1 auto;
     padding: 1.25rem
 }

.items {
    width: 100%;
    margin: 0px auto;
    margin-top: 30px
}

.slick-slide {
    margin: 10px
}


.media iframe,
.media-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    border-radius: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: rgba(120, 120, 120, .1);
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.media-content:before {
    content: '';
    position: absolute;
    height: 10%;
    width: 90%;
    left: 5%;
    bottom: 0;
    background: inherit;
    background-position-y: 100%;
    filter: blur(10px)
}

.circle .media-content:before {
    width: 40%;
    left: 30%
}


.profile-image{
    width: 100%;
    max-height: 225px !important;
    min-height: 225px !important;
    border-top-left-radius: 11px !important;
    border-top-right-radius: 11px;
}

.card-title{
    font-size: 19px;
    font-weight: 200;
}

.testimonial-section{
    padding-top: 90px;
}

.slick-slide img {
    display: block;
    object-fit: cover !important;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 430px !important;
    min-height: 1px;
}

.card-text{
    color: #000;
}


video{
    margin: 0px !important;
    width: 100% !important;
    height: 100% !important;
}