.container {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}


@media (min-width: 1201px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


.main {
    display: flex;
    height: 594px;
    padding: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #060620;
    overflow: hidden;
    background-image: url('/wp-content/themes/wow-solutions/assets/img/bg-main.png');

}
.video-main {
    opacity: 0.7;
    z-index: 0;
    width: auto;
}

.main-section {
    display: flex;
    padding: 0px;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    position: absolute;
    top: 160px;
}

.container-main {
    display: flex;
    width: 560px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.main-animations {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.main-text-animation-1 {
    align-self: stretch;
    color: #11C6CC;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #11C6CC;
    font-family: 'Play', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -1.44px;
    line-height: 98%;
    text-transform: uppercase;
}

.main-text-animation-2 {
    align-self: stretch;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #11C6CC;
    font-family: 'Play', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 98%;
    letter-spacing: -1.44px;
    text-transform: uppercase;
    transition: -webkit-text-stroke-color 0.8s ease, -webkit-text-fill-color 0.8s ease;
}

.main-text-animation-2-tab {
    display: none;
}

.main-animations:hover .main-text-animation-2 {
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.text-background-animation {
    background: linear-gradient(to right, #11C6CC 50%, transparent 50%);
    background-size: 201% 100%;
    background-position: right bottom;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.8s ease;
}

.main-animations:hover .text-background-animation{
    background-position: left bottom;
    -webkit-text-stroke-color: transparent;
}

.main-text {
    align-self: stretch;
    color: #C5D7FF;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.button-wrapper {
    position: relative;
    display: inline-block;
    padding: 0px;
}

.shadow-container {
    position: relative;
    border-radius: 75px;
    animation: shadow-rotate 4s linear infinite;
}

.main-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 70px;
    background: #060620;
    border: none;
    color: #0D9499;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
    padding: 0;
    min-width: 300px;
    height: 60px;
    overflow: hidden;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 66px;
    background: #060620;
    text-decoration: none;
    color: #0D9499;
}

.light-track {
    display: none;
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 72px;
    overflow: hidden;
    z-index: 1;
}

.light-track::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: conic-gradient(
            transparent 0%,
            rgba(21, 95, 255, 0.40) 15%,
            transparent 30%,
            transparent 50%,
            rgba(21, 247, 255, 0.40) 65%,
            transparent 80%
    );
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-light 4s linear infinite;
    filter: brightness(1.3);
}

/* Синхронизированные анимации */
@keyframes rotate-light {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes shadow-rotate {
    0%, 100% {
        box-shadow:
                -4px 1px 6px 0px rgba(21, 247, 255, 0.40),
                6px 2px 12px 0px rgba(21, 95, 255, 0.40);
    }
    25% {
        box-shadow:
                0px -4px 6px 0px rgba(21, 247, 255, 0.40),
                0px 3px 6px 0px rgba(21, 95, 255, 0.40);
    }
    50% {
        box-shadow:
                4px 1px 6px 0px rgba(21, 247, 255, 0.40),
                -3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    }
    75% {
        box-shadow:
                0px 4px 6px 0px rgba(21, 247, 255, 0.40),
                0px -3px 6px 0px rgba(21, 95, 255, 0.40);
    }
}

.main-button:hover .button-content, .main-button:hover .button-content svg path {
    color: #15F7FF;
    fill: #15F7FF;
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: -50px;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 32, 0.86);
}

.modal-contacts-content {
    display: flex;
    margin: 100px auto;
    position: relative;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: #ffffff;
    max-width: 480px;
    width: calc(100% - 32px);
}

.modal-contacts-content-work {
    margin: 70px auto;
}

.modal-contacts-content::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background:
            linear-gradient(138deg, rgba(21, 95, 255, 0.00) 60.79%, #155FFF 91.71%),
            linear-gradient(141deg, #15F7FF 16.02%, rgba(21, 247, 255, 0.00) 42.59%);
    border-radius: 26px; /* больше на 2px */
}

@keyframes modalFade {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal, .close-modal-work {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #C4C5C9;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover, .close-modal-work:hover {
    color: #15F7FF;
}

.modal-contacts-form-title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 32px;
}

.modal-contacts-form-inputs {
    display: flex;
    width: 399px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.modal-contacts-form-inputs .contacts-form-name, .modal-contacts-form-inputs .contacts-form-phone {
    display: flex;
    height: 54px;
    padding: 16px;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    border-radius: 70px;
    border: 1px solid #417DFF;
    background: #ffffff;
    color: #3E4450!important;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}



.modal-contacts-form-inputs .contacts-form-name::placeholder, .modal-contacts-form-inputs .contacts-form-phone::placeholder, .modal-contacts-form-inputs .contacts-form-text::placeholder {
color: #999CA2!important;
}

.modal-contacts-form-inputs .contacts-form-name:placeholder-shown, .modal-contacts-form-inputs .contacts-form-phone:placeholder-shown, .modal-contacts-form-inputs .contacts-form-text:placeholder-shown {
    border: 1px solid #9ABAFF;
}

.modal-contacts-form-inputs .contacts-form-name:hover, .modal-contacts-form-inputs .contacts-form-phone:hover, .modal-contacts-form-inputs .contacts-form-text:hover {
    border: 1px solid #6E9CFF;
    color: #999CA2!important;
}

.modal-contacts-form-inputs .contacts-form-name:hover::placeholder, .modal-contacts-form-inputs .contacts-form-phone:hover::placeholder, .modal-contacts-form-inputs .contacts-form-text:hover::placeholder {
    color: #999CA2!important;
}

.modal-contacts-form-inputs .contacts-form-name:focus, .modal-contacts-form-inputs .contacts-form-phone:focus, .modal-contacts-form-inputs .contacts-form-text:focus {
    outline: none;
    border: 1px solid #9ABAFF!important;
    box-shadow: -4px -4px 4px 0px rgba(21, 95, 255, 0.12), 0px 4px 12px 0px rgba(21, 247, 255, 0.34)!important;
    color: #3E4450!important;
}

.modal-contacts-form-inputs input:invalid,
.modal-contacts-form-inputs textarea:invalid {
    border: 1px solid #BD3336!important;
    color: #711F20!important;
}

.modal-contacts-form-inputs input:invalid::placeholder,
.modal-contacts-form-inputs textarea:invalid::placeholder {
    color: #711F20!important;
}

.modal-contacts-form-inputs .contacts-form-text {
    display: flex;
    height: 100px;
    padding: 16px;
    align-items: flex-start;
    gap: 0px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #417DFF;
    background: #ffffff;
    color: #3E4450!important;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    resize: none;
}

.mcf-button-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 16px 0px 0px 0px;
}

.mcf-shadow-container {
    position: relative;
    border-radius: 75px;
    animation: shadow-rotate 4s linear infinite;
}

.modal-contacs-form-button {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 70px;
    background: #060620;
    border: none;
    color: #0D9499;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
    padding: 0;
    min-width: 200px;
    height: 60px;
    overflow: hidden;
    z-index: 2;
}

.mcf-button-content {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 66px;
    background: #060620;
    z-index: 3;
}

.mcf-light-track {
    display: none;
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 72px;
    overflow: hidden;
    z-index: 1;
}

.mcf-light-track::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: conic-gradient(
            transparent 0%,
            rgba(21, 95, 255, 0.40) 15%,
            transparent 30%,
            transparent 50%,
            rgba(21, 247, 255, 0.40) 65%,
            transparent 80%
    );
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-light 4s linear infinite;
    filter: brightness(1.3);
}

.modal-contacs-form-button:hover .mcf-button-content, .mcf-button-content:hover svg path {
    color: #15F7FF;
    fill: #15F7FF;
}

/* Анимации (общие, можешь оставить их одними в проекте) */
@keyframes rotate-light {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes shadow-rotate {
    0%, 100% {
        box-shadow:
                -4px 1px 6px 0px rgba(21, 247, 255, 0.40),
                6px 2px 12px 0px rgba(21, 95, 255, 0.40);
    }
    25% {
        box-shadow:
                0px -4px 6px 0px rgba(21, 247, 255, 0.40),
                0px 3px 6px 0px rgba(21, 95, 255, 0.40);
    }
    50% {
        box-shadow:
                4px 1px 6px 0px rgba(21, 247, 255, 0.40),
                -3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    }
    75% {
        box-shadow:
                0px 4px 6px 0px rgba(21, 247, 255, 0.40),
                0px -3px 6px 0px rgba(21, 95, 255, 0.40);
    }
}


.about_us {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    background: #060620;
    position: relative;
}

.container_abouts_us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 0px;
}

.about_us_title {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.about_us_text {
    align-self: stretch;
    color: #F3F7FF;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.about_us_cards {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.about_us_card {
    position: relative;
    display: flex;
    height: 328px;
    min-width: 280px;
    padding: 56px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex: 1 0 0;
    border-radius: 16px;
    background: radial-gradient(50% 50% at 50% 50%, #0A1E4A 0%, #060620 100%),
    linear-gradient(237deg, #060620 0%, #00030E 96.91%);
    box-shadow: -4px 1px 6px 0px rgba(21, 247, 255, 0.40), 3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.4s ease;
}
.about_us_card:hover {
    box-shadow: 0px 4px 6px 0px rgba(21, 247, 255, 0.40), 0px 4px 6px 0px rgba(21, 95, 255, 0.40);
    transform: translate(-2px, -2px);
}

.about_us_card_title {
    align-self: stretch;
    color: #F3F7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.about_us_card_text {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.metrics {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    background: #060620;
}

.metrics-container {
    display: flex;
    padding: 16px 0px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    border-radius: 0px;
}

.metrics-cards {
    display: flex;
    min-width: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    background: #060620;
}

.metric-card {
    display: flex;
    height: 62px;
    padding: 0px 119.47px 0px 114.53px;
    align-items: center;
    align-self: stretch;
}

.metric-card-title {
    color: #15F7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

.metric-card-text {
    color: #C5D7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.our_clients {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    background: #FFF;
}

.our_clients_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.our_clients_title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.our-clients-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.our-clients-carousel-track {
    display: flex;
    will-change: transform;
    width: max-content;
}

.our-clients-partner-logo {
    flex: 0 0 264px;
    width: 264px;
    height: 150px;
    display: flex;
    padding: 0 37px;
    justify-content: center;
    align-items: center;
    background: #FFF;
    box-shadow: 0px 0px 16px 0px rgba(6, 6, 32, 0.04);
}
.solutions {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    background: #060620;
}

.solutions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 0px;
}

.solution-title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.solution-title {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.solution-text {
    align-self: stretch;
    color:#C5D7FF;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.solutions-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.solution-card {
    display: flex;
    width: 360px;
    height: 360px;
    padding: 56px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 16px;
    background: var(--gradient-background-card, radial-gradient(50% 50% at 50% 50%, #0A1E4A 0%, #060620 100%), linear-gradient(237deg, #060620 0%, #00030E 96.91%));
    position: relative;
    overflow: hidden;
}

.solution-card-title {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.solution-card-animation {
    width: 100%;
    height: 195px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(8, 38, 102, 0.00) 0%, rgba(8, 38, 102, 0.60) 50%, #082666 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: 24px;
}

.img-solution-card {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease-out;
}

.solution-card:hover .img-solution-card {
    transform: scale(0.7);
}

.solution-card:hover .solution-card-animation {
    transform: translateY(0);
}

.solution-card-button {
    transition: transform 0.3s ease-out;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #0D9499;
    text-decoration: none;
}
.solution-button-hover {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.solution-button-hover:hover .solution-card-button, .solution-button-hover:hover .svg-solution-button path, .solution-button-hover:hover {
    color: #15F7FF;
    cursor: pointer;
    fill: #15F7FF;
}

.expertise {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    align-self: stretch;
    background-image: url('/wp-content/themes/wow-solutions/assets/img/bg-expertise.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.expertise-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}

.expertise-title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.expertise-text {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.expertises-cards {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.expertise-card {
    display: flex;
    min-width: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
}

.expertise-card-title {
    height: 68px;
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.expertise-card-text {
    align-self: stretch;
    color: #3E4450;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.niches {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    align-self: stretch;
    background: #060620;
}

.niches-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.niches-title {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.niches-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.niches-card {
    display: flex;
    justify-content: center;
    width: 166px;
    height: 116px;
    padding: 16px 12px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 8px;
    background: #060620;
    box-shadow: -4px 1px 6px 0px rgba(21, 247, 255, 0.40), 3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    transition: box-shadow 0.3s ease;
}

.niches-card:hover {
    animation: shadowAnimation 2.5s ease-in-out infinite;
}

@keyframes shadowAnimation {
    0% {
        box-shadow: -4px 1px 6px 0px rgba(21, 247, 255, 0.40), 3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    }
    25% {
        box-shadow: 0px -4px 6px 0px rgba(21, 247, 255, 0.40), 0px 5px 6px 0px rgba(21, 95, 255, 0.40);
    }
    50% {
        box-shadow: 4px 1px 6px 0px rgba(21, 247, 255, 0.40), -4px 1px 6px 0px rgba(21, 95, 255, 0.40);
    }
    75% {
        box-shadow: 0px 4px 6px 0px rgba(21, 247, 255, 0.40), 0px 4px 6px 0px rgba(21, 95, 255, 0.40);
    }
    100% {
        box-shadow: -4px 1px 6px 0px rgba(21, 247, 255, 0.40), 3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    }
}

.niches-card-text {
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.projects {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    align-self: stretch;
    background: #FFF;
}

.projects-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    align-self: stretch;
}

.projects-title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.projects-cards {
    display: flex;
    align-items: flex-end;
    align-content: center;
    justify-content: space-between;
    gap: 56px 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.project-card {
    display: flex;
    width: 552px;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.project-card-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.project-card-block-all-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.project-card-block-all-text-box {
    display: flex;
    padding: 4px 10px;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #417DFF;
}

.project-card-block-all-text-box-text {
    color: #6B7079;
    font-family: 'Proxima Nova';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.project-card-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: #0D3999;
    font-family: 'Play', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.project-button-container {
    display: flex;
    height: 44px;
    padding: 12px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.project-button {
    color: #0D9499;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.project-button-container:hover .project-button, .project-button-container:hover .projects-button-svg path{
    color: #15F7FF;
    fill: #15F7FF;
    cursor: pointer;
}

.projects-button-svg:hover {
    cursor: pointer;
}

.project-card-animation {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card-animation img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.project-card-button-block {
    position: absolute;
    display: flex;
    width: 90px;
    height: 44px;
    padding: 12px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    z-index: 3;
    bottom: -50px;
    transition: bottom 0.4s ease-out;
}

.project-card-button {
    color: #0D9499;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.project-card-button-block:hover, .project-card-button-block:hover .project-card-button, .project-card-button-block:hover .project-card-button-svg path{
    color: #15F7FF;
    cursor: pointer;
    fill: #15F7FF;
}

.project-card-animation-hover {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: bottom 0.5s ease-out;
}

.project-card-animation:hover .project-card-button-block {
    bottom: 4px;
}
.project-card-animation:hover .project-card-animation-hover {
    bottom: 85px;
}

.project-card-animation:hover .svg-project-card-animation {
    opacity: 0.8;
}

.project-card-animation-hover-box {
    position: relative;
}

.svg-project-card-animation {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    bottom: -2%;
}

.project-card-animation-hover-all-text {
    display: flex;
    width: 448px;
    height: 123px;
    padding: 0px 8px;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 31%;
    right: 0%;
}

.project-card-animation-hover-title {
    width: 314px;
    color: #F3FFFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.project-card-animation-hover-text-box {
    display: flex;
    height: 67px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
}

.project-card-animation-hover-number-text {
    display: flex;
    align-items: center;
    gap: 17px;
    position: absolute;
    right: 17px;
    padding-left: 48px;
}

.project-card-animation-hover-number {
    text-shadow: 2px 2px 12px rgba(35, 214, 221, 0.24);
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #15F7FF;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    line-height: 140%;
    text-transform: capitalize;
}

.project-card-animation-hover-text {
    color: #11C6CC;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.our-partners {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    background: #FFF;
}

.our-partners-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.our-partners-title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.our-partners-block {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
}

.our-partners-card {
    display: flex;
    max-width: 500px;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.our-partners-card-all-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

.our-partners-card-name {
    align-self: stretch;
    color: #082666;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.our-partners-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.our-partners-card-speciality-title {
    align-self: stretch;
    color: #999CA2;
    font-family:  'Play', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.our-partners-card-speciality-text {
    align-self: stretch;
    color: #3E4450;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.our-partners-card-speciality-text p {
    margin: 0px;
}

.our-partners-img {
    fill: lightgray;
    stroke-width: 4px;
    stroke: rgba(21, 95, 255, 0.00);
    aspect-ratio: 10/11;
    width: 200px;
}

.our-partners-navigation-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.our-partners-navigation-div {
    width: 15%;
}

.our-partners-navigation-galery {
    display: flex;
    align-items: center;
    gap: 2px;
}

.our-partners-buttons {
    display: flex;
    padding: 12px 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.our-partners-button-text {
    color: #0D9499;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.our-partners-buttons:hover {
    cursor: pointer;
}

.our-partners-buttons:hover .our-partners-button-text, .our-partners-buttons:hover .our-partners-button-svg path {
    cursor: pointer;
    color: #15F7FF;
    fill: #15F7FF;
}

.our-partners-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
}

.our-partners-card-main {
    display: flex;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.our-partners-card-gradient {
    width: 100%;
    height: 100%;
    padding: 1px;
    z-index: 1;
    transition: background 0.3s ease;
}

.our-partners-card-hover {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 0px 22px;
    box-sizing: border-box;
    transition: right 0.5s ease;
    z-index: 2;
}

.our-partners-card-excerpt {
    overflow: hidden;
    color: #3E4450;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0;
    transition: all 0.3s ease;
}

.our-partners-card-button {
    display: flex;
    padding: 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s ease 0.4s;
}

.our-partners-card-button-text {
    color: #0D9499;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.our-partners-card-button:hover .our-partners-card-button-text, .our-partners-card-button:hover .our-partners-card-button-svg path {
    cursor: pointer;
    color: #15F7FF;
    fill: #15F7FF;
}

.our-partners-card-button:hover {
    cursor: pointer;
}

.our-partners-card:hover .our-partners-card-gradient {
    background: linear-gradient(138deg, rgba(21, 95, 255, 0.00) 60.79%, #155FFF 91.71%), linear-gradient(141deg, #15F7FF 16.02%, rgba(21, 247, 255, 0.00) 42.59%);
}

.our-partners-card:hover .our-partners-card-hover {
    right: 0;
}

.our-partners-card:hover .our-partners-card-excerpt,.our-partners-card:hover .our-partners-card-button{
    opacity: 1;
}

.our-partners-slider {
    width: 100%;
    margin: 0 auto;
}

.our-partners-slider .slick-list {
    padding: 20px 0;
}

.our-partners-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.our-partners-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}

.slick-initialized .slick-slide {
    display: flex!important;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 42px;
    background:  #C5D7FF;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 24px;

}

.slick-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #C5D7FF;
    padding: 0px;
    margin: 0px;
}
.slick-dots li {
    display: flex;
    border-radius: 42px;
}

.CEO {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-image: url('/wp-content/themes/wow-solutions/assets/img/bg-ceo.png');
    background-size: cover;
}

.CEO-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.CEO-title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.CEO-title {
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.CEO-text {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.CEO-contents {
    display: flex;
    align-items: center;
    gap: 24px;
}

.CEO-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    flex: 1 0 0;
    align-self: stretch;
}

.CEO-content-card {
    display: flex;
    padding: 0px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.CEO-content-icon {
    display: flex;
    width: 28px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.CEO-icon {
    width: 24px;
    height: 28px;
    transform: rotate(-5deg);
    aspect-ratio: 6/7;
    fill: #041333;
    filter: drop-shadow(3px 1px 6px rgba(21, 95, 255, 0.40))
    drop-shadow(-4px 1px 6px rgba(21, 247, 255, 0.40));
    transition: filter 0.5s ease;
}

.CEO-content-card:hover .CEO-icon {
    animation: shadowCycle 1.22s infinite;
}

.CEO-content-card:hover .CEO-content-text {
    color: #fff;
    cursor: default;
transform: translateY(-2px);
}

@keyframes shadowCycle {
    0% {
        filter: drop-shadow(3px 1px 6px rgba(21, 95, 255, 0.40))
        drop-shadow(-4px 1px 6px rgba(21, 247, 255, 0.40));
    }
    25% {
        filter: drop-shadow(0px 5px 6px rgba(21, 95, 255, 0.40))
        drop-shadow(0px -4px 6px rgba(21, 247, 255, 0.40));
    }
    50% {
        filter: drop-shadow(-4px 1px 6px rgba(21, 95, 255, 0.40))
        drop-shadow(4px 1px 6px rgba(21, 247, 255, 0.40));
    }
    75% {
        filter: drop-shadow(0px 4px 6px rgba(21, 95, 255, 0.40))
        drop-shadow(0px 4px 6px rgba(21, 247, 255, 0.40));
    }
    100% {
        filter: drop-shadow(3px 1px 6px rgba(21, 95, 255, 0.40))
        drop-shadow(-4px 1px 6px rgba(21, 247, 255, 0.40));
    }
}

.CEO-content-text {
    flex: 1 0 0;
    color: #C4C5C9;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition: all 0.3s ease;
}

.ceo-img-card {
    position: relative;
    width: 552px;
    height: 605px;
    flex-shrink: 0;
    aspect-ratio: 552/605;
    overflow: hidden;
}

.ceo-img-background-1 {
    position: absolute;
    z-index: 1;
    bottom: 0%;
    transition: z-index 0.3s ease-out;
}

.ceo-img-background-2 {
    position: absolute;
    z-index: 0;
    bottom: 0%;
    transition: z-index 0.3s ease-out;
}

/* Анимация при наведении */
.ceo-img-card:hover .ceo-img-background-1 {
   z-index: 0;
}

.ceo-img-card:hover .ceo-img-background-2 {
    z-index: 1;
}

.CEO-img {
    position: absolute;
    z-index: 2;
    width: 552px;
    height: 605px;
    flex-shrink: 0;
    aspect-ratio: 552/605;
}

.CEO-link-block {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.CEO-name {
    color:  #F3F7FF;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    text-decoration: none;
}

.CEO-name-icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    fill: #FFF;
}

.CEO-link-block:hover .CEO-name, .CEO-link-block:hover .CEO-name-icon path {
    color: #15F7FF;
    fill: #15F7FF;
}

.steps {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    background: #FFF;
}

.steps-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.steps-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.steps-title-title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
}

.steps-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}

.steps-card {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    gap: 24px 16px;
    background: #FFF;
}

.steps-number {
    display: flex;
    width: 109px;
    height: 109px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background:  #FFF;
    transition: all 0.3s ease;
}

.steps-card:hover .steps-number {
    border-radius: 5000px;
    box-shadow: 0px -4px 6px 0px rgba(21, 247, 255, 0.40), 0px 5px 6px 0px rgba(21, 95, 255, 0.40);
    cursor: default;

}

.steps-card:hover .steps-number-text {
    transform: translateY(-2px);
}

.steps-number-text {
    align-self: stretch;
    color: #11C6CC;
    text-align: center;
    font-family: 'Play';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.steps-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.steps-content-title {
    align-self: stretch;
    color: #082666;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.steps-card:hover .steps-content-title {
    transform: translateY(-2px);
}

.steps-card:hover .steps-content-text {
    transform: translateY(-2px);
}

.steps-content-text {
    align-self: stretch;
    color: #3E4450;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition: all 0.3s ease;
}

.feedback {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    background-image: url('/wp-content/themes/wow-solutions/assets/img/bg-feedback.png');
    background-size: cover;
}

.feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

.feedback-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.feedback-title-title {
    align-self: stretch;
    color: #FFF;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Play;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.feedback-cards {
    display: flex;
    width: 100%;
    height: 400px;
    align-items: center;
    gap: 40px;
}

.feedback-card {
    display: flex;
    width: 1128px;
    height: 400px;
    padding: 32px 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    position: absolute;
    border-radius: 16px;
    background:
            linear-gradient(to right, #0A1E4A 0%, #060620 50%),
            linear-gradient(237deg, #060620 0%, #00030E 96.91%);

}

.feedback-info-company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.feedback-info-company-img {
    width: 200px;
    height: 200px;
    aspect-ratio: 1/1;
    border-radius: 0px;
}

.feedback-info-company-title {
    align-self: stretch;
    color: #C5D7FF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.feedback-info-company-text {
    width: 75%;
    flex-shrink: 0;
    color: #FFF;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.niches-navigation-galery,
.feedback-navigation-galery {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Дополнительные стили для слайдера */
.feedback-slider {
    width: 100%;
    position: relative;
}

.feedback-card {
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feedback-card.slick-active {
    opacity: 1;
}

.feedback-card-content {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 32px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 42px;
    background: #C5D7FF;
    border: none;
    padding: 0;
    cursor: pointer;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.slick-active .slider-dot {
    width: 24px;
    background: #C5D7FF;
}

.contacts {
    display: flex;
    padding: 56px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: var(--gradient-white-background-card, linear-gradient(112deg, rgba(255, 255, 255, 0.02) 0.07%, rgba(255, 255, 255, 0.86) 99.11%), lightgray 0px -243.216px / 100% 133.257% no-repeat);
    background-image: url('/wp-content/themes/wow-solutions/assets/img/bg-contact.png');
    background-size: cover;
}

.contacts-content {
    display: flex;
    padding: 72px 40px;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.80);
}

.contacts-title-text {
    display: flex;
    padding: 24px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex: 1 0 0;
    border-radius: 8px;
}

.contacts-title {
    align-self: stretch;
    color: #082666;
    font-family: 'Play', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-transform: capitalize;
    max-width: 340px;
}

.contacts-text {
    align-self: stretch;
    color: #3E4450;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.contacts-form {
    display: flex;
    width: 479px;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: 24px;
    background: #FFF;
    backdrop-filter: blur(33px);
}

.contacts-form-title {
    align-self: stretch;
    color: #082666;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    padding-bottom: 32px;
}

.cf-button-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 16px 0px 0px 0px;
}

.cf-shadow-container {
    width: 100%;
    position: relative;
    border-radius: 75px;
    animation: cf-shadow-rotate 4s linear infinite;
}

.contacs-form-button {
    width: 100%;
    justify-content: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 70px;
    background: #060620;
    border: none;
    color: #0D9499;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    cursor: pointer;
    padding: 0;
    min-width: 200px;
    height: 60px;
    overflow: hidden;
    z-index: 2;
}

.cf-button-content {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 66px;
    background: #060620;
    z-index: 3;
}

.cf-border-animation {
    display: none;
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 72px;
    overflow: hidden;
    z-index: 1;
}

.cf-border-animation::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: conic-gradient(
            transparent 0%,
            #15F7FF 15%,
            transparent 30%,
            transparent 50%,
            #155FFF 65%,
            transparent 80%
    );
    transform: translate(-50%, -50%) rotate(0deg);
    animation: cf-rotate 4s linear infinite;
    filter: brightness(1.3);
}

@keyframes cf-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes cf-shadow-rotate {
    0%, 100% {
        box-shadow:
                -4px 1px 6px #15F7FF,
                3px 1px 6px #003fc8 ;
    }
    25% {
        box-shadow:
                0px -4px 6px #15F7FF,
                0px 3px 6px #003fc8;
    }
    50% {
        box-shadow:
                4px 1px 6px #15F7FF,
                -3px 1px 6px #003fc8;
    }
    75% {
        box-shadow:
                0px 4px 6px #15F7FF,
                0px -3px 6px #003fc8;
    }
}

.contacs-form-button:hover .cf-button-content, .contacs-form-button:hover svg path {
    color: #15F7FF;
    fill: #15F7FF;
}


.contacts-form-inputs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.contacts-form-inputs .contacts-form-name, .contacts-form-inputs .contacts-form-phone {
    display: flex;
    height: 54px;
    padding: 16px;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    border-radius: 70px;
    border: 1px solid #417DFF;
    background: #FFF;
    color: #3E4450!important;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.contacts-form-inputs .contacts-form-name::placeholder, .contacts-form-inputs .contacts-form-phone::placeholder, .contacts-form-inputs .contacts-form-text::placeholder {
    color: #999CA2 !important;
}

.contacts-form-name:placeholder-shown,.contacts-form-phone:placeholder-shown, .contacts-form-text:placeholder-shown {
    border: 1px solid #9ABAFF;
}

.contacts-form-inputs .contacts-form-name:hover,.contacts-form-inputs .contacts-form-phone:hover ,.contacts-form-inputs .contacts-form-text:hover {
    border: 1px solid #6E9CFF;
    color: #999CA2!important;
}

.contacts-form-inputs .contacts-form-name:hover::placeholder, .contacts-form-inputs .contacts-form-phone:hover::placeholder, .contacts-form-inputs .contacts-form-text:hover::placeholder {
    color: #999CA2!important;
}


.contacts-form-inputs .contacts-form-name:focus, .contacts-form-inputs .contacts-form-phone:focus, .contacts-form-inputs .contacts-form-text:focus {
    outline: none;
    box-shadow: -4px -4px 4px 0px rgba(21, 95, 255, 0.12), 0px 4px 12px 0px rgba(21, 247, 255, 0.34)!important;
    color: #3E4450!important;
}

.contacts-form-inputs input:invalid,
.contacts-form-inputs textarea:invalid {
    border: 1px solid #BD3336;
    color: #711F20!important;
}

.contacts-form-inputs input:invalid::placeholder,
.contacts-form-inputs textarea:invalid::placeholder {
    color: #711F20!important;
}

.contacts-form-inputs .contacts-form-text {
    display: flex;
    height: 100px;
    padding: 16px;
    align-items: flex-start;
    gap: 0px;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #9ABAFF;
    background: #FFF;
    resize: none;
}

.about_us_cards-tab {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.about_us_card-tab {
    position: relative;
    display: flex;
    min-width: 280px;
    height: 288px;
    padding: 32px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--gradient-background-card, radial-gradient(50% 50% at 50% 50%, #0A1E4A 0%, #060620 100%), linear-gradient(237deg, #060620 0%, #00030E 96.91%));
    box-shadow: -4px 1px 6px 0px rgba(21, 247, 255, 0.40), 3px 1px 6px 0px rgba(21, 95, 255, 0.40);
    overflow: hidden;
    z-index: 0;
}

.about_us_card-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(320deg, rgba(21, 247, 255, 0.00) 79.47%, #15F7FF 95.56%), linear-gradient(145deg, rgba(21, 95, 255, 0.00) 71.55%, #155FFF 97.06%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    pointer-events: none;
}


.about_us_card_title-tab {
    align-self: stretch;
    color: #F3F7FF;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.about_us_card_text-tab {
    align-self: stretch;
    color: #C5D7FF;
    text-align: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.CEO-contents-tab {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.CEO-content-tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    align-self: stretch;
    padding: 80px 0px;
}


.ceo-img-card-tab {
    position: relative;
    width: 552px;
    height: 605px;
    flex-shrink: 0;
    aspect-ratio: 552/605;
    overflow: hidden;
    display: none;
}

.CEO-img-tab {
    width: 552px;
    height: 605px;
    flex-shrink: 0;
    aspect-ratio: 552/605;
}

.our-partners-buttons-mob {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.our-partners-buttons-mob:hover .solution-card-button, .our-partners-buttons-mob:hover .svg-solution-button path {
    color: #15F7FF;
    fill: #15F7FF;
}
.modal-contacts-form-inputs .intl-tel-input .country-list,
.contacts-form-inputs .intl-tel-input .country-list {
    z-index: 3;
    width: 399px;
    border-radius: 25px;
    border: 1px solid #9ABAFF;
}
.modal-contacts-form-inputs .intl-tel-input .selected-flag .iti-arrow,
.contacts-form-inputs .intl-tel-input .selected-flag .iti-arrow {
    right: 0;
}
@media only screen and (max-width: 1200px) {

    .main-section {
        top: 140px;
    }
    
    .about_us_card-tab::before {
        display: none;
        position: relative;
    }
    .our-partners-card-all-text {
        gap: 0px;
        justify-content: space-between;
        padding: 20px 0px;
    }

    .our-partners-buttons-mob {
        display: flex;
        padding-left: 4px;
    }

    .video-main {
        width: auto;
    }

    .container-main {
        gap: 24px;
    }

    .about_us {
        padding: 32px 0px;
    }

    .about_us_title {
        font-size: 40px;
    }

    .about_us_cards {
        display: none;
    }

    .about_us_cards-tab {
        display: flex;
    }

    .metrics {
        padding: 32px 0px;
    }

    .metrics-container {
        flex-direction: column;
        align-items: center;
        align-content: center;
        gap: 40px;
    }

    .our_clients {
        padding: 32px 0px;
    }

    .our_clients_title {
        font-size: 40px;
    }

    .solutions {
        padding: 32px 0px;
    }

    .solution-title {
        font-size: 40px;
    }

    .solution-card {
        padding: 32px 20px;
        gap: 20px;
    }

    .solution-card-button {
        font-size: 22px;
    }

    .solution-card:hover .img-solution-card {
        transform: scale(1);
    }

    .solution-card-animation {
        transform: translateY(0);
        height: 85px;
        bottom: -15px;
    }

    .solutions-container {
        gap: 12px;
    }

    .expertise {
        padding: 32px 0px;
    }

    .expertise-container {
        gap: 24px;
    }

    .expertise-title {
        font-size: 40px;
    }

    .expertise-card-text {
        font-size: 16px;
    }

    .expertises-cards {
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    .expertise-card-title {
        height: auto;
    }

    .niches {
        padding: 32px 0px;
    }

    .niches-title {
        font-size: 40px;
    }

    .niches-card-text {
        font-size: 16px;
    }

    .niches-card {
        width: 200px;
        height: 116px;
        min-width: 140px;
        max-width: 200px;
        pointer-events: none;
    }

    .niches-cards {
        gap: 20px;
    }

    .projects {
        padding: 32px 0px;
    }

    .projects-title {
        display: none;
    }

    .project-card {
        width: 666px;
        align-items: flex-start;
        border-radius: 8px;
        background: #FFF;
        padding: 20px 16px;
        box-shadow: 0px 0px 16px 0px rgba(6, 6, 32, 0.08);
    }

    .projects-cards {
        align-items: center;
        align-content: center;
        gap: 32px 0px;
        justify-content: center;
    }

    .project-card-title {
        font-size: 28px;
    }

    .project-card-button {
        font-size: 22px;
    }

    .svg-project-card-animation {
        display: none;
    }

    .project-card-button-block {
        bottom: -8px;
        left: -7px;
    }

    .project-card-animation img {
        transition: none !important;
        transform: none !important;
    }

    .project-card-animation:hover .project-card-button-block {
        bottom: -8px;
        left: -7px;
    }

    .projects-container {
        align-items: center;
        gap: 20px;
    }

    .projects-button-svg {
        display: none
    }

    .our-partners {
        padding: 32px 0px;
    }

    .our-partners-title {
        font-size: 40px;
    }

    .our-partners-card-speciality-text {
        font-size: 14px;
    }

    .our-partners-card {
        height: 222px;
        max-width: none;
    }

    .our-partners-card-hover {
        display: none;
    }

    .our-partners-card-gradient {
        background: linear-gradient(138deg, rgba(21, 95, 255, 0.00) 60.79%, #155FFF 91.71%), linear-gradient(141deg, #15F7FF 16.02%, rgba(21, 247, 255, 0.00) 42.59%);
    }

    .our-partners-slider .slick-slide {
        padding: 0 4px;
    }

    .our-partners-card-name, .our-partners-card-speciality-title, .our-partners-card-speciality-text {
        padding-left: 4px;
    }

    .CEO {
        padding: 32px 0px;
    }

    .CEO-title {
        font-size: 40px;
    }

    .CEO-contents {
        display: none;
    }

    .ceo-img-card-tab {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .CEO-contents-tab {
        display: flex;
    }

    .CEO-container {
        gap: 32px;
    }

    .CEO-content-text {
        font-size: 16px;
    }

    .steps {
        padding: 32px 0px;
    }

    .steps-title-title {
        font-size: 40px;
    }

    .steps-content-text {
        font-size: 16px;
    }

    .steps-container {
        gap: 24px;
        pointer-events: none;
        width: auto;
    }

    .steps-wrap {
        gap: 20px;
        align-items: flex-start;
    }

    .steps-card {
        width: auto;
        height: auto;
        padding: 16px 20px;
        gap: 20px;
    }

    .steps-number {
        border-radius: 5000px;
        box-shadow: 0px -4px 6px 0px rgba(21, 247, 255, 0.40), 0px 5px 6px 0px rgba(21, 95, 255, 0.40);
    }

    .feedback {
        padding: 32px 0px;
    }

    .feedback-title-title {
        font-size: 40px;
    }

    .feedback-info-company-text {
        font-size: 16px;
        width: 100%;
    }

    .feedback-info-company-title {
        font-size: 14px;
    }

    .feedback-card-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feedback-info-company {
        gap: 20px;
    }

    .feedback-cards {
        height: auto;
    }

    .contacts {
        padding: 32px 0px;
    }

    .contacts .container {
        display: flex;
        justify-content: center;
    }

    .contacts-content {
        background: #fff;
        display: flex;
        width: 486px;
        padding: 32px 0px;
        align-items: center;
        align-content: center;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contacts-title {
        font-size: 40px;
        text-align: center;
        max-width: max-content;
    }

    .contacts-text {
        text-align: center;
    }

    .contacts-form-inputs .contacts-form-name, .contacts-form-inputs .contacts-form-phone,.contacts-form-inputs .contacts-form-text {
        font-size: 14px;
    }

    .contacts-title-text {
        padding: 0px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        flex: 1 0 0;
    }

    .contacts-form {
        padding: 12px 24px;
        gap: 20px;
    }

    .main-text-animation-2 {
        display: none;
    }
     .main-text-animation-2-tab {
         display: flex;
         color: #FFF;
         font-family: 'Play', sans-serif;
         font-size: 72px;
         font-style: normal;
         font-weight: 700;
         line-height: 98%;
         letter-spacing: -1.44px;
         text-transform: uppercase;
         background: #11C6CC;
     }

     .CEO-content-card {
         pointer-events: none;
     }

    .CEO-link-block:hover .CEO-name, .CEO-link-block:hover .CEO-name-icon path {
        color: #15F7FF;
        fill: #15F7FF;
    }

    .contacts-form-inputs .contacts-form-name,     .contacts-form-inputs .contacts-form-phone,.contacts-form-inputs .contacts-form-text, .wpcf7 {
        width: 100%;
    }

    .feedback-card slick-slide .slick-current .slick-active {
        width: auto;
    }

    .project-card-button,  .project-card-button-svg path, .solution-card-button, .svg-solution-button path, .projects-button-svg path, .project-button, .our-partners-button-svg path, .our-partners-button-text {
        cursor: pointer;
    }

}

.our-partners-img-mob {
    display: none!important;
    height: 290px;
    width: 290px;
}

@media only screen and (max-width: 991.98px) {
.solutions-cards {
    justify-content: center;

}
    .project-card-animation-hover {
        display: none;
    }
}

@media only screen and (max-width: 767.98px) {
    .our-partners-navigation-div {
        width: unset;
    }

    .modal-contacts-content {
        margin: 125px auto
    }

    .our-partners-navigation-block {
        flex-direction: column;
        gap: 12px;
    }

    .our-partners-container {
        gap: 20px;
    }
    .modal-contacts-form-inputs .intl-tel-input .country-list,
    .contacts-form-inputs .intl-tel-input .country-list {
        z-index: 3;
        width: auto;
        border-radius: 25px;
        border: 1px solid #9ABAFF;
    }
}

@media only screen and (max-width: 575.98px) {

    .about_us_card-tab {
        padding: 32px 16px;
        gap: 16px;
    }

    .input, input[type="text"], input[type="tel"]  {
        width: 100%!important;
    }
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .modal-contacts-content {
        padding: 20px;
        gap: 16px;
        margin: 100px auto;
    }


    .main-text-animation-1, .main-text-animation-2-tab {
        font-size: 38px;
    }

    .main-text {
        font-size: 20px;
        padding-right: 16px;
    }

    .main-section {
        padding: 66px 0px;
    }

    .container-main {
        gap: 20px;
        width: auto;
    }

    .about_us_title {
        font-size: 32px;
    }

    .about_us_card_title-tab {
        font-size: 20px;
    }

    .metric-card-title {
        font-size: 38px;
        padding: 12px 0px;
    }

    .metric-card-text {
        font-size: 20px;
    }

    .metrics-container {
        gap: 32px;
        padding: 12px 0px;
    }

    .our_clients_container {
        gap: 20px;
    }

    .our_clients_title {
        font-size: 32px;
    }

    .our-clients-carousel-track {
        gap: 20px;
    }

    .our-clients-carousel-container {
        padding: 10px 0px;
    }

    .solutions-container {
        gap: 20px;
    }

    .solution-card-title {
        font-size: 20px;
    }

    .solution-card {
        gap: 16px;
        padding: 32px 16px;
    }

    .expertise-title {
        font-size: 32px;
    }

    .expertise-container {
        gap: 20px;
    }

    .expertise-card-title {
        font-size: 20px;
    }

    .expertise-card {
        gap: 12px;
    }

    .niches-title {
        font-size: 32px;
    }

    .niches-container {
        gap: 20px;
    }

    .niches-cards {
        gap: 16px;
        flex-direction: column;
    }

    .niches-card {
        padding: 48px 12px;
        width: 100%;
        max-width: none;
    }

    .niches .slick-track {
        margin: 5px auto;
    }

    .projects-cards {
        gap: 20px
    }

    .project-card {
        padding: 12px 8px;
        gap: 12px;
    }

    .project-card-title {
        font-size: 24px;
    }

    .project-card-block-all-text-box-text {
        font-size: 12px;
    }

    .our-partners-title {
        font-size: 32px;
    }

    .our-partners-container {
        gap: 20px;
    }


    .our-partners-card-name {
        font-size: 24px;
    }

    .our-partners-slider {
        height: auto;
    }

    .slick-slide {
        height: none;
    }

    .our-partners-card-main {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 12px;
        gap: 12px;
    }

    .our-partners-img-mob {
        display: flex!important;
    }

    .our-partners-img {
        display: none!important;
    }

    .our-partners-card-gradient {
        height: auto;
    }

    .our-partners-card-all-text {
        padding: 8px 0px;
        gap: 12px;
        width: 100%;
    }

    .our-partners-buttons-mob {
        display: flex;
    }

    .CEO-title {
        font-size: 32px;
    }

    .CEO-name {
        font-size: 20px;
    }

    .CEO-content-tab {
        padding: 16px 0px 0px 0px;
    }

    .steps-container {
        gap: 20px;
    }

    .steps-wrap {
        gap: 16px;
    }

    .steps-card {
        flex-direction: column;
        padding: 12px 16px;
        gap: 16px;
    }

    .ceo-img-card-tab {
        height: auto;
    }

    .CEO-img-tab {
        width: 100%;
        height: auto;
    }

    .steps-content {
        text-align: center;
    }

    .steps-title-title {
        font-size: 32px;
    }

    .steps-content-title {
        font-size: 20px;
    }

    .feedback-title-title {
        font-size: 32px;
    }

    .feedback-card {
        padding: 16px;
    }

    .feedback-info-company, .feedback-card-content {
        gap: 16px;
    }

    .slick-slide {
        display: none!important;
    }

    .slick-active {
        display: flex!important;
    }

    .contacts .container {
        display: block;
        padding: 0px;
    }

    .contacts-content {
        width: auto;
        padding: 32px 16px;
        gap: 20px;
    }

    .contacts {
        padding: 0px;
    }

    .contacts-title {
        font-size: 32px;
    }

    .contacts-text, .contacts-form-title {
        font-size: 20px;
    }

    .contacts-title-text {
        gap: 32px;
        padding: 0px;
    }

    .contacts-form {
        padding: 20px 0px;
        gap: 16px;
    }

    .project-card-button {
        font-size: 18px;
    }

    .project-card-button-block {
        bottom: -12px;
        left: -18px;
    }

    .project-card-animation:hover .project-card-button-block {
        bottom: -12px;
        left: -18px;
    }

    .main-section {
        top: 165px;
    }

    .modal-contacts-form-title {
        width: 90%;
    }

    .modal-contacts-form-inputs .contacts-form-name, .modal-contacts-form-inputs .contacts-form-phone,
    .modal-contacts-form-inputs .contacts-form-text {
        font-size: 14px;
    }

    .modal-contacts-form-inputs {
        width: 100%;
    }

}

@media only screen and (max-width: 420px) {
    .project-card-button-block {
        bottom: -14px;
        left: -38px;
        gap: 6px;
    }

    .project-card-animation:hover .project-card-button-block {
        bottom: -14px;
        left: -38px;
        gap: 6px;
    }

    .project-card-button {
        font-size: 14px;
    }

    .project-card-button-svg {
        width: 12px;
        height: 9px;
    }
}

.wpcf7 form.sent .wpcf7-response-output {
    display: flex;
    height: 54px;
    padding: 16px;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    border-radius: 70px;
    border: 1px solid #9ABAFF;
    color: #999CA2;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

form.submitting .wpcf7-spinner {
    visibility: hidden;
}

.contacs-form-button-hidden {
    display: none !important;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    border-radius: 36px;
    background: transparent;
}

.selected-dial-code {
    color: #999CA2;
}

p {
    margin: 0px!important;
}

.wpcf7-form-control-wrap span {
    height: 100%;
}

.h4 {
    font-family: 'Play', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}