/* Circle animations */
@keyframes circleScale {
    0%, 100% {
        opacity: 0;
        /*transform: scale(0);*/
    }
    50% {
        opacity: 1;
        /*transform: scale(1);*/
    }
}

#circle-cta-1, #circle-cta-2, #circle-cta-3 {
    transform-origin: center;
    animation: circleScale 3.5s ease-in-out infinite;
}

#circle-cta-2 {
    animation-delay: 0.4s;
}

#circle-cta-3 {
    animation-delay: 0.7s;
}

/* Star animations */
@keyframes starPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

#star-cta-1, #star-cta-2, #star-cta-3 {
    transform-origin: center;
    animation: starPulse 3s ease-in-out infinite;
}

#star-cta-2 {
    animation-delay: 0.3s;
}

#star-cta-3 {
    animation-delay: 0.6s;
}

/* Icon check animation */
@keyframes iconCheckReveal {
    0% {
        clip-path: inset(45% 85% 0 0);
    }
    20%,70%,100% {
        clip-path: inset(0 0 0 0);
    }
}
.cta-short-content .icon-check,
.short-content .icon-check {
    animation: iconCheckReveal 4s ease-in-out infinite;

}

.inner-page:not(.page-template-template-modular) .footer-cta{
    margin-top: 80px;
}
.slide-content.center .slider-video {
    margin: 54px auto 0;
}
.footer-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 32px 0 28px;
}
.slider-video {
    width: 287px;
    height: 48px;
    display: flex;
    position: relative;
    transition: 600ms transform;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}
.slider-video:not(.video-popup)::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #0533E64D;
    position: absolute;
    inset: 0;
    z-index: 2;
}
.slider-video .button-bg {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.slider-video video {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-video:not(.active):not(.video-popup) {
    cursor: pointer;
}
.slider-video.video-popup .video-play {
    pointer-events: none;
}
.video-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 42px;
    padding: 5px;
    border-radius: 14px;
    background: #FFF;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: 3px;
    font-size: 16px;
    color: var(--primary);
    font-variation-settings: "wght" 500, "wdth" 100;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 2;
}
.slider-video:hover .video-play {
    left: calc(100% - 139px);
}
.video-play .play-text {
    margin-left: 18px;
    white-space: nowrap;
    transition: 0.4s ease;
}
.video-play i {
    font-size: 18px;
    transition: transform 0.4s ease;
    opacity: 0;
    transform: scale(0);
}

.video-play:hover .play-text {
    margin-left: -93px;
    opacity: 0;
}

.video-play:hover i {
    transform: scale(1.2);
    opacity: 1;
}



.video-pulse {
    display: flex;
    width: 46px;
    height: 46px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 144px;
    background: #fff;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    z-index: -1;
    opacity: 0.5;
    transition: 0.4s ease;
}

.video-pulse i {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.5;
    animation: pulseAnimation 3s ease-out infinite;
    animation-delay: calc(1s * var(--i));
}

.video-play:hover + .video-pulse {
    opacity: 1;
}

/* Active state */
.slider-video.active {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40%;
    width: auto;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.slider-video.active .video-play {
    display: none;
}
.slider-video.video-popup {
    z-index: 6;
    opacity: 1;
    margin-top: 0;
    border: 10px solid #fff;
    border-radius: 30px;
    /*box-shadow: 0 0 50px 1000px #000000c9;*/

}
.footer-cta .slider-video {
    width: 142px;
}
.footer-cta .slider-video:not(.video-popup) video {
    opacity: 0;
}
.slider-video.video-popup video {
    border-radius: 20px;
}

/* Close button styles */
.video-close {
    position: absolute;
    top: 7px;
    right: 10px;
    z-index: 2;
    color: red;
    cursor: pointer;
}

@keyframes pulseAnimation {
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/************************
        CTA
 *********************/

.cta-main {
    text-align: center;
    margin-top: -160px;
}
.cta-main .hero-btns,
.cta-main .cta-short-content {
    justify-content: center;
}

.cta-short-content i {
    color: var(--primary);
    font-size: 20px;
    margin: 0 1px 0 3px;
}
.cta-short-content {
    display: flex;
    align-items: first baseline;
    gap: 7px;
    font-size: 13px;
    color: rgba(0, 10, 48, 1);
}
.cta-main .section-title .subtitle {
    margin-top: 16px;
}
.cta-icon svg {
    max-width: 418px;
}
.cta-icon {
    text-align: center;
}
.cta-main > .icon-star {
    font-size: 31px;
    color: var(--primary);
    margin-top: 45px;
    display: inline-block;
    animation: fade-star 2s ease-in infinite alternate 0.5s;
}
.footer-cta {
    padding-bottom: 60px;
}

.sec-brands {
    max-width: 80%;
    margin: 0 auto 72px;
    backdrop-filter: blur(24px);
    background: #FFFFFF66;
    padding: 10px;
    border-radius: 24px;
}
.swiper-brands {
    background: #fff;
    padding: 22px 57px;
    position: relative;
    border-radius: 16px;
    background: linear-gradient(white, white) padding-box, linear-gradient(to top, #fff, #f3f3f3) border-box;
    border: 1px solid transparent;
}
.swiper-brands::before, .swiper-brands::after {
    content: '';
    width: 140px;
    height: 80px;
    position: absolute;
    top: 10px;
    z-index: 2;
}
.swiper-brands::before {
    left: 0;
    background: linear-gradient(90deg, #FFF 31.72%, rgba(255, 255, 255, 0) 100%);
}
.swiper-brands::after {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 31.72%, rgba(255, 255, 255, 0) 100%);
}
#footer {
    position: relative;
}
.footer-access {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--color_text);
    text-transform: capitalize;
    font-size: 20px;
}
.footer-socials.mobile-socials {
    display: none;
}
.socials {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials a {
    color: var(--primary);
    display: flex;
    transition: 0.4s ease;
}
.socials a:hover {
    color: #868686;
}
.icon-youtube {
    font-size: 22px;
}
.icon-x {
    font-size: 17px;
}
.status-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.status-button.success {
    background: var(--bg_success);
    color: var(--success);
    border: none;
}
.status-button::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 10px;
}
.status-button.success::before {
    background: var(--success);
}
.status-button.danger::before {
    background: var(--danger);
}
.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 96px;
    gap: 0 30px;
}
.footer-about-wrap {
    /*text-align: center;*/
    margin-bottom: 42px;
}
.footer-logo {
    display: inline-flex;
    margin-bottom: 26px;
}
.footer-about {
    color: #02021E;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: justify;
}
.footer-about-wrap .socials {
    gap: 25px;
    padding: 0 24px;
    justify-content: center;
}
.footer-about-wrap .socials a {
    font-size: 22px;
}
.footer-contact-wrap {
    flex: 0 0 45%;
}
.footer-contact {
    display: grid;
    gap: 20px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}
.footer-end {
    border-top: 1px solid #C0C4DD;
    margin-top: 64px;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
}
.copy-right {
    color: var(--color_main);
    font-size: 14px;
    line-height: 17px;
    font-variation-settings: "wght" 300, "wdth" 100;
}
.socials-wrap {
    margin: 20px 0;
}
.footer-sub-menu ul {
    display: grid;
    gap: 12px;
}
.footer-sub-menu li {
    display: flex;
}
.footer-sub-menu a {
    font-size: 14px;
    line-height: 17px;
    font-variation-settings: "wght" 300, "wdth" 100;
}

.footer-menu-title {
    font-size: 18px;
    line-height: 28px;
    color: var(--color_main);
    margin-bottom: 22px;
    display: block;
}

.footer-menu-wrap {
    flex: 0 0 45%;
}
.footer-end {
    border-top: 1px solid #C0C4DD;
    margin-top: 64px;
}
.ft-shadow-1 {
    background: #0533E636;
    width: 40%;
    height: 51%;
    position: absolute;
    filter: blur(120px);
    right: 0;
    top: 400px;
    z-index: -1;
    animation: move-sh-4 6s alternate ease infinite;
}
.ft-shadow-2 {
    background: #00B1FA33;
    width: 40%;
    height: 60%;
    position: absolute;
    filter: blur(120px);
    left: 20%;
    top: 0;
    z-index: -1;
    box-shadow: 0 29px 50px 50px #00B1FA33;
    animation: move-sh-5 3s alternate ease infinite;
}
.ft-shadow-3 {
    background: #fff;
    width: 30%;
    height: 15%;
    position: absolute;
    filter: blur(120px);
    left:0;
    bottom: 0;
    z-index: -1;
    animation: move-sh-6 4s alternate ease infinite;
}
.site-link {
    border: 1px solid #2737C71A;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 14px;
    font-variation-settings: "wght" 300, "wdth" 100;
    padding-bottom: 1px;
    transition: 0.4s ease;
}
.site-link:hover {
    border-color: var(--primary);
}
.site-link.current {
    font-variation-settings: "wght" 400, "wdth" 100;
}
.other-sites {
    display: flex;
    gap: 12px;
}
@-webkit-keyframes blinker {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}
@media screen and (min-width: 576px) {

}
@media screen and (min-width: 768px) {
    .footer-cta-btns {
        gap: 18px;
    }

}
@media screen and (min-width: 992px) {
    .scroll-up.scroll-btn {
        display: none;
    }
    .footer-contact-wrap {
        flex: 0 0 30%;
    }
    .footer-menu-wrap {
        flex: 0 0 30%;
    }
    .footer-newsletter {
        flex: 0 0 30%;
        margin: 0;
    }
}
@media screen and (min-width: 1200px) {
    .inner-page:not(.page-template-template-modular) .footer-cta{
        margin-top: 144px;
    }

    .footer-about-wrap {
        max-width: 54%;
        text-align: left;
        margin-bottom: 0;
    }
    .footer-about-wrap .socials {
        justify-content: flex-start;
    }
    .footer-about {
        font-size: 16px;
    }
    .footer-menu-wrap {
        flex: 0 0 15%;
        white-space: nowrap;
    }
    .footer-row {
        gap: 0 10px;
    }
}
@media screen and (min-width: 1400px) {
    .footer-menu-wrap {
        flex: 0 0 16%;
    }

    .footer-sub-menu li {
        display: flex;
        white-space: nowrap;
    }
}
@media screen and (max-width: 1399.99px) {
    .footer-menu-wrap {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 991.99px) {

    .copy-right {
        text-align: center;
    }

}

@media screen and (max-width: 767.99px) {
    .video-play {
        width: 136px;
        font-size: 14px;
    }
    .sec-brands {
        max-width: 100%;
        margin: 0 auto 72px;
        padding: 0;
    }
    .swiper-brands {
        padding: 22px 27px;
        border-radius: 14px;
    }
    /*  .ft-shadow-1 {
          background: #0533E62B;
          width: 80vw;
          height: 140vw;
          animation: none;
          left: 0;

          top: 200px;
      }
      .ft-shadow-2 {
          background: #00B1FA33;
          width: 66vw;
          height: 140vw;
          left: 50px;
          top: 600px;
          box-shadow: none;
          animation: none;
      }*/
    #footer {
        position: relative;
        overflow: hidden;
        background-image: radial-gradient(ellipse 200px 300px at 0% 100%, rgba(255, 255, 255, 0.4) 0%, transparent 80%), radial-gradient(ellipse 70vw 140vw at 150px 800px, rgba(0, 177, 250, 0.2) 15%, transparent 80%), radial-gradient(ellipse 80vw 140vw at 100px 400px, rgba(5, 51, 230, 0.21) 10%, transparent 80%);
        background-repeat: no-repeat;
    }
    .ft-shadow-1,
    .ft-shadow-2,
    .ft-shadow-3 {
        display: none;
    }
    .footer-access .footer-socials {
        display: none;
    }
    .footer-row {
        margin-top: 40px;
    }
    .footer-sub-menu li a {
        font-size: 14px;
    }

    .footer-menu-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding: 22px 18px;
    }
    .footer-menu-title::after {
        content: "\e913";
        font-family: 'icomoon';
        font-size: 21px;
        display: inline-block;
        line-height: 1;
        transition: 0.4s ease;
    }
    .footer-menu-title.active::after {
        content: "\e914";
    }

    .footer-menu-wrap {
        display: block;
        flex:0 0 100%;
        position: relative;
        z-index: 3;
        margin-bottom: 18px;
        background: #FFF;
        border-radius: 12px;
    }

    .footer-sub-menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        border-top: 0;
        display: none;
    }

    .footer-sub-menu ul {
        padding: 0 15px 10px 36px;
    }
    .footer-sub-menu li {
        width: 100%;
        padding-bottom: 10px;

    }

    .footer-contact li:not(:last-child) {
        border-bottom: 1px solid #ffffff24;
        margin-bottom: 5px;
    }

    .ft-shadow.right {
        right: 0;
        left: unset;
        max-width: 86%;
        bottom: 24%;
    }
    .ft-shadow.left {
        left: 0;
        bottom: 9%;
        max-width: 94%;
    }
    .footer-end {
        flex-direction: column-reverse;
        align-items: center;
        gap: 24px;
    }
    .site-link {
        width: 33px;
        height: 33px;
    }
    .footer-socials.mobile-socials {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-end {
        border-top: none;
        margin-top: 5px;
    }
    .footer-cta {
        padding-bottom: 56px;
    }

    .slider-video {
        width: calc(100% - 158px);
        height: 48px;
    }
}
@media screen and (max-width: 380px) {
    .btn-newsletter i {
        display: none;
    }
    .btn-newsletter {
        min-width: 140px;
    }
    .cta-main {
        margin-top: -120px;
    }
    .video-play {
        width: 135px;
        font-size: 14px;
    }
}

