.zzBoxes, .zzBoxes * {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
}
.zzBoxes_overlay {
    background: none no-repeat center center #111111;
    position: fixed;
	z-index: 99999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.8;
}
.zzBoxes_inner {
    background-color: #ffffff;
    color: #131313;
    font-size: 15px;
    line-height: 21px;
    position: fixed;
	z-index: 999999;
    text-align: justify;
    width: 95%;
    max-width: 580px;
    min-width: 300px;
    top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -100px;
    -webkit-transition: margin .3s;
    transition: margin .3s;
}
.zzBoxes.alert .zzBoxes_title {
    color: #ffaa05;
}
.zzBoxes.confirm .zzBoxes_title {
    color: #ffaa05;
}
.zzBoxes.prompt .zzBoxes_inner {
	max-width: 400px !important;
}
.zzBoxes.prompt .zzBoxes_title {
    color: #ffaa05;
}
.zzBoxes_title {
    font-size: 1.4em;
    line-height: 1.5em;
}
.zzBoxes_content {
    padding: 20px 15px;
    margin: 0;
}
.zzBoxes_mess {
    overflow: auto;
    white-space: pre-line;
}
.zzBoxes_content img {
    max-width: 100%;
}
.zzBoxes_input {
    padding: 7px;
    margin: 10px 0 0;
    width: 100%;
    border: 1px solid #dddddd;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.zzBoxes_input:focus {
    border-color: #ffaa05;
    box-shadow: 0 0 3px 1px #ffaa05;
    outline: 0 none;
}
.zzBoxes_button {
    background-color: #f4f4f4;
    text-align: right;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.zzBoxes_button > div {
    background-color: #39b54a;
    border-radius: 30px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    margin: 7px 0 7px 10px;
    padding: 7px 12px 5px;
    text-align: center;
	text-transform: uppercase;
    -webkit-transition: background .3s;
    transition: background .3s;
}
.zzBoxes_button > div:first-child {
    margin-left: 0;
}
div.zzBoxes_cancel {
    background-color: #eb0900;
}
.zzBoxes_close {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJZJREFUeNpi/P//PwMpgAlKywHxMSD2wKImCogPA7EEmAeyAYhP/oeAb0DsARUD4XAg/gOV2wV2DVTCA6oYWVMIkuLPQGyDrAGbJgzF6BrQNWEoBmEmNA/yADEbEp8ZKoYAODwIMvknlP0TOSBgiqOwuNkDTZM3soZjONzsjaRpC7IGCSDei+5BJE0gxUIgPiOpSQMgwAB/QVTYXhJ/ggAAAABJRU5ErkJggg==) no-repeat center center #eb0900;
    position: absolute;
    width: 30px;
    height: 20px;
    right: 2px;
    top: 2px;
    text-indent: -9999px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.zzBoxes_inner:hover .zzBoxes_close {
    opacity: 1;
}
.zzBoxes_button > div:hover, .zzBoxes_close:hover {
    background-color: #2f2f2f;
    cursor: pointer;
}

.slider-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.owl-theme .owl-dots .owl-dot {
  padding: 2px !important;
  margin-right: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 14px !important;
  height: 14px !important;
  border: none !important;
  border-radius: 40px !important;
  margin: 0 !important;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #fd0000 !important;
}
.owl-theme .owl-dots {
  bottom: 40px !important;
}
.owl-dot.active {
  border: #fd0000 solid 1px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
  }
  .owl-theme .owl-dots {
    bottom: 10px !important;
  }
}
/* for all element */
.ani-11 {
    opacity: 0;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition:
        opacity 1s ease-out,
        -webkit-filter 1s ease-out;
    transition:
        opacity 1s ease-out,
        filter 1s ease-out;
}

.ani-11.ani-active {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}


.ani-22 {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition:
        -webkit-transform 1s ease-out,
        opacity 1s ease-out,
        -webkit-filter 1s ease-out;
    transition:
        transform 1s ease-out,
        opacity 1s ease-out,
        filter 1s ease-out;
}

.ani-22.ani-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.ani-sl7 {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    -webkit-transition: opacity 0.8s ease-in,
        -webkit-transform 0.8s ease-in;
    transition: opacity 0.8s ease-in,
        transform 0.8s ease-in;
}

.ani-sl7.ani-active {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}



.ani-tx23 .char {
    display: inline-block;
    transform: translate(0px, 30px) rotate(40deg);
    /* start offset */
    opacity: 0;
    transition: transform 0.6s calc(var(--delay-time) * 0.05) cubic-bezier(0, 0.55, 0, 1.38), opacity 0.3s calc(var(--delay-time) * 0.05) ease-out;
}

.ani-tx23.ani-active .char {
    transform: translate(0, 0) rotate(0deg);
    /* final position */
    opacity: 1;
}

.ani-tx23.ani-hidden .char {
    transition: transform 10s cubic-bezier(0, 0.55, 0, 1.38), opacity 0.3s ease-out;
}


/* for singe element */
.ani-43m .ani-43mt {
    visibility: visible;
    clip-path: circle(8% at 50% 70%);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(18px) brightness(2) saturate(1.6) contrast(1.2) hue-rotate(200deg);
    transform-origin: center;
    transition:
        opacity 0.8s ease,
        filter 0.8s ease,
        transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        clip-path 0.8s ease-in-out;
}

.ani-43m .ani-43mb {
    opacity: 0;
    transition: opacity 0.5s 0.8s ease
}

.ani-43m.ani-active .ani-43mt {
    clip-path: circle(100% at 50% 70%);
    opacity: 1;
    transform: translateY(0px) scale(1);
    filter: blur(0) brightness(1) saturate(1) contrast(1) hue-rotate(0deg);
    animation: shakePulse 1.4s ease forwards;
}

@keyframes shakePulse {
    0% {
        transform: translateY(0px) rotate(0deg) skew(0deg, 0deg) scale(1);
    }

    15% {
        transform: translateY(-2px) rotate(-2deg) skew(-2deg, 1deg) scale(1.02);
    }

    30% {
        transform: translateY(2px) rotate(2deg) skew(2deg, -1deg) scale(0.98);
    }

    45% {
        transform: translateY(-1px) rotate(-1deg) skew(-1deg, 2deg) scale(1.01);
    }

    60% {
        transform: translateY(1px) rotate(1deg) skew(1deg, -2deg) scale(0.99);
    }

    75% {
        transform: translateY(0px) rotate(0deg) skew(0deg, 0deg) scale(1.01);
    }

    100% {
        transform: translateY(0px) rotate(0deg) skew(0deg, 0deg) scale(1);
    }
}

.ani-43m.ani-active .ani-43mb {
    opacity: 1;
}




.ani-tx32 {
    perspective: 1000px;
}

.ani-tx32 .ani-tx32c {
    transform-style: preserve-3d;
    opacity: 0;
    filter: blur(20px) brightness(0.8) saturate(2) contrast(2) hue-rotate(10deg);
    -webkit-filter: blur(20px) brightness(0.8) saturate(2) contrast(2) hue-rotate(10deg);
    /* safari/webkit */
    clip-path: polygon(0% 0%, 0 0, 10% 50%, 0 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 0 0, 10% 50%, 0 100%, 0% 100%);
    transform: translateX(0px) rotateX(56deg) rotate(2.5deg);

    /* transitions split per property */
    -webkit-transition:
        -webkit-filter 1.2s calc(var(--count) * 0.3s) ease-out,
        -webkit-clip-path 0.4s calc(var(--count) * 0.3s) ease-out,
        -webkit-transform 1.2s calc(var(--count) * 0.3s) ease-out,
        opacity 0.4s calc(var(--count) * 0.3s) ease-out;
    transition:
        filter 1.2s calc(var(--count) * 0.3s) ease-out,
        clip-path 0.4s calc(var(--count) * 0.3s) ease-out,
        transform 1.2s calc(var(--count) * 0.3s) ease-out,
        opacity 0.4s calc(var(--count) * 0.3s) ease-out;
}

.ani-tx32.ani-active .ani-tx32c {
    opacity: 1;
    filter: blur(0) brightness(1) saturate(1) contrast(1) hue-rotate(0);
    -webkit-filter: blur(0) brightness(1) saturate(1) contrast(1) hue-rotate(0);
    clip-path: polygon(0% 0%, 100% 0, 110% 50%, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 0, 110% 50%, 100% 100%, 0 100%);
    transform: translateX(0px) rotateX(0deg) rotate(0deg);
}

.ani-tx32.ani-hidden .ani-tx32c {
    /* transitions split per property */
    -webkit-transition:
        -webkit-filter 0.75s ease-out,
        -webkit-clip-path 0.3s ease-out,
        -webkit-transform 0.3s ease-out,
        opacity 0.3s ease-out;
    transition:
        filter 0.75s ease-out,
        clip-path 0.3s ease-out,
        transform 0.3s ease-out,
        opacity 0.3s ease-out;
}



/* .ani-y5 {
    perspective: 1200px; 
    -webkit-perspective: 1200px;
}

.ani-y5 .ani-y5i {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                opacity 0.8s ease;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                        opacity 0.8s ease;
    opacity: 0; 
}

.ani-y5 .ani-y5i:nth-child(2n + 1) {
    transform: translate3d(-97px, -30px, 30px) rotateY(15deg);
    -webkit-transform: translate3d(-97px, -30px, 30px) rotateY(15deg);
}

.ani-y5 .ani-y5i:nth-child(2n + 2) {
    transform: translate3d(97px, -30px, -30px) rotateY(-15deg);
    -webkit-transform: translate3d(97px, -30px, -30px) rotateY(-15deg);
}

.ani-y5 .ani-y5i.ani-active {
    transform: translate3d(0, 0, 0) rotateY(0deg);
    -webkit-transform: translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
}

.ani-y5 .ani-y5i.ani-hidden {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                opacity 0.4s ease;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                        opacity 0.4s ease;
} */



.ani-y5 .ani-y5i {}

.ani-y5 .ani-y5i .ani-y5no {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.ani-y5 .ani-y5i .ani-y5n {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}

.ani-y5 .ani-y5i .ani-y5br {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-clip-path: polygon(0 0, 20% 50%, 0 100%, 0 100%, 0 0);
    clip-path: polygon(0 0, 20% 50%, 0 100%, 0 100%, 0 0);
}

.ani-y5 .ani-y5i .ani-y5cm {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
}

.ani-y5 .ani-y5i:nth-child(2n + 1) {
    --delay-time: 0s;
}

.ani-y5 .ani-y5i:nth-child(2n + 2) {
    --delay-time: 0s;
}

/* TRANSITIONS */
.ani-y5 .ani-y5i .ani-y5no {
    -webkit-transition: -webkit-transform 1.5s var(--delay-time) ease-out, opacity 0.5s var(--delay-time) ease-out;
    transition: transform 1.5s var(--delay-time) ease-out, opacity 0.5s var(--delay-time) ease-out;
}

.ani-y5 .ani-y5i .ani-y5n {
    -webkit-transition: -webkit-transform 0.7s calc(var(--delay-time) + 0.3s) ease-out, opacity 0.7s calc(var(--delay-time) + 0.3s) ease-out;
    transition: transform 0.7s calc(var(--delay-time) + 0.3s) ease-out, opacity 0.7s calc(var(--delay-time) + 0.3s) ease-out;
}

.ani-y5 .ani-y5i .ani-y5br {
    -webkit-transition:
        -webkit-transform 1s calc(var(--delay-time) + 0.5s) ease-out,
        opacity 0.4s calc(var(--delay-time) + 0.5s) ease-out,
        -webkit-clip-path 1s calc(var(--delay-time) + 0.5s) ease-out;
    transition:
        transform 1s calc(var(--delay-time) + 0.5s) ease-out,
        opacity 0.4s calc(var(--delay-time) + 0.5s) ease-out,
        clip-path 1s calc(var(--delay-time) + 0.5s) ease-out;
}

.ani-y5 .ani-y5i .ani-y5cm {
    -webkit-transition:
        -webkit-transform 1s calc(var(--delay-time) + 0.8s) ease-out,
        -webkit-filter 0.4s calc(var(--delay-time) + 0.8s) ease-out,
        -webkit-clip-path 0.5s calc(var(--delay-time) + 0.8s) ease-out;
    transition:
        transform 1s calc(var(--delay-time) + 0.8s) ease-out,
        filter 0.4s calc(var(--delay-time) + 0.8s) ease-out,
        clip-path 0.5s calc(var(--delay-time) + 0.8s) ease-out;
}

/* ACTIVE STATE */
.ani-y5 .ani-y5i.ani-active .ani-y5no {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.ani-y5 .ani-y5i.ani-active .ani-y5n {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.ani-y5 .ani-y5i.ani-active .ani-y5br {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-clip-path: polygon(100% 0, 120% 50%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 120% 50%, 100% 100%, 0 100%, 0 0);
}

.ani-y5 .ani-y5i.ani-active .ani-y5cm {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}




.ani-g5i {
    perspective: 1000px;
    -webkit-perspective: 1000px;
    /* WebKit */
}

.ani-g5i .ani-g5iw {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    /* WebKit */
    opacity: 0;
    transform: translate3d(60px, -30px, -65px) rotateY(-20deg);
    -webkit-transform: translate3d(60px, -30px, -65px) rotateY(-20deg);
    /* WebKit */
    transition: transform 0.8s calc(var(--count) * 0.3s) cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.8s calc(var(--count) * 0.3s) ease;
    -webkit-transition: -webkit-transform 0.8s calc(var(--count) * 0.3s) cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.8s calc(var(--count) * 0.3s) ease;
}

.ani-g5i.ani-active .ani-g5iw {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    /* WebKit */
}

.ani-g5i.ani-hidden .ani-g5iw {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.4s ease;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.4s ease;
}



.ani-plu0 {
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.ani-plu0 .ani-plu0i {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin: top;
    -webkit-transform-origin: top;
    transform: rotateX(-30deg);
    -webkit-transform: rotateX(-30deg);
    filter: brightness(0.3);
    -webkit-filter: brightness(0.3);
    opacity: 0;
}

.ani-plu0 .ani-plu0i:nth-child(3n + 1) {
    transition:
        transform 1s 0s cubic-bezier(0.25, 1, 0.5, 1),
        filter 1.7s 0s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1s 0s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition:
        -webkit-transform 1s 0s cubic-bezier(0.25, 1, 0.5, 1),
        -webkit-filter 1.7s 0s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1s 0s cubic-bezier(0.25, 1, 0.5, 1);
}

.ani-plu0 .ani-plu0i:nth-child(3n + 2) {
    transition:
        transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        filter 1.7s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition:
        -webkit-transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        -webkit-filter 1.7s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.ani-plu0 .ani-plu0i:nth-child(3n + 3) {
    transition:
        transform 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        filter 1.7s 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition:
        -webkit-transform 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        -webkit-filter 1.7s 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ani-plu0 .ani-plu0i:nth-child(1n + 1).ani-active {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    filter: brightness(1);
    -webkit-filter: brightness(1);
    opacity: 1;
}

.ani-plu0 .ani-plu0i:nth-child(1n + 1).ani-hidden {
    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition:
        -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        -webkit-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


@media screen and (max-width: 1023px) {
    .ani-plu0 .ani-plu0i:nth-child(2n + 1) {
        transition:
            transform 1s 0s cubic-bezier(0.25, 1, 0.5, 1),
            filter 1.7s 0s cubic-bezier(0.25, 1, 0.5, 1),
            opacity 1s 0s cubic-bezier(0.25, 1, 0.5, 1);
        -webkit-transition:
            -webkit-transform 1s 0s cubic-bezier(0.25, 1, 0.5, 1),
            -webkit-filter 1.7s 0s cubic-bezier(0.25, 1, 0.5, 1),
            opacity 1s 0s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ani-plu0 .ani-plu0i:nth-child(2n + 2) {
        transition:
            transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
            filter 1.7s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
            opacity 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
        -webkit-transition:
            -webkit-transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
            -webkit-filter 1.7s 0.2s cubic-bezier(0.25, 1, 0.5, 1),
            opacity 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    }
}

@media screen and (max-width: 639px) {
    .ani-plu0 .ani-plu0i:nth-child(1n + 1) {
        transition:
            transform 1s 0s cubic-bezier(0.25, 1, 0.5, 1),
            filter 1.7s 0s cubic-bezier(0.25, 1, 0.5, 1),
            opacity 1s 0s cubic-bezier(0.25, 1, 0.5, 1);
        -webkit-transition:
            -webkit-transform 1s 0s cubic-bezier(0.25, 1, 0.5, 1),
            -webkit-filter 1.7s 0s cubic-bezier(0.25, 1, 0.5, 1),
            opacity 1s 0s cubic-bezier(0.25, 1, 0.5, 1);
    }
}


.shining-light {
    position: relative;
    overflow: hidden;
}

.shining-light.animate::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 70%;
    height: 100%;
    background: linear-gradient(-10deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(-10deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);

    animation: glassShine 1.2s ease-in forwards;
    -webkit-animation: glassShine 1.2s ease-in forwards;

    will-change: left, opacity, filter;
    pointer-events: none;

    z-index: 3;
}

@keyframes glassShine {
    0% {
        left: -75%;
        opacity: 0;
        filter: blur(6px) brightness(1.2) contrast(1.1);
    }

    20% {
        opacity: 1;
        filter: blur(4px) brightness(1.6) contrast(1.3);
    }

    50% {
        opacity: 1;
        filter: blur(2px) brightness(2) contrast(1.5) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    }

    80% {
        opacity: 1;
        filter: blur(4px) brightness(1.5) contrast(1.2);
    }

    100% {
        left: 130%;
        opacity: 0;
        filter: blur(6px) brightness(1.2) contrast(1);
    }
}

@-webkit-keyframes glassShine {
    0% {
        left: -75%;
        opacity: 0;
        -webkit-filter: blur(6px) brightness(1.2) contrast(1.1);
    }

    20% {
        opacity: 1;
        -webkit-filter: blur(4px) brightness(1.6) contrast(1.3);
    }

    50% {
        opacity: 1;
        -webkit-filter: blur(2px) brightness(2) contrast(1.5) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    }

    80% {
        opacity: 1;
        -webkit-filter: blur(4px) brightness(1.5) contrast(1.2);
    }

    100% {
        left: 130%;
        opacity: 0;
        -webkit-filter: blur(6px) brightness(1.2) contrast(1);
    }
}body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 20px 15px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{border-top:1px solid hsla(0,0%,100%,.4);max-height:50vh;overflow:auto;pointer-events:all;padding-top:25px}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}.convenient-contact{
    position: fixed;
    bottom: 130px;
    right: 35px;
    z-index: 5000;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.convenient-contact .box{
    position: relative;
    width: 32px;
    height: 32px;
}
.convenient-contact .box .btn {
    display: block;
  position: relative;
  z-index: 10;
  -webkit-animation: bell-swing 1s ease-in-out infinite;
  animation: bell-swing 1s ease-in-out infinite;

  transition: transform 0.3s 
ease-in-out, filter 0.3s 
ease-in-out;
}

/* Keyframes */
@-webkit-keyframes bell-swing {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  15% { -webkit-transform: rotate(15deg); transform: rotate(15deg); }
  30% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
  45% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
  60% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
  75% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
  100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@keyframes bell-swing {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}
.convenient-contact .box .wave {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.convenient-contact .box .wave div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100px;
    background-color: var(--color);
    opacity: 0;
    transform: scale(1);
}

/* Animations with -webkit- prefix */
.convenient-contact .box .wave div:first-child {
    -webkit-animation: wave 2s 0s linear infinite;
            animation: wave 2s 0s linear infinite;
}

.convenient-contact .box .wave div:nth-child(2) {
    -webkit-animation: wave 2s 0.666s linear infinite;
            animation: wave 2s 0.666s linear infinite;
}

.convenient-contact .box .wave div:nth-child(3) {
    -webkit-animation: wave 2s 1.333s linear infinite;
            animation: wave 2s 1.333s linear infinite;
}

/* Scale keyframes */
@-webkit-keyframes wave {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes wave {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}


@media screen and (max-width: 425px) {
    .convenient-contact{
        bottom: 10px;
        right: unset;
        left: 10px;

        transform: scale(0.85);
    }
}mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu,
.mm-menu>.mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.mm-menu>.mm-panel .fa-fw {
  width: 1.68571429em;
}

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}

.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-panel.mm-highest {
  z-index: 1;
}

.mm-menu>.mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.mm-menu>.mm-panel.mm-hasnavbar {
  padding-top: 40px;
}

.mm-menu>.mm-panel:before,
.mm-menu>.mm-panel:after {
  content: "";
  display: block;
  height: 20px;
}

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}

.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}

.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after {
  border-color: transparent;
}

.mm-vertical li.mm-opened>.mm-panel,
li.mm-vertical.mm-opened>.mm-panel {
  display: block;
}

.mm-vertical .mm-listview>li>.mm-next,
.mm-listview>li.mm-vertical>.mm-next {
  height: 40px;
  bottom: auto;
}

.mm-vertical .mm-listview>li>.mm-next:after,
.mm-listview>li.mm-vertical>.mm-next:after {
  top: 16px;
  bottom: auto;
}

.mm-vertical .mm-listview>li.mm-opened>.mm-next:after,
.mm-listview>li.mm-vertical.mm-opened>.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-navbar {
  border-bottom: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mm-navbar>* {
  display: block;
  padding: 10px 0;
}

.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}

.mm-navbar .mm-title {
  background-image: url("../images/logo.png");
  background-size: contain;
  background-position: center -5px;
  color: transparent !important;
  background-repeat: no-repeat;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}

.mm-navbar .mm-btn:last-child {
  padding-right: 20px;
  right: 0;
}

.mm-panel .mm-navbar {
  display: none;
}

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}

.mm-listview,
.mm-listview>li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listview {
  font: inherit;
  font-size: 14px;
}

.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}

.mm-listview>li {
  position: relative;
}

.mm-listview>li>a,
.mm-listview>li>span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 15px 12px 12px 25px;
  margin: 0;
}

#mm-1 .mm-listview>li>a {
  text-transform: uppercase;
}

.mm-listview>li>a .fa,
.mm-listview>li>span .fa {
  color: #bfbfbf;
  margin-left: -12px;
}

.mm-listview>li>a.mm-arrow,
.mm-listview>li>span.mm-arrow {
  padding-right: 50px;
}

#mm-0 .mm-listview>li>a,
#mm-0 .mm-listview>li>span {
  text-transform: uppercase;
}

.mm-listview>li:not(.mm-divider):after {
  content: "";
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.mm-listview>li:not(.mm-divider):after {
  left: 10px;
}

.mm-listview .mm-next {
  background-color: rgba(3, 2, 1, 0);
  width: 35px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  z-index: 2;
}

.mm-listview .mm-next:before {
  content: "";
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.mm-listview .mm-next+a,
.mm-listview .mm-next+span {
  margin-right: 38px;
}

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}

.mm-listview .mm-next.mm-fullsubopen+a,
.mm-listview .mm-next.mm-fullsubopen+span {
  padding-right: 50px;
  margin-right: 0;
}

.mm-menu>.mm-panel>.mm-listview {
  margin-left: -20px;
  margin-right: -20px;
}

.mm-menu>.mm-panel>.mm-listview.mm-first {
  margin-top: -20px;
}

.mm-menu>.mm-panel>.mm-listview.mm-last {
  padding-bottom: 20px;
}

.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: "";
  border: 1px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}

.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 15px;
}

.mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}

.mm-listview>li.mm-spacer {
  padding-top: 40px;
}

.mm-listview>li.mm-spacer>.mm-next {
  top: 40px;
}

.mm-listview>li.mm-spacer.mm-divider {
  padding-top: 25px;
}

.mm-menu {
  background-color: #ffffff;
  color: #2f3032;
}

.mm-menu .mm-navbar {
  border-color: rgba(0, 0, 0, 0.2);
}

.mm-menu .mm-navbar>*,
.mm-menu .mm-navbar a {
  color: #afafaf;
}

.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: #8e8e8e;
  color: #8e8e8e;
}

.mm-menu .mm-listview>li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-listview>li .mm-prev:before,
.mm-menu .mm-listview>li .mm-next:after,
.mm-menu .mm-listview>li .mm-arrow:after {
  border-color: #8e8e8e;
}

.mm-menu .mm-listview>li .mm-prev:after,
.mm-menu .mm-listview>li .mm-next:before {
  border-color: rgba(72, 72, 72, 0.05);
}

.mm-menu .mm-listview>li>a:hover,
.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu .mm-listview>li.mm-selected>span {
  background-color: #efefef;
}

.mm-menu.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}

.mm-page {
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-opened {
  overflow: hidden;
  position: relative;
}

html.mm-opened body {
  overflow: hidden;
}

html.mm-background .mm-page {
  background: inherit;
}

#mm-blocker {
  background-color: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}

html.mm-opened #mm-blocker {
  opacity: 0;
}

html.mm-opened #mm-blocker {
  background-color: #000000;
}

html.mm-opening #mm-blocker {
  opacity: 0.2;
  transition: opacity 0.4s ease 0.4s;
}

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}

.mm-menu.mm-current {
  display: block;
}

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 280px;
}

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 400px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(280px, 0);
    -moz-transform: translate(280px, 0);
    -ms-transform: translate(280px, 0);
    -o-transform: translate(280px, 0);
    transform: translate(280px, 0);
  }
}

.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}

.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}

.mm-menu.mm-measureheight>.mm-panel {
  bottom: auto !important;
  height: auto !important;
}

em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}

em.mm-counter+a.mm-next {
  padding-left: 40px;
}

em.mm-counter+a.mm-next+a,
em.mm-counter+a.mm-next+span {
  margin-right: 90px;
}

em.mm-counter+a.mm-fullsubopen {
  padding-left: 0;
}

.mm-vertical>.mm-counter {
  top: 12px;
  margin-top: 0;
}

.mm-vertical.mm-spacer>.mm-counter {
  margin-top: 40px;
}

.mm-nosubresults>.mm-counter {
  display: none;
}

.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-divider>span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}

.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}

.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}

.mm-hasdividers .mm-fixeddivider {
  display: block;
}

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}

html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

.mm-menu>.mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-navbar-bottom {
  border-top: 1px solid transparent;
  border-bottom: none;
  top: auto;
  bottom: 0;
}

.mm-navbar-top~.mm-navbar-top {
  border-bottom: none;
}

.mm-navbar-bottom~.mm-navbar-bottom {
  border-top: none;
}

.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}

.mm-navbar-top-1 {
  top: 0px;
}

.mm-hasnavbar-top-1 .mm-panel {
  top: 40px;
}

.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px;
}

.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px;
}

.mm-navbar-top-2 {
  top: 40px;
}

.mm-hasnavbar-top-2 .mm-panel {
  top: 80px;
}

.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px;
}

.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px;
}

.mm-navbar-top-3 {
  top: 80px;
}

.mm-hasnavbar-top-3 .mm-panel {
  top: 120px;
}

.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px;
}

.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px;
}

.mm-navbar-bottom-1 {
  bottom: 0px;
}

.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px;
}

.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px;
}

.mm-navbar-bottom-2 {
  bottom: 40px;
}

.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px;
}

.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px;
}

.mm-navbar-bottom-3 {
  bottom: 80px;
}

.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px;
}

.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px;
}

.mm-close {
  text-align: right;
}

.mm-close:after {
  content: "x";
  font-size: 22px;
  line-height: 0;
}

.mm-navbar-2>*,
.mm-navbar-3>*,
.mm-navbar-4>*,
.mm-navbar-5>*,
.mm-navbar-6>* {
  display: block;
  float: left;
}

.mm-navbar-2>* {
  width: 50%;
}

.mm-navbar-3>* {
  width: 33.33%;
}

.mm-navbar-4>* {
  width: 25%;
}

.mm-navbar-5>* {
  width: 20%;
}

.mm-navbar-6>* {
  width: 16.66%;
}

.mm-search,
.mm-search input {
  box-sizing: border-box;
}

.mm-search {
  height: 40px;
  padding: 10px 10px 0;
}

.mm-search input {
  border: none;
  border-radius: 28px;
  font: inherit;
  font-size: 13px;
  outline: none;
  display: block;
  width: 100%;
  height: 28px;
  line-height: 28px;
  margin: 0;
  padding: 0 15px;
}

.mm-search input::-ms-clear {
  display: none;
}

.mm-panel>.mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mm-panel.mm-hassearch {
  padding-top: 40px;
}

.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}

.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}

.mm-noresults .mm-noresultsmsg {
  display: block;
}

.mm-noresults .mm-indexer {
  display: none !important;
}

li.mm-nosubresults>a.mm-next {
  display: none;
}

li.mm-nosubresults>a.mm-next+a,
li.mm-nosubresults>a.mm-next+span {
  padding-right: 10px;
}

.mm-menu .mm-search input {
  background-color: #eeeeee;
  color: #8d8d8d;
}

.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}

.mm-indexer~.mm-panel.mm-hasindexer {
  padding-right: 40px;
}

.mm-hasindexer .mm-indexer {
  right: 0;
}

.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}

.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}

label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}

label.mm-toggle:before,
label.mm-check:before {
  content: "";
  display: block;
}

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}

input.mm-toggle:checked~label.mm-toggle:before {
  float: right;
}

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input.mm-check:checked~label.mm-check:before {
  opacity: 1;
}

li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}

li.mm-vertical label.mm-toggle {
  top: 5px;
}

li.mm-vertical label.mm-check {
  top: 5px;
}

label.mm-toggle,
label.mm-check {
  right: 20px;
}

label.mm-toggle+a,
label.mm-toggle+span {
  padding-right: 80px;
}

label.mm-check+a,
label.mm-check+span {
  padding-right: 60px;
}

a.mm-next+label.mm-toggle,
a.mm-next+label.mm-check {
  right: 60px;
}

a.mm-next+label.mm-toggle+a,
a.mm-next+label.mm-toggle+span,
a.mm-next+label.mm-check+a,
a.mm-next+label.mm-check+span {
  margin-right: 50px;
}

a.mm-next+label.mm-toggle+a,
a.mm-next+label.mm-toggle+span {
  padding-right: 70px;
}

a.mm-next+label.mm-check+a,
a.mm-next+label.mm-check+span {
  padding-right: 50px;
}

em.mm-counter+a.mm-next+label.mm-toggle,
em.mm-counter+a.mm-next+label.mm-check {
  right: 100px;
}

em.mm-counter+a.mm-next+label.mm-toggle+a,
em.mm-counter+a.mm-next+label.mm-toggle+span,
em.mm-counter+a.mm-next+label.mm-check+a,
em.mm-counter+a.mm-next+label.mm-check+span {
  margin-right: 90px;
}

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}

.mm-menu input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}

.mm-menu.mm-border-none .mm-listview>li:after,
.mm-listview.mm-border-none>li:after {
  content: none;
}

.mm-menu.mm-border-full .mm-listview>li:after,
.mm-listview.mm-border-full>li:after {
  left: 0 !important;
}

html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}

html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-slide-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-slide-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

html.mm-effect-slide-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  z-index: 99;
}

html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform, left;
  -moz-transition-property: -moz-transform, left;
  -ms-transition-property: -ms-transform, left;
  -o-transition-property: -o-transform, left;
  transition-property: transform, left;
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}

.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}

.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}

.mm-menu.mm-multiline .mm-listview>li>a,
.mm-menu.mm-multiline .mm-listview>li>span,
.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a,
.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span {
  text-overflow: clip;
  white-space: normal;
}

.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}

.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}

.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}

.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu.mm-right {
  left: auto;
  right: 0;
}

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 350px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-280px, 0);
    -moz-transform: translate(-280px, 0);
    -ms-transform: translate(-280px, 0);
    -o-transform: translate(-280px, 0);
    transform: translate(-280px, 0);
  }
}

html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}

.mm-menu.mm-front {
  z-index: 1;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}

.mm-menu.mm-theme-dark {
  background: #333333;
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-navbar {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-navbar>*,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview>li:after {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview>li .mm-prev:before,
.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview>li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview>li .mm-prev:after,
.mm-menu.mm-theme-dark .mm-listview>li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}

.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-white {
  background: white;
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-navbar {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-navbar>*,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview>li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview>li .mm-prev:before,
.mm-menu.mm-theme-white .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview>li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview>li .mm-prev:after,
.mm-menu.mm-theme-white .mm-listview>li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}

.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-black {
  background: black;
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-navbar {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-navbar>*,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview>li:after {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview>li .mm-prev:before,
.mm-menu.mm-theme-black .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview>li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview>li .mm-prev:after,
.mm-menu.mm-theme-black .mm-listview>li .mm-next:before {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
  background: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}

.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}

.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-listview li.tth-mm-search,
.mm-listview li.tth-mm-category {
  display: none;
  height: 0;
}

@media screen and (max-width: 959px) {
  .mm-listview li.tth-mm-search {
    display: block;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .mm-listview li.tth-mm-category {
    display: block;
    height: auto;
  }
}

.mm-navbar-bottom {
  text-align: center;
}

.mm-navbar-bottom a {
  background-color: #bfbfbf;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff !important;
  display: inline-block !important;
  float: none;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0;
  margin: 5px;
}

.mm-navbar-bottom a.facebook:hover,
.mm-navbar-bottom a.facebook:focus,
.mm-navbar-bottom a.facebook:active {
  background-color: #37528d;
}

.mm-navbar-bottom a.instagram:hover,
.mm-navbar-bottom a.instagram:focus,
.mm-navbar-bottom a.instagram:active {
  background-color: #e03663;
}

.mm-navbar-bottom a.twitter:hover,
.mm-navbar-bottom a.twitter:focus,
.mm-navbar-bottom a.twitter:active {
  background-color: #33bce9;
}

.mm-navbar-bottom a.youtube:hover,
.mm-navbar-bottom a.youtube:focus,
.mm-navbar-bottom a.youtube:active {
  background-color: #ee1c1b;
}

.mm-navbar-bottom a.tripadvisor:hover,
.mm-navbar-bottom a.tripadvisor:focus,
.mm-navbar-bottom a.tripadvisor:active {
  background-color: #3ce0a1;
}

.mm-navbar-bottom a.linkedin:hover,
.mm-navbar-bottom a.linkedin:focus,
.mm-navbar-bottom a.linkedin:active {
  background-color: #148bba;
}

#hamburger {
  border: 1px solid transparent;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  position: absolute;
  top: calc(50% - 25px);
  right: 5px;
  z-index: 9;
  margin: 0;
  display: none;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  background-color: #fd0000;
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  position: absolute;
  right: 8px;
}

#hamburger:before {
  top: 12px;
}

#hamburger span {
  top: 22px;
  width: 25px;
}

#hamburger:after {
  top: 32px;
  width: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  -webkit-transition: none 0.5s ease 0.5s;
  transition: none 0.5s ease 0.5s;
  -webkit-transition-property: transform, top, bottom, right, opacity;
  transition-property: transform, top, bottom, right, opacity;
}

html.mm-opening #hamburger:before,
html.mm-opening #hamburger:after {
  top: 22px;
  width: 30px;
}

html.mm-opening #hamburger span {
  right: -50px;
  opacity: 0;
}

html.mm-opening #hamburger:before {
  transform: rotate(45deg);
}

html.mm-opening #hamburger:after {
  transform: rotate(-45deg);
}

.mm-opened #wrapper {
  margin-top: 0;
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  #hamburger {
    display: block;
  }
}.blocker {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: auto;
  z-index: 9991;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(0,0,0,0.75);
  text-align: center;
}
.blocker:before{
  content: " ";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
/* .modal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 3;
  text-align: left;
  width: 95%;
  max-width: 600px;
}
.modal a.close-modal {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 25px;
  font-weight: 200;
}
.modal a.close-modal:hover,
.modal a.close-modal:focus {
  color: #dfdfdf;
}
.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url("data:image/gif;base64,R0lGODlhIAAgAPMAABEREf///0VFRYKCglRUVG5ubsvLy62trTQ0NCkpKU5OTuLi4vr6+gAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQACgABACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQACgACACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkEAAoAAwAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkEAAoABAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAAKAAUALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAAKAAYALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQACgAHACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAAKAAgALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAAKAAkALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQACgAKACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkEAAoACwAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==") #111 no-repeat center center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
.modal-dialog {
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
}
.modal-dialog .modal-header {
  color: #ffffff;
  padding: 20px 30px;
}
.modal-dialog .modal-title {
  font-weight: 400;
}
.modal-dialog .modal-body {
  background-color: var(--white);
  padding: 40px 40px 50px;
  position: relative;
}
.modal-body .modal-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  padding: 0;
  margin: 0;
}
.modal-dialog .modal-footer {
  padding: 10px;
  border-top: 1px solid #e5e5e5;
}
.modal-dialog .result {
  display: none;
}
.modal-dialog .result .success,
.modal-dialog .result .failed {
  border: 1px solid;
  padding: 10px 15px;
  margin-top: 10px;
  text-align: justify;
}
.modal-dialog .result .success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.modal-dialog .result .failed {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
} *//**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1;margin:0 auto;padding:0;list-style:none}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none !important}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(../images/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{display:none}.owl-theme .owl-nav [class*=owl-]{position: absolute;top: 0;outline: 0;width: 65px;height: 100%;text-indent: -9999px;z-index: 5;}.owl-theme .owl-nav .owl-prev{background:url(../images/arl.png) center no-repeat;left:0}.owl-theme .owl-nav .owl-next{background:url(../images/arr.png) center no-repeat;right:0}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots{position: absolute; right: 0; bottom: 10px; left: 0;}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:12px;height:12px;margin:5px;background:#e1e1e1;border:1px solid #dfdfdf;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot:hover span{background:#adb5c1}.owl-theme .owl-dots .owl-dot.active span{background:#adb5c1}.owl-carousel.owl-theme:hover .owl-nav{display:block}.rating{display:flex;width:100%;justify-content:center;overflow:hidden;flex-direction:row-reverse;height:150px;position:relative}.rating-0{filter:grayscale(100%)}.rating>input{display:none}.rating>label{cursor:pointer;width:40px;height:40px;margin-top:auto;background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-size:76%;transition:.3s}.rating>input:checked~label,.rating>input:checked~label~label{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e")}.rating>input:not(:checked)~label:hover,.rating>input:not(:checked)~label:hover~label{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e")}.emoji-wrapper{width:100%;text-align:center;height:100px;overflow:hidden;position:absolute;top:0;left:0}.emoji-wrapper:before,.emoji-wrapper:after{content:"";height:15px;width:100%;position:absolute;left:0;z-index:1}.emoji-wrapper:before{top:0;background:linear-gradient(to bottom,rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%)}.emoji-wrapper:after{bottom:0;background:linear-gradient(to top,rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%)}.emoji{display:flex;flex-direction:column;align-items:center;transition:.3s}.emoji>svg{margin:15px 0;width:70px;height:70px;flex-shrink:0}#rating-1:checked~.emoji-wrapper>.emoji{transform:translateY(-100px)}#rating-2:checked~.emoji-wrapper>.emoji{transform:translateY(-200px)}#rating-3:checked~.emoji-wrapper>.emoji{transform:translateY(-300px)}#rating-4:checked~.emoji-wrapper>.emoji{transform:translateY(-400px)}#rating-5:checked~.emoji-wrapper>.emoji{transform:translateY(-500px)}.feedback{max-width:360px;background-color:#fff;width:100%;padding:30px;border-radius:8px;display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;box-shadow:0 4px 30px rgba(0,0,0,.05)}*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}

:root {
  --color-0: #FFFFFF;
  --color-1: #0000fd;
  --color-2: #fc0000;
  --color-3: #fbee1e;
  --color-4: #616161;
  --color-5: #757575;
  --color-6: ;
  --color-7: #08083f;
  --color-8: #9E9E9E;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  border: none;
}

select {
  background: url("../images/select.png") right 10px center no-repeat;
  outline: none;
  overflow: hidden;
  text-indent: 0.01px;
  text-overflow: "";
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input,
textarea,
select {
  outline: none;
}

* ::-webkit-input-placeholder {
  color: #a4aeb8;
}

* :-moz-placeholder {
  color: #a4aeb8;
  opacity: 1;
}

* ::-moz-placeholder {
  color: #a4aeb8;
  opacity: 1;
}

* :-ms-input-placeholder {
  color: #a4aeb8;
}

ul,
ol {
  margin: 7px;
  padding-left: 15px;
  width: auto;
}

img {
  background-color: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a {
  color: #6eb846;
  text-decoration: none;
}

/* a:hover,
a:focus,
a:active {
  color: #81e44b;
  text-decoration: none;
} */
a[href^="tel"],
a[href^="mail"] {
  color: inherit;
  text-decoration: none;
}

a img {
  text-decoration: none;
}

a:hover img,
a:focus img,
a:active img {
  text-decoration: none;
}

sup {
  font-size: 10px;
  line-height: 0;
}

strong,
b {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

h1 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: clamp(34px, 4.2vw, 40px);
}

h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: clamp(30px, 3.7vw, 34px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
  line-height: clamp(32px, 3.8vw, 42px);
}

h4 {
  font-size: clamp(20px, 2.5vw, 23px);
  line-height: clamp(28px, 3vw, 36px);
}

h5 {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: clamp(26px, 2.8vw, 30px);
}

h6 {
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(24px, 2.6vw, 27px);
}

.main-title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: clamp(34px, 4.2vw, 40px);
}

.custom-m0-all * {
  margin: 0;
}

#wrapper {
  background-color: #ffffff;
  width: 100%;
  margin-top: 89.96px;
  position: relative;
  overflow: hidden;
}

.home-page {
  margin-top: 0 !important;
}

.box-wp {
  max-width: 1240px;
}

.container {
  max-width: 100% !important;
}

.box-wp:before,
.box-wp:after,
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.box-wp:after,
.clearfix:after {
  clear: both;
}

.title>a {
  color: inherit;
}

.img {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.img * {
  line-height: 0;
  display: block;
}

.img:hover img,
.img:focus img {
  transform: scale(1.1);
  transition: transform 1s ease;
}

.btn-outline {
  border: 2px solid #00355e;
  outline: 2px solid #00355e;
  transition: outline-offset 200ms ease;
}

.btn-outline:hover,
.btn-outline:focus {
  outline-color: #fff;
  outline-offset: -7px;
}

.header {

  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 12px 0px rgba(31, 31, 31, 0.12);
  padding: 8px 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.home-page .header {
  box-shadow: unset;
  backdrop-filter: blur(0px);
  transition: all 0.3s ease-in-out;
}

.home-page .header.fixed {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 12px 0px rgba(31, 31, 31, 0.12);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.header .header-left {
  float: left;
  width: 15%;
  margin-left: 0;
}

.header .header-right {
  float: right;
  width: 75%;
  display: flex;
  align-items: center;
  margin-right: 0;
}

.header .header-langues {
  display: flex;
  justify-content: flex-end;
  width: 30px;
  position: relative;
}

.header .header-left img {
  width: 100%;
  max-width: 165px;
}

.header .langues-wrapper {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  opacity: 0;
  pointer-events: none;

  background-color: rgba(255, 255, 255, 1);

  width: 150px;
  padding: 2px;

  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.426);
}

.header .langues-wrapper.show {
  opacity: 1;
  pointer-events: auto;
}

.header .langues-wrapper a * {
  margin: 0;
}

.header .langues-wrapper a {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 6px;
}

.header .langues-wrapper a:hover {
  background-color: var(--color-7);
  color: white;
}

.header .menu-main {
  width: 100%;
}

.navbar {
  width: 100%;
  position: relative;
}

.navigation,
.navigation ul,
.navigation ul li,
.navigation ul li a {
  list-style: none;
  line-height: 0;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.navigation>ul {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

.navigation:after,
.navigation>ul:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.navigation {
  width: 100%;
}

.navigation>ul>li {
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
  padding: 22px 0 15px;
  position: relative;
  width: 1%;
}

.navigation ul>li>a {
  border-radius: 50px;
  color: var(--color-1);
  display: block;
  font-weight: 600;
  text-align: center;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  letter-spacing: -0.25px;
}

.navigation ul>li>a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-2);
  transition: width 0.3s;
}

.navigation ul>li>a:hover::after,
.navigation ul>li.active>a::after {
  width: 80%;
}

.navigation ul>li>a:hover,
.navigation ul>li>a:focus,
.navigation ul>li.active>a {
  color: var(--color-2);
}

.navigation>ul>li .nav-sub {
  background-color: #ffffff;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
  position: fixed;
  top: -99999px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 3;
  padding: 20px 10px;
  box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
  -webkit-box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
  -moz-box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
  -o-box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
}

.navigation>ul>li:hover .nav-sub,
.navigation>ul>li:focus .nav-sub {
  top: 72px;
  opacity: 1;
}

.navigation>ul>li .nav-sub>ul {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: end;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

.navigation>ul>li .nav-sub>ul>li {
  margin-right: 0;
}

.navigation .nav-sub ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.navigation .nav-sub ul>li>a {
  text-align: left;
}

.navigation .nav-sub ul ul {
  margin-top: 10px;
}

.navigation .nav-sub ul ul>li {
  margin: 5px 0;
}

.navigation .nav-sub ul ul>li>a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: none;
}

.navigation .nav-sub ul ul>li.active>a {
  color: #27719e;
  text-decoration: underline;
}

.breadcrumb {
  background-color: #dfdfdf;
  background-image: url("../images/bg-bdc.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 80px 10px 100px;
  margin: 0 0 50px;
  overflow-y: auto;
  position: relative;
}

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

.breadcrumb .title {
  color: #ffffff;
  display: block;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 10px;
}

.breadcrumb a.br-c {
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
}

.breadcrumb .bd-view>a {
  color: #ffffff;
}

.breadcrumb .bd-view>a:hover,
.breadcrumb .bd-view>a:focus {}

.breadcrumb .bd-view>a::after {
  content: "\f105";
  font-style: normal;
  font-weight: normal;
  font-family: "FontAwesome";
  margin: 0 15px;
}

.breadcrumb .bd-view>a:last-child::after {
  display: none;
}

.breadcrumb.b-about {
  padding-bottom: 300px;
}

.breadcrumb.bdc-sm {
  background: none;
  text-align: left;
  padding: 52px 20px 50px;
  margin-bottom: 0;
}

.breadcrumb.bdc-sm .bd-view>a {
  color: #757575;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.breadcrumb.bdc-sm .bd-view>a:last-child {
  color: var(--color-1);
}

.slider {
  position: relative;
}

.slider>#_slider {
  margin-right: 0;
}





/* ================================== */
.custom-btn {
  background-color: var(--color-1);
  border-radius: 10px;
  color: #fff;
  padding: 10px 20px 10px 20px;
}

.custom-btn-2 {
  border: 1px solid var(--color-1);
  color: var(--color-1);
  background-color: transparent;
  padding: 10px 10px;
  transition: all 0.3s ease-in-out;
}

.custom-btn-2:hover,
.custom-btn-2:focus {
  border: 1px solid var(--color-1);
  color: white;
  background-color: var(--color-1);
}

.custom-underneath-border {
  position: relative;
  font-size: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9e9e9e;
}

.custom-underneath-border::before {
  display: inline-block;
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 80px;
  height: 4px;
  background-color: var(--color-1);
  border-radius: 10px;
}

.rainbow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 4/4;
  border-radius: 100% 100% 0 0;
  border-top: 10px solid var(--color-1);
  border-left: 10px solid var(--color-1);
  border-right: 10px solid var(--color-1);
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
}


.clad-background {
  position: absolute;
  width: 70%;
  height: 100%;
  left: 0%;
  top: 0;
  background-image: var(--bground-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-item {
  box-shadow: 19px 16px 100px 0px rgba(0, 0, 0, 0.25);
}

.solution-sect {
  background-attachment: fixed;
  background-image: var(--bground-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-sect {
  background-image: var(--bground-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stat-item .stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  border-radius: 100%;
  aspect-ratio: 4/4;
  border: 1px solid var(--color-1);
  color: var(--color-1);
}

.stat-item .stat-icon i {
  margin: 0;
  font-size: 36px;
}

.stat-item .stat-num {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 70px;
  color: var(--color-1);
  margin-top: 33px;
}

.r-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(8px, 1.5vw, 16px);
}

.r-sidebar li {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.r-sidebar li * {
  margin: 0;
}

.r-sidebar li span {
  padding: 1px 8.5px;
  background-color: #eeeeee;
  border-radius: 50%;
}

.r-sidebar li a {
  position: relative;
}

.r-sidebar li a:before {
  content: "\f054";
  font-family: "FontAwesome";
  margin-right: 10px;
}


.team-item {
  position: relative;
}

.team-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-1);
  z-index: 3;
}

.team-item .detail {
  z-index: 2;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: translateY(calc(100% - 10px));
  text-align: center;
  background: rgba(255, 255, 255, 1);

  transition: all 0.3s ease-in-out;
}

.team-item .detail .detail-top {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  background: inherit;
  border-radius: 10px 10px 0px 0px;
}

.team-item .detail:hover,
.team-item .detail:focus {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.8);
}


.thl-form-page {
  padding: 0 10px;
  margin-bottom: 90px;
}

.thl-contact .ct-left {
  float: left;
  width: 50%;
}

.thl-contact .ct-right {
  font-weight: 300;
  float: right;

  width: calc(50% - 50px);
}


.news-item>.inner {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px #00000040;
  transition: box-shadow 0.3s ease-in-out;
}

.news-item:hover>.inner {
  box-shadow: 0px 0px 4px 0px #00000040;
}


.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin: 60px 0px;
}

.review-item * {
  margin: 0;
}

.review-item {
width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.review-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.review-item .el {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-item .person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-item .avatar figure {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}

.review-item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-item .name h2 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.review-item .datetime p {
  font-size: 13px;
  color: #888;
  margin: 0;
  white-space: nowrap;
}

.review-item .el2 {
  margin-top: 14px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
  -webkit-line-clamp: 3;
  transition: max-height .4s ease, opacity .3s ease;
}

.review-item .el2.show-all {
  max-height: 216px;
  overflow-y: auto;
  -webkit-line-clamp: unset;
}

.review-item .el3 {
  margin-top: 12px;
  text-align: right;
}

.review-item .js-expand {
  background: none;
  border: none;
  color: var(--color-1);
  cursor: pointer;
  font-weight: 500;
  padding: 4px 0;
  transition: color .2s ease;
}

.review-item .js-expand:hover {
  color: var(--color-7);
}

.thl-project_ps {}

.project-item .name {
  transition: color 0.3s ease-in-out;
}

.project-item:hover .name {
  color: var(--color-1);
}

/* ==================================' */







.wrap-detail,
.detail-wp {
  position: relative;
}

.wrap-detail .title-detail {
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: -0.25px;
}

.wrap-detail .title-other {
  margin-top: 50px;
}

.wrap-detail .description {
  font-weight: 500;
  margin: 20px 0 30px;
}

.wrap-detail .detail-wp a.f-zoom>img {
  cursor: zoom-in;
  position: relative;
}

.wrap-detail,
.detail-wp h1,
.detail-wp h2,
.detail-wp h3,
.detail-wp h4,
.detail-wp h5,
.detail-wp p,
.detail-wp div,
.detail-wp table,
.detail-wp ul,
.detail-wp ol {
  margin-bottom: 15px;
}

.detail-wp .locationmap {
  margin-top: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap-detail ._2pi8 {
  padding: 0 !important;
}

.wrap-detail .box-comments {
  padding: 0 12px;
}

.social-share {
  color: #717171;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.social-share .item-social {
  float: left;
  margin: 0;
  position: relative;
}

.social-share .item-social+.item-social {
  margin-left: 15px;
}

.social-share .item-social .fa {
  font-weight: 300;
  font-size: 18px;
}

.social-share .item-social a {
  color: inherit;
}

.social-share .item-social a:hover,
.social-share .item-social a:focus {
  color: #ef6e2c;
}

.social-share::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.time-views {
  color: #707b97;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 15px;
}

.time-views .views {
  margin-left: 20px;
}

.time-views .tags {
  border-left: 1px solid #707b97;
  font-style: italic;
  margin-left: 15px;
  padding-left: 15px;
}

.time-views .tags>a {
  color: inherit;
}

.time-views .tags>a:hover,
.time-views .tags>a:focus {
  color: #0090cf;
  text-decoration: underline;
}

.time-share {
  border-bottom: 1px solid #707b97;
  color: #707b97;
  font-size: 13px;
  margin: 10px 0 20px;
  padding: 3px 5px;
  white-space: nowrap;
}

.time-share .views {
  margin-left: 20px;
}

.time-share .social-like {
  float: right;
}

.footer {
  background-color: var(--color-7);
  color: #fff;
}

.footer .footer-logo {
  text-align: left;
}

.footer .footer-logo img {
  margin: 0;
}

.footer .footer-logo,
.footer .footer-copyright {
  padding: 5px 10px;
}

.footer .footer-sitemap {
  border-bottom: 1px solid rgba(189, 189, 189, 0.5);
  padding: 30px 10px;
}

.footer .footer-logo .logo {
  display: inline-block;
  text-align: left;
}

.social {
  font-size: 20px;
  list-style: none;
  display: inline-block;
  padding: 0;
}

.social>li {
  display: inline-block;
}

.social>li+li {
  margin-left: 10px;
}

.social a {
  background-color: transparent;
  border: 1px solid var(--color-1);
  background-size: 70%;
  border-radius: 50%;
  color: var(--color-1);
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  overflow: hidden;
}

.footer .social a:hover,
.footer .social a:focus {
  background-color: var(--color-7);
  border-color: var(--color-7);
  color: #fff;
}

.footer .f-title {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin: 0;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;

  gap: 24px;

  margin-top: 24px;
}

.footer-flex * {
  margin: 0;
}

.footer .ft-col1,
.footer .ft-col2,
.footer .ft-col3 {
  flex-grow: 1;
  margin: 0;
  max-width: 300px;
}

.footer .ft-col1 {
  max-width: 500px;
}

.footer .ft-col2 {
  max-width: 160px;
}

.footer .ft-col3 {
  max-width: 216px;
}

.footer .ft-col3.register {
  max-width: 300px;
  margin: 0 auto;
}

.footer .ft-col3.register #_contact_footer {
  width: 100%;
}

.footer .ft-ctact ul {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 25px);
}

.footer .ft-ctact ul li {
  margin: 0;
}

.footer .ft-ctact ul li img {
  display: inline;
  width: 20px;
  margin-right: 10px;
}

.footer .ft-sitemap {
  line-height: 22px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.footer .ft-sitemap a {
  color: inherit;
}

.footer .ft-sitemap a:hover,
.footer .ft-sitemap a:focus {
  text-decoration: underline;
  color: #6eb846;
}

.footer .ft-sitemap {
  margin: 0 -15px;
}

.footer .ft-sitemap li {
  padding: 8px 15px;
}

.ft-col3.register {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.register #email {
  height: 48px;
  border: solid 1px #ffffff;
  background: none;
  color: #ffffff;

  padding: 14px 16px;
  width: 100%;
}

.register button {
  width: 100%;
  padding: 14px 0;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  background-color: var(--color-1);
  font-weight: 600;
  position: relative;
}

footer .footer-copyright .copyright {
  float: left;
  display: flex;
  align-items: center;

  color: white;
}

.footer .footer-copyright .dnw {
  float: right;
}

.footer .footer-copyright .dnw img {
  display: inline;
  margin-top: -7px;
  margin-left: 2px;
  height: 18px;
}

#go-top {
  position: fixed;
  z-index: 91;
  height: 40px;
  width: 40px;
  right: 30px;
  bottom: -50px;
  cursor: pointer;
  background-color: var(--color-1);
  border-radius: 100%;
  box-shadow: 3px 3px 8px 0px #00000050;
}

#go-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: url(../images/icon/top-arrow.svg) center center no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: transform 0.3s ease-in-out;
}

#go-top:hover {
  background-color: var(--color-7);
  background-position: center -40px;
}

#call-us {
  border-radius: 50%;
  color: #eeeeee;
  background-color: #6eb846;
  position: fixed;
  z-index: 91;
  height: 32px;
  width: 32px;
  right: 35px;
  bottom: 150px;
  cursor: pointer;
}

#call-us {
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-blue 1s linear infinite;
  -webkit-transition: 0.5s;
  z-index: 44;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 118, 19, 0.2),
      0 0 0 10px rgba(0, 118, 19, 0.2), 0 0 0 20px rgba(0, 118, 19, 0.2);
    box-shadow: 0 0 0 0 rgba(0, 118, 19, 0.2), 0 0 0 10px rgba(0, 118, 19, 0.2),
      0 0 0 20px rgba(0, 118, 19, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 118, 19, 0.2),
      0 0 0 20px rgba(0, 118, 19, 0.2), 0 0 0 30px rgba(238, 238, 238, 0);
    box-shadow: 0 0 0 10px rgba(0, 118, 19, 0.2),
      0 0 0 20px rgba(0, 118, 19, 0.2), 0 0 0 30px rgba(238, 238, 238, 0);
  }
}

#_loading {
  display: none;
  position: fixed;
  z-index: 9999;
}

.form .form-item {
  float: left;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 8px;
}

.form .form-item input,
.form .form-item select,
.form .form-item textarea {
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 20px;
  width: 100%;
  border-radius: 4px;
}

.form .form-item textarea {
  resize: none;
}

.div-input {
  margin: 0 -8px;
}

.form .form-item .f-icon {
  top: 8px;
  left: 10px;
  position: absolute;
  width: 40px;
  height: 40px;
  color: #b8b8b8;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  pointer-events: none;
}

.form .form-item input:hover~i,
.form .form-item select:hover~i,
.form .form-item textarea:hover~i {
  color: #1f355d;
}

.form .form-item input:focus~i,
.form .form-item select:focus~i,
.form .form-item textarea:focus~i {
  color: #1f355d;
}

.form .form-item input[type="submit"] {
  background-color: #1f355d;
  border: none;
  width: 100%;
  padding: 10px 15px 8px;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  max-width: 250px;
  text-transform: uppercase;
}

.form .form-item input[type="submit"]:hover,
.form .form-item input[type="submit"]:focus {
  background-color: #1f355d;
}

.form .form-item .show-error,
#email-error,
.form .form-item label.error {
  color: #f70626;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  line-height: 16px;
}

.form-item.it-error input,
.form-item.it-error select,
.form-item.it-error textarea {
  border: 1px solid #ff6e69;
}

.form .form-item.form-sm {
  width: 50%;
}

.form .form-item.form-lg {
  width: 100%;
}

.box-rfm {
  border: 1px solid #d8d9dd;
  margin-bottom: 25px;
  font-size: 15px;
}

.box-rfm .title {
  background-color: #1f355d;
  color: #ffffff;
  padding: 12px 25px 8px;
}

.box-rfm .title.t-red {
  background-color: #ec1d25;
}

.box-rfm .fm-tl {
  padding: 20px 10px;
}

.box-rfm .lgt {
  text-align: left;
  padding: 17px 5px 15px;
}

.box-rfm .cgt {
  text-align: center;
  padding: 17px 5px 15px;
}

.box-rfm .rgt {
  text-align: right;
  padding: 17px 5px 15px;
}

.form .box-rbtn {
  padding: 0;
}

.box-rbtn .btn {
  padding: 11px 20px 7px;
  text-transform: uppercase;
}

.box-rbtn .btn+.btn {
  margin-left: 20px;
}

.box-rbtn .btn.btn-send {
  width: 100%;
  background-color: var(--color-1);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 25px 90px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-send:hover,
.btn-send:focus {
  background-color: #27719e;
}

.btn-send:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #00355e;
}

.btn-send span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}

.btn-send span i {
  transform-origin: center center;
}

.btn-send span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}

.btn-send span:nth-of-type(2) {
  top: 100%;
  transform: translateY(0%);
  font-size: 24px;
}

.btn-send span:nth-of-type(3) {
  display: none;
}

.b-active {
  background-color: #00355e;
}

.b-active:before {
  width: 100%;
  transition: width 7s linear;
}

.b-active span:nth-of-type(1) {
  top: -100%;
  transform: translateY(-50%);
}

.b-active span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.b-active span:nth-of-type(2) i {
  -webkit-animation: fa-spin 3s infinite linear;
  animation: fa-spin 3s infinite linear;
}

.b-active span:nth-of-type(3) {
  display: none;
}

.b-finished {
  background-color: #54d98c;
}

.b-finished .s_submit {
  display: none;
}

.b-finished .s_loading {
  display: none;
}

.b-finished .s_check {
  display: block !important;
  font-size: 24px;
  animation: scale 0.5s linear;
}

.b-finished .s_check i {
  transform-origin: center center;
}

@keyframes s_loading {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scale {
  0% {
    transform: scale(10);
  }

  50% {
    transform: scale(0.2);
  }

  70% {
    transform: scale(1.2);
  }

  90% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1);
  }
}

.page-navigation {
margin-top: 16px;
  clear: both;
  cursor: default;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px;
}

.pagination {
  display: inline-block;
  margin: 0 -2px;
  padding: 0;
}

.pagination>li {
  display: inline-block;
  list-style: none;
  float: left;
}

.pagination>li>a,
.pagination>li>span {
  color: inherit;
  float: left;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  margin-right: 19px;
}

.pagination>li.active>a,
.pagination>li.active>span,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  background-color: var(--color-1);
  border-radius: 5px;
  color: white;
}

.pagination>li.paginate_icon .fa-chevron-left {
  margin-left: -2px;
}

.pagination>li.paginate_icon .fa-chevron-right {
  margin-right: -2px;
}

.pagination>li.paginate_icon>a,
.pagination>li.paginate_icon>span {
  line-height: 24px;
  width: 24px;
}

.pagination>li.paginate_icon>a:hover,
.pagination>li.paginate_icon>span:hover,
.pagination>li.paginate_icon>a:focus,
.pagination>li.paginate_icon>span:focus {
  background-color: #6eb846;
}

.pagination>li.paginate_icon>a:hover::after,
.pagination>li.paginate_icon>span:hover::after,
.pagination>li.paginate_icon>a:focus::after,
.pagination>li.paginate_icon>span:focus::after {
  display: none;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
  color: #8b7f7f;
  cursor: not-allowed;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline;
}

.pager li>a,
.pager li>span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li>a:hover,
.pager li>a:focus {
  text-decoration: none;
  background-color: #eee;
}

.pager .next>a,
.pager .next>span {
  float: right;
}

.pager .previous>a,
.pager .previous>span {
  float: left;
}

.pager .disabled>a,
.pager .disabled>a:hover,
.pager .disabled>a:focus,
.pager .disabled>span {
  color: #9c8f8f;
  cursor: not-allowed;
  background-color: #fff;
}

.updating,
.error404 {
  padding: 120px 10px;
  text-align: center;
}

.error404 i {
  margin-top: 50px;
  font-size: 10em;
}

.error404 p:last-child {
  color: #a7545e;
}

.error404 .title {
  font-weight: 500;
  margin-bottom: 50px;
}

.updating h3,
.error404 h3 {
  color: #9c8f8f;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
}

.introduction {
  padding: 60px 10px 10px;
}

.intro-txt {
  width: calc(56% - 47px);
  float: left;
}

.main-about {
  margin-top: 10px;
}

.main-about .intro-txt {
  width: calc(56% - 58px);
  float: left;
}

.intro-txt .thl-title {
  margin-bottom: 46px;
}

.character {
  line-height: 32px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}

.character p:first-child,
.character p:nth-child(2) {
  margin-bottom: 15px;
}

.intro-img {
  width: 44%;
  float: right;
  padding: 25px 27px 0;
  position: relative;
}

.intro-img .img1 {
  border-radius: 500px 500px 0px 0px;
  max-height: 541px;
  width: 100%;
  object-fit: cover;
}

.intro-img .img2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  cursor: default;
}

.thl-pdt-menu {
  width: 100%;
  position: relative;
  z-index: 1;
  color: white;
  padding: 47px 15px;
}

.thl-pdt-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 100%;
  background-image: url("../images/bg-dv.png");
  background-size: cover;
  z-index: -1;
}

.service-title {
  width: calc(27% - 19px);
  float: left;
  margin-top: 100px;
  letter-spacing: -0.25px;
}

.service-title .thl-title {
  margin-bottom: 29px;
  text-transform: uppercase;
}

.pdt-menu-list {
  width: 73%;
  float: right;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 28px;
  column-gap: 22px;
  color: #000;
}

.pdt-menu-list .pdt-menu-item:hover {
  transform: translateY(-15px);
}

.pdt-menu-item {
  background: #fff;
  box-shadow: 19px 16px 100px 0px rgba(0, 0, 0, 0.25);
}

.pdt-menu-item .icon {
  margin-bottom: 20px;
  pointer-events: none;
}

.pdt-menu-item .box h2 {
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  font-weight: 500;
  text-transform: uppercase;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pdt-menu-item .box p {
  font-size: 14px;
  margin-bottom: 34px;
  padding-right: 12px;
  line-height: 22px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: calc(5 * 22px);
}

.solution {
  background-image: url("../images/bg-gp.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 52px 10px;
  color: white;
}

.solution .thl-title {
  text-transform: uppercase;
  margin-bottom: 60px;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.solution-item {
  padding: 20px;
  border: solid 1px transparent;
  transition: all 0.3s ease-in-out;
}

.solution-item .box {
  display: flex;
  gap: 16px;
}

.solution-item .box .stt {
  min-width: 75px;
}

.solution-item .box .stt span {
  color: #48494b;
  font-family: Montserrat;
  font-size: 56px;
  font-weight: 600;
  line-height: 65px;
  letter-spacing: -0.25px;
}

.solution-item .txt h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.25px;
  margin-bottom: 24px;
}

.solution-item .txt p {
  font-size: 14px;
  letter-spacing: -0.25px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 96px;
}

.solution-item .txt h2 a {
  color: #fff;
  position: relative;
}

.solution-item .txt h2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 75px;
  height: 0;
  border-bottom: 3px solid #6eb846;
}

.solution-item:hover {
  border: solid 1px #fff;
}

/* project */
.thl-services {
  background-image: url("../images/bg-sv.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 10px 60px;
}

.project-title {
  position: relative;
}

.project-title .thl-title {
  padding-left: 15px;
  border-left: solid #6eb846 6px;
  margin-bottom: 16px;
}

.project-title p {
  max-width: 433px;
  margin: 0;
}

.project-title .link-all {
  letter-spacing: -0.25px;
  font-weight: 500;
  border-radius: 10px;
  color: #fff;
  padding: 10px 40px 10px 20px;
  background-color: #6eb846;
  position: absolute;
  right: 0;
  top: 35%;
}

.project-title .link-all span {
  position: relative;
}

.project-title .link-all span::after {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: -2px;
  right: -22px;
}

.numbers {
  margin: 90px 0;
  padding: 0 10px;
}

.nums-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.nums-item {
  text-align: center;
  width: 100%;
  padding: 45px 55px;
  color: #6eb846;
}

.nums-item:hover {
  background-color: #6eb846;
  color: white;
}

.nums-item:hover .icon {
  border: solid 1px #fff;
}

.nums-item .icon {
  width: 80px;
  height: 80px;
  padding: 20px 15px 15px;
  border: solid 1px #6eb846;
  border-radius: 50%;
}

.nums-item .icon i {
  font-size: 2.2rem;
}

.nums-item .num {
  font-size: 56px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -0.25px;
  margin-top: 33px;
}

.nums-item .name {
  color: #000;
  font-weight: 500;
  letter-spacing: -0.25px;
  margin-top: 28px;
}


/* PRODUCT PAGE START */


.pdt--page {
  background: #FFF
}

.wtm-pdt_ps {
  padding: 40px 0
}

.product--main {
  display: flex
}

.left--product--main {
  width: 25.5%;
  padding-right: 40px
}

.right--product--main {
  width: 74.5%
}

.nav--page--product .page-navigation {
  text-align: center
}

.i-pdt--main {
  max-height: 390px
}

.pdt--page * {
  color: #000
}

.cus--part--pdt {
  display: flex;
  flex-wrap: wrap
}

.left--pdt--50 {
  width: 52%
}

.right--pdt--50 {
  width: 48%;
  padding-left: 24px
}

.flex--pdt {
  display: flex;
  align-items: center;

}

.flex--pdt * {
  width: fit-content;
  margin: 0
}

.flex--pdt i {
  margin: 0 16px
}

.flex--pdt span {
  margin-right: 5px;
  font-weight: 700
}

.name--pdt-dt {
  font-size: 28px;
  color: #000;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.5;
}

.price--pdt {
  margin: 16px 0;
  color: red;
  font-size: 32px;
  font-weight: 700
}

.price--pdt label {
  color: #9E9E9E;
  font-size: 20px;
  font-weight: 400;
  text-decoration-line: line-through;
  margin-left: 8px
}

.comment--pdt {
  padding-bottom: 20px;
  border-bottom: 1px dashed #BEBEBE
}

.comment--pdt p {
  margin-bottom: 16px
}

#sync1 {
  margin-bottom: 16px;
  border: 2px solid #DEDEDE;
  border-radius: 8px;
  padding: 18px;
  background-color: #fff
}

#sync2 .owl-item div {
  border: 1px solid #DEDEDE;
  overflow: hidden;
  ;
  border-radius: 4px
}


#sync2 {
  padding: 0 28px
}

#sync2 .owl-nav .owl-prev,
#sync2 .owl-nav .owl-next {
  position: absolute;
  top: 45%;
  width: 24px;
  height: 24px
}

#sync2 .owl-nav .owl-prev {
  left: 0
}

#sync2 .owl-nav .owl-next {
  right: 0;
  text-align: right
}

.nav--sub--pdt {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #BEBEBE;
  padding: 8px 0;
  margin: 0 0 16px;
  height: 47px
}

.nav--sub--pdt li {
  width: fit-content;
  padding: 0 16px;
  margin: 0;
  list-style: none;
  color: #BEBEBE;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.nav--sub--pdt li::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  background: transparent;
}

.nav--sub--pdt li.active::after {
  background: #6EB846;
}

.nav--sub--pdt li.infor-pdt {
  margin: 0 0 0 auto;
}

.nav--sub--pdt li:last-child {
  margin-right: auto;
}

/* li.ratting-pdt {
  margin-left: 0;
} */

.nav--sub--pdt li.active {
  color: #6EB846
}

.left--pdt--67 {
  width: 67%
}

.right--pdt--33 {
  width: 33%;
  padding-left: 20px
}

.item--new--pdt {
  display: flex;
  margin-bottom: 24px
}

.item--new--pdt:last-child {
  margin-bottom: 0
}

.item--new--pdt .img {
  width: 36%
}

.item--new--pdt .infor-new--pdt {
  width: 64%;
  position: relative;
  padding: 12px 0;
  padding-left: 8px
}

.a--new--pdt {
  position: absolute;
  bottom: 12px;
  left: 8px
}

.infor-new--pdt h4 {
  font-weight: 700
}

.desc--ratting {
  width: 100%;
}

.pd--40 {
  padding: 40px 0;
}

.a--contact a {
  position: unset;
  padding: 8px 40px;
  margin: 24px 0;
  display: block;
  transform: none;
}

.number-pdt {
  margin-top: 24px;
}

.number-pdt label {
  font-weight: 600;
}

#decrement,
#quantity,
#increment {
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  text-align: center;

}

#quantity {
  margin: 0 16px;
  width: 32px;
  height: 32px;
}

.right--pdt--50 .social {
  margin: 0 0 0 8px;
  transform: translateY(8px);
}

/* 
.part--2--pdt {
  margin-top: 48px
} */

.tl--other-pdt {
  color: #6EB846;
  font-size: 38px;
  margin-bottom: 40px;
}

.show--ratting--pdt {
  display: none
}

.show--ratting--pdt.active {
  display: block
}

.show--infor--pdt.hidden {
  display: none
}

.top--filter {
  padding: 10px 0;
  margin-bottom: 16px
}

.top--filter form {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #BEBEBE;
  padding: 12px;
  display: flex
}

.top--filter form input {
  width: calc(100% - 32px);
  background-color: transparent
}

.top--filter form button {
  width: 32px;
  padding-left: 8px
}

.top--filter form button:hover img {
  transform: scale(1.12);
  transform: .6s
}

.box--filter {
  margin-bottom: 32px
}

.box--filter h2 {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px
}

.box--filter ul {
  margin: 0;
  padding: 0
}

.box--filter li {
  list-style: none;
  padding: 8px;
  border-bottom: .5px dashed #494D48;
  margin-bottom: 8px;
  cursor: pointer
}

.box--filter li.active,
.box--filter li.active * {
  color: #98743D
}

.box--filter:last-child,
.box--filter li:last-child {
  margin-bottom: 0
}

.title--ratting {
  text-align: center;
  width: fit-content;
  padding: 20px 0;
  border-bottom: 1px solid #BEBEBE;
  margin-bottom: 24px;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase
}

.feedback {
  margin-bottom: 20px
}

.btn-ratting {
  margin-top: 32px;
  color: #fff !important;
  background-color: #4D3A1E;
  padding: 12px;
  max-width: 175px
}

.btn-ratting * {
  color: #fff !important
}

.box-btn--ratting {
  text-align: center
}

.list--ratting {
  margin: 40px 0 0;
  padding: 20px 20px 0;
  border-top: 2px solid #6eb846;
  border-bottom: 2px solid #6eb846;
  border-radius: 20px
}

.list--ratting li {
  margin-bottom: 15px;
  list-style: none
}

.list--ratting h4 {
  font-size: 20px
}

.list--ratting label {
  margin-left: -4px
}

.list--ratting label {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e") no-repeat center;
  background-size: 70%
}

.detail--post img {
  margin: 33px 0
}

/* PRODUCT PAGE ENDS */

/* teamSize */
.team-size .thl-title {
  color: #6eb846;
  letter-spacing: -0.25px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}

.team-size {
  margin-bottom: 90px;
}

.team-size .team-size-list {
  margin: 0 -16px;
}

.team-item .box {
  position: relative;
  overflow: hidden;
  border-bottom: 2.913px solid #6eb846;
}

.team-item .box .img img {
  max-height: 320px;
}

.team-item .txt {
  letter-spacing: -0.25px;
  border-radius: 10px 10px 0px 0px;
  background-color: #fff;
  text-align: center;
  color: #000;
  padding: 10px 10px;
  transition: 0.5s;
  transform: translateY(100%);
  position: absolute;
  right: 0;
  bottom: 64px;
  left: 0;
}

.team-item .txt .name {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
}

.team-item .txt .pos {
  font-size: 14px;
  color: #6eb846;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-item .txt .content {
  opacity: 0;
  font-size: 14px;
}

.team-item:hover .txt,
.team-item:focus .txt {
  bottom: 0;
  transform: translateY(0);
}

.team-item:hover .txt .content,
.team-item:focus .txt .content {
  opacity: 1;
}

.team-item:hover .txt,
.team-item:focus .txt {
  background: rgba(255, 255, 255, 0.8);
}

.sv-contact {
  margin-top: 80px;
  padding: 50px 10px 60px;
  background-color: #6eb846;
  color: #fff;
  letter-spacing: -0.25px;
}

.sv-contact .box {
  max-width: 898px;
  text-align: center;
}

.sv-contact .box .cont-title {
  max-width: 761px;
  font-size: 38px;
  font-weight: 600;
  line-height: 57px;

  text-transform: uppercase;
}

.sv-contact .box .cont-des {
  margin: 51px auto 60px;
  font-size: 14px;
  line-height: 20px;
}

.sv-contact .box a {
  padding: 10px 20px;
  background-color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: all 0.3s ease-out;
}

.sv-contact .box a:hover {
  color: white;
  background-color: rgb(10, 128, 34);
  transform: scale(1.1);
  padding: 15px 25px;
}

.service-main {
  width: calc(60% - 34px);
  float: left;
  margin-right: 34px;
}

.faq {
  width: 40%;
  float: right;
}

.service-main span {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: var(--color-1);
}

.service-main .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
  color: var(--color-1);
  margin: 12px 0 35px;
  max-width: 529px;
  text-transform: uppercase;
}

.service-main .content {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.service-main .content p {
  margin-bottom: 18px;
}

.service-main .social {
  font-size: 15px;
  letter-spacing: -0.25px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 47px;
}

.service-main .social span {
  padding-top: 5px;
  margin: 0;
  color: #757575;
}

.service-main .social span>i {
  margin-right: 4px;
}

.service-main .social a {
  border: none;
  width: unset;
  height: 32px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  padding: 0px 9px;
  background-color: #0085ff;
  border-radius: 4px;
}

.service-main .social a>i {
  margin-right: 8px;
}

/* faq */
.faq-item {
  margin-bottom: 26px;
}

.faq .faq-title {
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 24px;
}

.faq .faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  cursor: pointer;
}

.faq .faq-question .icon {
  width: fit-content;
  padding: 3px 8px;
  background-color: var(--color-1);
  border-radius: 50%;
  color: #fff;
  margin: 0;
}

.faq-item .faq-answer {
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  letter-spacing: 0.75px;
}

.faq-item .faq-answer p {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.similar-service {
  margin: 100px 0 90px;
  padding: 0 10px;
}

.similar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.similar-service .pdt-menu-item {
  box-shadow: unset;
  padding: 30px 10px;
}

.similar-service .pdt-menu-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.similar-title h2 {
  font-size: 28px;
  color: var(--color-1);
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
}

.detail-wp {}

.wrap-detail .img img {
  max-height: 486px;
  width: 100%;
  object-fit: cover;
}

.detail-wp .content-left {
  width: calc(34% - 30px);
  margin-right: 30px;
  float: left;
}

.detail-wp .content-left p {
  margin-bottom: 18px;
}

.detail-wp .content-right {
  width: 66%;
  float: right;
}

.content .detail-wp {
  letter-spacing: -0.25px;
}

.detail-wp .proj-title {
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 500;
}

.detail-wp strong {
  font-weight: 500;
}

.ft-social {
  margin-top: 24px;
}

.ft-social .social {
  list-style: none;
}

.content-left .social>li+li {
  margin-left: 15px;
}

.content-left .ft-social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.content-left .social {
  margin: 2px 0 0 0;
}

.project-similar {
  margin-top: 140px;
}

.project-similar .news-list {
  margin: 0 -15px;
}

.project-similar .others-title {
  font-size: 28px;
  margin-bottom: 45px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
  color: #6eb846;
}

.box-sd .service-item {
  padding: 15px;
  float: left;
  width: 33.33333%;
}

.thl-news_ps .content-right {
  width: 40%;
  float: right;
}

.thl-news_ps .content-left {
  width: calc(60% - 32px);
  margin-right: 30px;
  float: left;
  margin-bottom: 20px;
}

.thl-news_ps .content-left .detail-wp {

  font-size: 15px;
}

.thl-news_ps .content-left .news-item:first-child {
  margin-bottom: 60px;
}

.thl-news_ps .content-left .page-navigation {
  margin-top: 40px;
}

.thl-news_ps .news-item .img img {
  max-height: 439px;
  object-fit: cover;
  width: 100%;
}

.thl-news_ps .content-left .news-item .txt {
  margin-top: 28px;
  padding: 10px 20px 30px;
}

.thl-news_ps .news-item .txt h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
}

.thl-news_ps .content-left .news-item .txt .date-views {
  color: #9e9e9e;
  margin-bottom: 16px;
  font-size: 14px;
}

.thl-news_ps .content-left .news-item .txt p {
  font-size: 15px;
  letter-spacing: -0.25px;
  margin-bottom: 26px;
}

.thl-news_ps .news-item .txt a>span {
  color: #6eb846;
  padding: 5px 10px;
  border: 1px solid #6eb846;
  font-size: 15px;
}

.thl-news_ps .news-item .txt a>span::after {
  margin-left: 8px;
  content: "\f061";
  font-family: "FontAwesome";
}

.thl-news_ps .news-item .txt a>span:hover,
.thl-news_ps .news-item .txt a>span:focus {
  color: #fff;
  background-color: #6eb846;
}

.date-and-social {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.date-and-social .date-views {
  margin: 0;
  font-size: 14px;
  color: #9e9e9e;
}

.date-and-social .date-views i {
  margin-right: 6px;
}

.date-and-social .date-views .dv-date {
  margin-right: 16px;
}

.date-and-social .ft-social {
  margin: 0;
}

.date-and-social .ft-social strong {
  font-weight: 500;
}

.info-contact {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
}

.info-contact .ft-inf:not(:last-child) {
  margin-bottom: 12px;
}

.info-contact .ft-inf span {
  font-weight: 700;
}

.hire-section {
  margin-bottom: 90px;
}

.hire-section .service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.hire-item {
  width: 100%;
}

.thl-project_ps .page-navigation,
.hire-section .page-navigation {
  text-align: center;
  margin: 45px 0px;
}

.hire-item:hover .box,
.hire-item:focus .box {
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.hire-item .img a>img {
  max-height: 195px;
  width: 100%;
  object-fit: cover;
}

.hire-item .txt {
  padding: 12px 10px 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
}

.hire-item .txt h3 {
  margin-bottom: 15px;
}

.hire-item .txt h3>a {
  color: #000;
}

.hire-item .txt .info-location {
  margin-bottom: 16px;
}

.hire-item .txt .info-location::before {
  content: "\f3c5";
  font-family: "FontAwesome";
  color: var(--color-1);
  font-size: 1.3rem;
  margin-right: 6px;
}

.hire-item .txt .info-line:not(:last-child) {
  margin-bottom: 12px;
}

.hire-item .txt .info-line span {
  font-weight: 500;
}

.hire-item .txt .info-line span::before {
  content: "\f00c";
  margin-right: 8px;
  font-family: "FontAwesome";
}

.hiring-title {
  background: url("../images/hiring-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  letter-spacing: -0.25px;
  padding: 0 10px;
}

.hiring-title h2 {
  font-size: 28px;
  margin: 150px 0 58px;
  line-height: 42px;
  position: relative;
  text-transform: uppercase;
}

.hiring-title h2::after {
  content: "";
  border-bottom: 10px solid white;
  position: absolute;
  left: 0;
  right: 88%;
  bottom: -20px;
}

.hiring-title h3 {
  font-size: 16px;
  margin-bottom: 54px;
  line-height: 24px;
}

.wrap-detail .txt {
  margin-top: 62px;
  padding: 0 15px;
}

.txt .detail-wp {
  padding-top: 42px;
  border-top: 2px solid var(--color-1);
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.25px;
  margin-bottom: 30px;
}

.txt .detail-wp strong:not(:first-child) {
  margin-top: 20px;
}

.txt .info {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.25px;
  margin-bottom: 43px;
}

.txt .info .info-line:not(:last-child) {
  margin-bottom: 6px;
}

.txt .hiring {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 10px 40px;
  border-radius: 5px;
  background: var(--color-1);
  margin: 0;
  cursor: pointer;
}

.wrap-detail.wp-service.clearfix {
  margin-bottom: 100px;
}

.btn-apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-apply .ft-social {
display: flex;
    align-items: center;
  margin: 0;
}

.btn-apply .social {
  margin: 0;
  position: relative;
}


.btn-apply .social a {
  color: white;
  background-color: var(--color-1);
}

.service-view {
  padding: 0 10px;
}

.choose_file {
  background-color: #616161;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

.thl-chinhsach_ps {
  margin: 90px 0;
  padding: 0 10px;
}



.windows8 {
  position: relative;
  width: 80px;
  height: 80px;
}

.windows8 .wBall {
  position: absolute;
  width: 76px;
  height: 76px;
  opacity: 0;
  -moz-transform: rotate(225deg);
  -moz-animation: orbit 4.95s infinite;
  -webkit-transform: rotate(225deg);
  -webkit-animation: orbit 4.95s infinite;
  -ms-transform: rotate(225deg);
  -ms-animation: orbit 4.95s infinite;
  -o-transform: rotate(225deg);
  -o-animation: orbit 4.95s infinite;
  transform: rotate(225deg);
  animation: orbit 4.95s infinite;
}

.windows8 .wBall .wInnerBall {
  background-color: #00355e;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.windows8 #wBall_1 {
  -moz-animation-delay: 1.08s;
  -webkit-animation-delay: 1.08s;
  -ms-animation-delay: 1.08s;
  -o-animation-delay: 1.08s;
  animation-delay: 1.08s;
}

.windows8 #wBall_2 {
  -moz-animation-delay: 0.22s;
  -webkit-animation-delay: 0.22s;
  -ms-animation-delay: 0.22s;
  -o-animation-delay: 0.22s;
  animation-delay: 0.22s;
}

.windows8 #wBall_3 {
  -moz-animation-delay: 0.43s;
  -webkit-animation-delay: 0.43s;
  -ms-animation-delay: 0.43s;
  -o-animation-delay: 0.43s;
  animation-delay: 0.43s;
}

.windows8 #wBall_4 {
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -ms-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.windows8 #wBall_5 {
  -moz-animation-delay: 0.86s;
  -webkit-animation-delay: 0.86s;
  -ms-animation-delay: 0.86s;
  -o-animation-delay: 0.86s;
  animation-delay: 0.86s;
}

@-moz-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -moz-transform: rotate(180deg);
    -moz-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -moz-transform: rotate(300deg);
    -moz-animation-timing-function: linear;
    -moz-origin: 0%;
  }

  30% {
    opacity: 1;
    -moz-transform: rotate(410deg);
    -moz-animation-timing-function: ease-in-out;
    -moz-origin: 7%;
  }

  39% {
    opacity: 1;
    -moz-transform: rotate(645deg);
    -moz-animation-timing-function: linear;
    -moz-origin: 30%;
  }

  70% {
    opacity: 1;
    -moz-transform: rotate(770deg);
    -moz-animation-timing-function: ease-out;
    -moz-origin: 39%;
  }

  75% {
    opacity: 1;
    -moz-transform: rotate(900deg);
    -moz-animation-timing-function: ease-out;
    -moz-origin: 70%;
  }

  76% {
    opacity: 0;
    -moz-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(900deg);
  }
}

@-webkit-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 0%;
  }

  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    -webkit-origin: 7%;
  }

  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 30%;
  }

  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 39%;
  }

  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 70%;
  }

  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
}

@-ms-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -ms-transform: rotate(180deg);
    -ms-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -ms-transform: rotate(300deg);
    -ms-animation-timing-function: linear;
    -ms-origin: 0%;
  }

  30% {
    opacity: 1;
    -ms-transform: rotate(410deg);
    -ms-animation-timing-function: ease-in-out;
    -ms-origin: 7%;
  }

  39% {
    opacity: 1;
    -ms-transform: rotate(645deg);
    -ms-animation-timing-function: linear;
    -ms-origin: 30%;
  }

  70% {
    opacity: 1;
    -ms-transform: rotate(770deg);
    -ms-animation-timing-function: ease-out;
    -ms-origin: 39%;
  }

  75% {
    opacity: 1;
    -ms-transform: rotate(900deg);
    -ms-animation-timing-function: ease-out;
    -ms-origin: 70%;
  }

  76% {
    opacity: 0;
    -ms-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -ms-transform: rotate(900deg);
  }
}

@-o-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -o-transform: rotate(180deg);
    -o-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -o-transform: rotate(300deg);
    -o-animation-timing-function: linear;
    -o-origin: 0%;
  }

  30% {
    opacity: 1;
    -o-transform: rotate(410deg);
    -o-animation-timing-function: ease-in-out;
    -o-origin: 7%;
  }

  39% {
    opacity: 1;
    -o-transform: rotate(645deg);
    -o-animation-timing-function: linear;
    -o-origin: 30%;
  }

  70% {
    opacity: 1;
    -o-transform: rotate(770deg);
    -o-animation-timing-function: ease-out;
    -o-origin: 39%;
  }

  75% {
    opacity: 1;
    -o-transform: rotate(900deg);
    -o-animation-timing-function: ease-out;
    -o-origin: 70%;
  }

  76% {
    opacity: 0;
    -o-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -o-transform: rotate(900deg);
  }
}

@keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    transform: rotate(180deg);
    animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    transform: rotate(300deg);
    animation-timing-function: linear;
    origin: 0%;
  }

  30% {
    opacity: 1;
    transform: rotate(410deg);
    animation-timing-function: ease-in-out;
    origin: 7%;
  }

  39% {
    opacity: 1;
    transform: rotate(645deg);
    animation-timing-function: linear;
    origin: 30%;
  }

  70% {
    opacity: 1;
    transform: rotate(770deg);
    animation-timing-function: ease-out;
    origin: 39%;
  }

  75% {
    opacity: 1;
    transform: rotate(900deg);
    animation-timing-function: ease-out;
    origin: 70%;
  }

  76% {
    opacity: 0;
    transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    transform: rotate(900deg);
  }
}@media screen and (min-width: 1240px) {
    .hire-item .img a>img {
        height: 195px;
    }
}

@media screen and (max-width: 1240px) {
    .navigation>ul>li:first-child{
        display: none;
    }
    .intro-txt {
        padding-left: 15px;
    }

    .hire-section .service-list {
        padding: 0 10px;
    }
}
@media screen and (max-width: 1120px) {
    .footer .ft-col3.register {
    max-width: 540px;
    flex-grow: 1;
    }
}
@media screen and (max-width: 1080px) {
    .header .header-left {
        width: 15%;
    }

    .header .header-right {
        width: 85%;
    }

    .navigation>ul>li:first-child{
        display: none;
    }

    .header .menu-main {
        width: 100%;
    }

    .slider-bg {
        height: 50vh;
    }

    .service-title {
        margin: 0 0 30px;
        width: 70%;
    }

    .pdt-menu-list {
        width: 100%;
    }

    .footer .footer-sitemap {
        padding: 50px 10px 30px;
    }

    .footer .ft-col1 {
        
        width: 50%;
        text-align: left;
    }

    .footer .ft-col3.register form {
        width: 100%;
    }

    .footer .f-title {
        margin: 0 auto;
    }
}

@media screen and (min-width: 961px) {
}

@media screen and (max-width: 960px) {
    .sv-contact .box .cont-des {
        margin: 30px auto 35px;
    }

    .sv-contact .box .cont-title {
        line-height: 36px;
        font-size: 27px;
    }

    .thl-title {
        line-height: 36px;
        font-size: 27px;
    }

    .thl-contact .ct-right {
        width: calc(50% - 30px);
    }

    .navigation ul>li>a {
        padding: 5px 5px;
        font-size: 15px;
    }

    .nums-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .intro-txt .thl-title {
        margin-bottom: 30px;
    }


    .thl-services .service-list {
        margin: 70px -8px 0;
    }

    .project-list .service-item,
    .thl-services .service-item {
    }

    
    .thl-news .news-list {
        margin-top: 20px;
        grid-template-columns: repeat(2,1fr);
    }

    .header{
    }
    .header .header-right {
        display: none;
    }

    .header .header-left {
        width: 100%;
        text-align: center;
    }
    .header-langues{
        position: absolute !important;
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
    }
    .price--pdt {
        font-size: 28px;
    }

    .price--pdt label {
        font-size: 20px;
    }
}

/* @media screen and (max-width: 960px) and (min-width: 768px) {
    .sidebar {
        width: 30%;
    }

    .pdt-main {
        width: calc(70% - 20px);
    }

    .sidebar+.pdt-main,
    .pdt-main+.sidebar {
        margin-left: 20px;
    }

    .pdt-main .pdt-item {
        width: 50%;
    }

    .pdt-main .pdt-item:nth-child(2n + 1) {
        clear: both;
    }
} */

@media screen and (max-width: 880px) {

    .ct-right h2 {
        font-size: 28px;
    }

    .left--pdt--50,
    .right--pdt--50 {
        width: 100%;
        padding: 0;
    }

    .right--pdt--50 {
        margin-top: 32px;
    }

    .navigation ul>li>a {
        font-size: 14px;
    }

    .character {
        line-height: 28px;
    }

    .pdt-menu-item .v-more {
        font-size: 13px;
        padding: 5px 15px;
    }

    .detail-wp .content-right {
        width: 100%;
        margin-top: 30px;
    }

    .detail-wp .content-left {
        width: 100%;
    }

    .thl-news_ps .content-left {
        width: 100%;
    }

    .thl-news_ps .content-right {
        width: 100%;
    }

    .hire-section .service-list{
        grid-template-columns: repeat(3,1fr);
        gap: 26px;
    }
    .hire-item {
    }

    .sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    .pdt-main {
        width: 100%;
        margin: 0;
    }


    .project-list {
        grid-template-columns: repeat(2,1fr);
    }
    .project-similar .news-list {
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 767px) {
    .footer .footer-logo{
        display: flex;
    }
.footer .footer-logo p{
margin: 0 auto;
}
    .footer .ft-col2 {
    }

    .footer .ft-col1 p:first-child>img {
        
    }

    .tl--other-pdt {
        font-size: 32px;
    }

    .name--pdt-dt {
        font-size: 24px;
    }

    .pdt-main.other--pdt .pdt-item {
        width: 33.333%;
    }

    .price--pdt {
        font-size: 24px;
    }

    .price--pdt label {
        font-size: 18px;
    }
    .thl-news_ps .content-left .news-item .txt {
        margin-top: 15px;
        padding: 0px 10px 0px;
    }

    .content-right .box-sd {
        margin-bottom: 20px;
    }

    .thl-news_ps .content-left .news-item:first-child {
        margin-bottom: 40px;
    }

    .breadcrumb.bdc-sm {
        padding: 35px 10px;
    }

    .thl-news_ps,
    .thl-project_ps,
    .thl-pdt_ps {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .thl-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    #wrapper {
        margin-top: 86px;
    }

    .header {
        padding: 8px 10px;
    }

    .header .header-left {
        width: 100%;
    }

    .header .header-right {
        display: none;
    }

    .breadcrumb {
        font-size: 14px;
        line-height: 22px;
        padding: 50px 10px 80px;
        margin-bottom: 20px;
    }

    .breadcrumb.b-about {
        padding-bottom: 200px;
    }

    .breadcrumb .title {
        font-size: 35px;
        line-height: 42px;
    }

    .thl-pdt-menu,
    .thl-pdt-hot,
    .thl-services,
    .thl-news,
    .thl-partner {
        margin: 50px 0;
    }

    .pdt-item {
        width: 33.33336%;
    }

    .thl-services .service-item {
    }

    .news-item.news-b,
    .news-item.news-s {
        width: 100%;
    }

    .thl-contact,
    .thl-map {}

    .thl-about .box-abouts {
        padding: 50px;
    }

    .wrap-detail .description {
        margin: 10px 0 20px;
    }

    .thl-contact .ct-left,
    .thl-contact .ct-right {
        width: 100%;
    }

    .thl-contact .ct-right {
        margin-top: 50px;
    }

    .sidebar,
    .pdt-main {
        width: 100%;
    }

    .sidebar+.pdt-main,
    .pdt-main+.sidebar {
        margin-left: 0;
    }

    .sd-search>form,
    .sidebar .sd-search {
        margin-bottom: 0px;
    }

    .sidebar .sd-nar-pdt,
    .sidebar .sd-partner {
        display: none;
    }

    .sidebar .sd-others-pdt {
        margin-bottom: 20px;
        max-width: 420px;
    }

    .pdt-hotline {
        margin-top: 20px;
    }

    .solution-list {
        grid-template-columns: repeat(1, 1fr);
    }

    footer .footer-logo img{
        margin: auto;
    }
    .footer .footer-copyright .copyright,
    .footer .footer-copyright .dnw{
        width: 100%;
        text-align: center;
    }
    .footer .footer-copyright .copyright p{
margin: 0 auto;
}
}

@media screen and (max-width: 640px) {
    .footer .footer-copyright {
        font-size: 14px;
    }

    .title--ratting,
    .nav--sub--pdt li {
        font-size: 18px;
    }

    .pdt-list .pdt-item {
        width: 50%;
    }

    .footer .footer-copyright .dnw a{
        margin-left: 1px;
    }
    .footer .footer-copyright .dnw a>img {
        max-width: 92px;
        margin-top: -7px !important;
    }

    .hiring-title h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .txt .info {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .wrap-detail .title-detail {
        font-size: 22px;
        line-height: 28px;
    }

    .wrap-detail .txt {
        margin-top: 40px;
    }

    .plb-title>label {
        font-size: 22px;
    }

    .project-similar .others-title {
        margin-bottom: 25px;
        font-size: 22px;
        line-height: 30px;
    }

    .project-similar {
        margin-top: 25px;
    }

    .project-list .service-item {
    }

    .content-left {
        width: 100%;
    }

    .pd-dt-shop .pd-s-gal,
    .pd-dt-shop .pd-s-des {
        width: 100%;
    }

    .pd-dt-shop .pd-s-des {
        margin-top: 20px;
    }

    .sidebar h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .pdt-main .page-navigation {
        margin-top: 20px;
    }
    
}

@media screen and (max-width: 580px) {
    .date-views {
        font-size: 14px;
    }


    .footer .f-title {
        font-size: 14px;
    }

    .footer {
        font-size: 14px;
    }

    .social {
    }

    .pdt-menu-item .box p {

        margin-bottom: 10px
    }

    .sv-contact .box .cont-des {
        margin: 25px auto 35px;
    }

    .sv-contact .box .cont-title {
        font-size: 26px;
        line-height: 40px;
    }

    .nums-item {
        padding: 10px 15px;
    }

    .nums-item .num {
        font-size: 40px;
        line-height: 50px;
    }

    .character {
        font-size: 14px;
    }

    #wrapper {
        margin-top: 62px;
    }

    .header .header-left .logo>img {
    }

    .thl-pdt-menu {
        padding: 30px 10px;
    }

    .wrap-detail.wp-service.clearfix {
        margin-bottom: 50px;
    }

    .btn-apply {
        flex-direction: column;
        gap: 50px;
    }

    .hire-section .service-list{
        grid-template-columns: repeat(2,1fr);
        gap: 22px;
    }
    .hire-item {
    }

    .similar-service {
        margin: 0 0 20px;
    }

    .similar-list {
        margin-top: 10px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .similar-service .pdt-menu-item {
        padding: 15px 10px;
    }

    .service-main {
        width: 100%;
    }

    .faq {
        width: 100%;
        margin-top: 30px;
    }

    .team-size {
        margin-bottom: 60px;
    }

    .numbers {
        margin: 30px 0;
    }

    .slider-bg {
        height: 35vh;
    }

    .intro-txt,
    .main-about .intro-txt {
        width: 100%;
        padding: 0;
    }

    .intro-img {
        width: 100%;
        margin-top: 30px;
        padding: 15px 16px 0;
    }

    .thl-pdt-menu .pdt-menu-item {
        padding: 15px 10px;
    }

    .solution .thl-title {
        margin-bottom: 25px;
    }

    .project-title {
        padding-bottom: 70px;
    }

    .project-title .link-all {
        top: unset;
        bottom: 15px;
    }

    .thl-services {
        padding-bottom: 25px;
    }
    .thl-news .news-item {
    }

    .thl-news .news-item .txt p:last-child {
        margin-bottom: 0px;
    }

    .intro-txt .thl-title {
        font-size: 20px;
    }

    .thl-title {
        font-size: 24px;
        line-height: 30px;
    }

    .pdt-item {
        width: 50%;
    }

    .thl-services .service-list,
    .pdt-list {
        margin: 0 -8px;
    }

    .thl-services .service-item,
    .project-item {
    }

    .pdt-item {
        padding: 20px 8px;
    }

    .thl-about .box-abouts {
        padding: 30px;
    }

    .pt-about>.pt-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .wp-service>.img,
    .wp-service>.txt {
        width: 100%;
    }

    .wp-service>.txt {
        margin-top: 20px;
    }

    .p-others .news-item {
        width: 50%;
    }

    .p-others .news-item:nth-child(2n + 1) {
        clear: both;
    }

    .pdt-main .pdt-item {
        width: 50%;
    }

    .pdt-item:nth-child(2n + 1) {
        clear: both;
    }

    .footer .ft-col1 {
        width: 100%;
    }

    .footer .ft-col2 {
    }

    .footer .ft-col2:nth-child(4) {
        width: calc(30% - 30px);
        margin-top: 20px;
    }
}

@media screen and (min-width: 441px) and (max-width: 960px) {
    
}


@media screen and (max-width: 480px) {
    .review-item .el{
        flex-direction: column;
    }
    .form .form-item.form-sm {
        width: 100%;
        padding: 8px !important;
    }

    .pdt-main.other--pdt .pdt-item {
        width: 50%;
    }

    .sidebar {
        border: none;
    }

    .thl-news .news-list {
        margin-top: 35px;
        grid-template-columns: repeat(1,1fr);
    }

    .thl-news_ps .news-item .txt h2 {
        font-size: 20px;
        line-height: 1.5;
        max-height: unset;
    }

    .team-item .txt {
        transform: none;
        position: unset;
    }

    .team-item .txt .pos {
        min-height: 40px;
    }

    .team-item .txt .content {
        opacity: 1;
    }

    .tl--other-pdt {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .name--pdt-dt {
        font-size: 22px;
    }

    .price--pdt {
        font-size: 20px;
    }

    .price--pdt label {
        font-size: 14px;
    }

    .pd--40 {
        padding: 20px 0;
    }

    .part--2--pdt {
        margin-top: 16px;
    }


    .project-list {
        grid-template-columns: repeat(1,1fr);
    }

    .project-similar .news-list {
        grid-template-columns: repeat(1,1fr);
    }


    .service-title{
        width: 100%;
    }
    .thl-pdt-menu::before{
        width: 100%;
    }
    .pdt-menu-list {
        grid-template-columns: repeat(1,1fr);
    }


    #go-top{
        
    }
}

@media screen and (max-width: 440px) {
    .header-langues{
        position: absolute !important;
        top: 50%;
        left: 10px;
        right: unset;
        transform: translateY(-50%);
    }

    .header .header-left .logo>img{
        margin: auto;
    }

    .header .header-langues .langues-wrapper{
        right: unset;
        left: 0px;
    }


    .price--pdt {
        font-size: 20px;
    }

    .price--pdt label {
        font-size: 14px;
    }

    .title--ratting,
    .nav--sub--pdt li {
        font-size: 16px;
    }

    .pdt-main .pdt-list {
        margin: 0;
    }

    .pdt-main .page-navigation {
        margin-top: 12px;
    }

    /* .pdt-list .pdt-item {
        width: 100%;
    } */
    .sidebar h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .hire-section .service-list{
        grid-template-columns: repeat(1,1fr);
        gap: 18px;
    }
    .hire-item {
    }

    .date-and-social {
        flex-direction: column;
        margin-top: 30px;
        align-items: unset;
        gap: 15px;
    }

    .news-item,
    .project-item {
        width: 100%;
    }
}

@media screen and (min-width: 441px) {
    .thl-news_ps .news-item:nth-child(2n + 1) {
        clear: both;
    }
}

@media screen and (min-width: 581px) {
    .p-others .news-item:nth-child(2n + 1) {
        clear: none;
    }
}

@media screen and (max-width: 767px) and (min-width: 581px) {

    /* .pdt-main .pdt-item:nth-child(3n + 1), */
    .thl-pdt-hot .pdt-item:nth-child(3n + 1) {
        clear: both;
    }
}

@media screen and (min-width: 768px) {
    .thl-pdt-hot .pdt-item:nth-child(4n + 1) {
        clear: both;
    }
}

@media screen and (min-width: 961px) {
    .pdt-main .pdt-item:nth-child(3n + 1) {
        clear: both;
    }

    .pdt-main .list--new-pdt .pdt-item:nth-child(3n + 1) {
        clear: none;
    }
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{margin: 0;flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}