/*
Theme Name: ВГТ
Description: Простая тема с двумя разделами
Version: 1.0
*/

:root {
    --color-dark: #00101C;
    --color-blue: #3E6FD1;
    --color-gray: #667085;
    --color-light: #F0F1F3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

html {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    font-family: "Inter Tight", "Arial", sans-serif;
    color: var(--color-dark);
}

body {
    width: 100%;
    height: 100%;

    background-color: #fff;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));
}

.wrapper .header,
.wrapper .footer {
    flex-shrink: 0;
}

.wrapper main {
    flex-grow: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;

    appearance: none;
}

input[type="number"] {
    appearance: textfield;
}

select,
textarea,
input:matches([type="email"],
    [type="number"],
    [type="password"],
    [type="search"],
    [type="tel"],
    [type="text"],
    [type="url"]) {
    appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: none;
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: "Inter Tight";
    font-display: swap;
    src: url("fonts/InterTight-Regular.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 500;
    font-family: "Inter Tight";
    font-display: swap;
    src: url("fonts/InterTight-Medium.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: "Inter Tight";
    font-display: swap;
    src: url("fonts/InterTight-SemiBold.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Inter Tight";
    font-display: swap;
    src: url("fonts/InterTight-Bold.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: "Golos Text";
    font-display: swap;
    src: url("fonts/GolosText-SemiBold.woff2") format("woff2"),
}

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

.mb-150 {
    margin-bottom: 150px;
}

@media(max-width: 1199px) {
    .mb-150 {
        margin-bottom: 120px;
    }
}

@media(max-width: 959px) {
    .mb-150 {
        margin-bottom: 100px;
    }
}

@media(max-width: 539px) {
    .mb-150 {
        margin-bottom: 60px;
    }
}

.container {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 959px) {
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 539px) {
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap:10px;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    outline: none;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    color: var(--color-dark);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    min-height: 42px;
    width: 100%;
}

.btn:hover,
.btn:focus {
    color: #fff;
    background-color: var(--color-blue);
}

.btn--dark {
    background-color: var(--color-dark);
    color: #fff;
}

.btn--blue {
    background-color: var(--color-blue);
    color: #fff;
}

.btn--blue:hover,
.btn--blue:focus {
    background-color: var(--color-dark);
}

.bg-light {
    padding: 150px 0;
    background-color: var(--color-light);
}

@media (max-width: 1199px) {
    .bg-light {
        padding: 120px 0;
    }
}

@media (max-width: 959px) {
    .bg-light {
        padding: 100px 0;
    }
}

@media (max-width: 539px) {
    .bg-light {
        padding: 60px 0;
    }
}

.numbers__wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    border-radius: 20px;
    background-color: var(--color-light);
    padding: 40px;
}

.numbers__title {
    font-weight: 600;
    font-size: 52px;
    line-height: 120%;
    color: var(--color-blue);
    margin-bottom: 60px;
}

.numbers__text {
    font-size: 16px;
    line-height: 120%;
    color: var(--color-gray);
    max-width: 207px;
}

@media(max-width: 1199px) {
    .numbers__wrap {
        padding: 30px;
    }

    .numbers__title {
        margin-bottom: 40px;
        font-size: 42px;
    }
    .numbers__text {
        max-width: 100%;
    }
}

@media(max-width: 959px) {
    .numbers__wrap {
        padding: 20px;
        grid-template-columns: 1fr 1fr;
        gap: 50px 20px;
    }

    .numbers__title {
        margin-bottom: 20px;
    }
}

@media(max-width: 539px) {
    .numbers__wrap {
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .numbers__title {
        margin-bottom: 8px;
        font-size: 36px;
    }
    .numbers__text {
        font-size: 14px;
    }
}
.license {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
    position: relative;
    min-height: 106px;
    background: #fff;
    border-radius: 20px;
    padding: 20px 20px 20px 115px;
    font-size: 16px;
    line-height: 140%;
    overflow: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.license span {
    display: block;
}
.license__category {
	max-width: 380px;
	text-align: right;
	margin-left: auto;
	opacity: 0.7;
}
.license__name {
	max-width: 488px;
	font-size: 20px;
	font-weight: 500;
}
.license::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(img/icon1.svg);
    background-size: cover;
	transition: filter 0.3s ease;
}
.license::before {
    content: '';
    position: absolute;
    display: block;
    width: 678px;
    height: 678px;
    background-image: url(img/decor.png);
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}
.license:hover {
    background-color: var(--color-blue);
    color: #fff;
}
.license:hover::after {
    filter: invert(100%) brightness(100%);
}
.license:nth-child(1)::before {
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
}
.license:nth-child(2)::before {
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
}

@media(max-width: 1199px) {
    .license {
        padding: 20px 20px 20px 72px;
    }
}

@media(max-width: 539px) {
    .license {
        padding: 15px 15px 15px 62px;
        font-size: 14px;
        min-height: 70px;
    }
}
.history__wrap {
    grid-auto-rows: 1fr;
    grid-auto-flow: dense;
}
.history__item {
    position: relative;
    padding: 20px;
    background-color: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    grid-row: auto / span 5;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto 1fr;
    gap: 15px;
}
.history__year {
    grid-row: 1  / 3;
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: var(--color-blue);
}
.history__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    margin: 5px 0;
}
.history__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.8;
}
.history__text p {
    margin:  0 0 10px;
    opacity: 0.8;
}
.history__text ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}
.history__text ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url(img/marker.svg);
    background-size: cover;
    margin: 0 5px 0 0;
    transform: translateY(3px);
}
.history__item:nth-last-child(3) {
    grid-row: auto / span 4;
}
.history__item:nth-last-child(2) {
    grid-column: 1 / 2;
}
.history__item:nth-last-child(1) {
    grid-row: auto / span 6;
    grid-column: -2 / -1;
    background-color: var(--color-blue);
    color: #fff;
}
.history__item:nth-last-child(1) .history__year {
    color: #fff;
}
.history__item:nth-last-child(1)::before {
    content: '';
    position: absolute;
    display: block;
    width: 678px;
    height: 678px;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
    background-image: url(img/decor.png);
    left: 0;
    bottom: 0;
    transform: translate(-50%,50%);
}
.page__wrap {
	padding-top: 100px;
}
.article__wrap {
    max-width: 1130px;
}

.article__title {
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    margin: 0 0 10px;
}

.article__date {
    font-size: 20px;
    line-height: 120%;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.article__img {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.article__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article__text {
    color: var(--color-gray);
    max-width: 900px;
}

.article__text h3 {
    color: var(--color-dark);
}

.article__btn {
    width: fit-content;
    margin-top: 70px;
}

@media(max-width: 1199px) {
    .article__title {
        font-size: 38px;
    }
    .article__date {
        font-size: 18px;
    }
}

@media(max-width: 959px) {
    .article__title {
        font-size: 34px;
    }
    .article__date {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .article__img {
        margin-bottom: 20px;
    }
    .article__btn {
        margin-top: 40px;
    }
}

@media(max-width: 539px) {
    .article__title {
        font-size: 28px;
        margin: 0 0 5px;
    }
    .article__date {
        font-size: 14px;
        margin-bottom: 22px;
    }
    .article__btn {
        width: 100%;
        margin-top: 20px;
    }
}

.breadcrumbs {
    list-style: none;
    margin: 75px 0 60px;
    padding: 0;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a {
    transition: color 0.3s ease;
    font-size: 12px;
    line-height: 120%;
    color: var(--color-gray);
}

.breadcrumbs a:hover {
    color: var(--color-blue);
}

.breadcrumbs li::after {
    content: "/";
    padding: 0 10px;
}

.breadcrumbs li:last-child a {
    font-weight: 500;
    pointer-events: none;
    color: var(--color-dark);
}

.breadcrumbs li:last-child::after {
    display: none;
}

@media(max-width: 1199px) {
    .breadcrumbs {
        margin: 68px 0 60px;
    }
}

@media(max-width: 959px) {
    .breadcrumbs {
        margin: 63px 0 40px;
    }
}

@media(max-width: 539px) {
    .breadcrumbs {
        margin: 63px 0 30px;
    }

    .breadcrumbs a {
        font-size: 12px;
    }
}

.logo {
    flex-shrink: 0;
    width: 209px;
    height: 50px;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo a:hover,
.logo a:focus {
    opacity: 0.5;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: var(--color-dark);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 1000px;
    opacity: 1;
}
.swiper-btns {
    display: flex;
    gap: 20px;
}

.swiper-btn-next,
.swiper-btn-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none;
    color: var(--color-dark);
    width: 56px;
    height: 56px;
    border-radius: 20px;
    transition: color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}
.swiper-btn-next svg ,
.swiper-btn-prev svg {
    width: 42%;
    height: 43%;
}
.swiper-btn-next:hover,
.swiper-btn-prev:hover {
    color: #fff;
    background-color: var(--color-dark);
}
.swiper-btn.swiper-button-lock {
    display: none;
}

.custom-input,
.custom-textarea {
    position: relative;
    flex: 1;

    display: flex;
    width: 100%;

    color: #fff;
}

.custom-input label,
.custom-textarea label {
    width:100%;
}

.custom-input input,
.custom-textarea textarea {
    width: 100%;
    min-height: 42px;
    margin-left: auto;
    padding: 10px 20px;
    font: inherit;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-size: 16px;
    line-height: 100%;
}

.custom-input input::-webkit-input-placeholder,
.custom-textarea textarea::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.8;
}

.custom-input input:hover,
.custom-textarea textarea:hover,
.custom-input input:focus,
.custom-textarea textarea:focus {
    background: rgba(255, 255, 255, 0.1);
}

.custom-textarea textarea {
    border-radius: 8px;
    height: 100%;
    min-height: 156px;
}

.custom-toggle {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}

.custom-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
 }

 .custom-toggle label {
    display: flex;
    position: relative;
    cursor: pointer;
    padding-left: 22px; 
 }
  .custom-toggle label::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 3px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 4px;
    outline: 1px solid var(--color-blue);
    outline-offset: 2px;
    transition: backgound-color 0.3s ease;
 }

.custom-toggle__label {
    font-size: 10px;
    line-height: 120%;
    color: #fff;
    opacity: 0.6;
}

.custom-toggle a {
    text-decoration: underline;
}

.custom-toggle a:hover {
    opacity: 0.7;
}

.custom-toggle:has(input:checked) label::before {
    background-color: var(--color-blue);
}

.nav {
	flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
	justify-content: center;
    gap: 10px 20px;
}

.nav__link {
    font-size: 14px;
    line-height: 120%;
    color: #fff;
}

.nav__item.active .nav__link {
    color: var(--color-blue);
}

.nav__link:hover,
.nav__link:focus {
    color: var(--color-blue);
}

@media (max-width: 959px) {
    .nav__list {
        gap: 15px;
    }
}
@media (max-width: 767px) {
    .nav__list {
        gap: 15px;
        flex-direction: column;
        align-items: start;
        padding: 63px 0 30px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 16, 28, 0.72);
    backdrop-filter: blur(6px);
    --webkit-backdrop-filter: blur(6px);
    color: #fff;
}

.header__wrap {
    display: flex;;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}
.header__logo {
    margin-top: -10px;
}

.header__btns {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 20px;
    flex-shrink: 0;
}

.header__links {
    display: flex;
    padding: 2px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
}
.header__link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    height: 29px;
    border-radius: 8px;
    color: #fff;
    opacity: 0.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex: 1;
}
.header__link:hover {
    color: var(--color-blue);
    opacity: 1;
}
.header__link.active {
    background: #F6F7FA;
    opacity: 1;
    color: var(--color-blue);
    pointer-events: none;
}
.header__account {
    min-height: 33px;
	font-size: 12px;
}
.header__account svg {
	display: none;
    width: 17px;
    height: 17px;
}
.header__burger {
    position: relative;
    display: none;
    width: 33px;
    height: 33px;
    padding: 0;
    min-height: 33px;
    color: var(--color-blue);
}

.header__burger svg {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease;
}

@media(max-width: 1199px) {
    .header__wrap {
        display: flex;
    }
    .header__logo {
        width: 167px;
        height: 40px;
        margin-top: -15px;
    }
    .header__menu {
        flex: 1;
    }
}

@media (max-width : 959px) {
    .header__wrap {
        position: relative;
        gap: 10px;
    }

    .header__btns {
        margin-left: auto;
        gap: 10px;
    }
    .header__links {
        position: fixed;
        top: 63px;
        right: 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 26;
    }

    .header__menu {
        position: fixed;
        justify-content: start;
        top: 53px;
        right: 0;
        width: 100%;
        overflow: hidden;
        background: rgba(0, 16, 28, 0.72);
        backdrop-filter: blur(6px);
        --webkit-backdrop-filter: blur(6px);
        z-index: 25;
        padding: 18px 250px 28px 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header.is-active .header__menu,
    .header.is-active .header__links {
        opacity: 1;
        visibility: visible;
    }

    .header__burger {
        display: flex;
    }
    .header__burger:focus {
        color: var(--color-blue);
        background-color: #fff;
    }

    .header__burger .icon-close {
        opacity: 0;
    }

    .header__burger.is-open .icon-close {
        opacity: 1;
    }

    .header__burger.is-open .icon-open {
        opacity: 0;
    }
	
	.header__account {
		width: 33px;
		padding: 0;
	}
	.header__account span {
		display: none;
	}
	.header__account svg {
		display: block;
	}
}

@media(max-width : 767px) {
    .header__links {
        right: auto;
        left: 15px;
        width: calc(100% - 30px);
        max-width: 330px;
    }
}
.title {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
}
@media(max-width: 1199px) {
    .title {
        font-size: 38px;
    }
}

@media(max-width: 959px) {
    .title {
        margin: 0 0 15px;
        font-size: 34px;
    }
}

@media(max-width: 539px) {
    .title {
        margin: 0 0 10px;
        font-size: 28px;
    }
}
.subtitle {
    font-size: 20px;
    line-height: 120%;
    color: var(--color-gray);
    margin-bottom: 80px;
}
@media(max-width: 1199px) {
    .subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
}

@media(max-width: 959px) {
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media(max-width: 539px) {
    .subtitle {
        margin-bottom: 20px;
        font-size: 14px;
    }
}
.promo {
    position: relative;
}

.promo__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.promo__img img,
.promo__img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo__img::after {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(31,31,31,0.5);
    z-index: 2;
}

.promo__wrap {
    position: relative;
    width: 100%;
    min-height: 667px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    padding: 90px 0 30px;
	z-index: 3;
}

.promo--business .promo__wrap {
    align-items: center;
    padding-top: 180px;
    min-height: 780px;
}

.promo__title {
    margin: 0;
    font-family: 'Golos Text';
    font-weight: 600;
    font-size: 120px;
    line-height: 120%;
}

.promo--business .promo__title {
   font-size: 72px;
   margin-bottom: 20px;
}
.promo--service .promo__title {
   font-size: 80px;
   margin-bottom: 20px;
}

.promo__subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 30px;
}
.promo__text {
    font-size: 16px;
    line-height: 140%;
}
.promo__btn {
    width: fit-content;
    margin-bottom: 50px;
}
.promo__bottom {
    display: flex;
    gap: 70px;
    align-items: center;
}
.promo__bottom .btn {
    width: fit-content;
    flex-shrink: 0;
}

.promo__list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    background: #091C28;
    border-radius: 20px;
    padding: 25px 20px;
    margin-top: auto;
}
.promo__item {
    font-size: 16px;
    line-height: 120%;
    color: var(--color-gray);
}
.promo__item span {
    display: block;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .promo__title {
        font-size: 100px;
    }
    .promo--service .promo__title {
        font-size: 70px;
    }
    .promo__subtitle {
        font-size: 22px;
    }
    .promo__wrap {
        min-height: 569px;
    }
}

@media (max-width: 959px) {
    .promo__title {
        font-size: 80px;
    }
    .promo--business .promo__title {
        font-size: 62px;
    }
    .promo--service .promo__title {
        font-size: 60px;
    }
    .promo__subtitle {
        font-size: 20px;
    }
    .promo__wrap {
        min-height: 620px;
    }
    .promo--business .promo__wrap {
        min-height: 634px;
    }
    .promo__item span {
        font-size: 30px;
    }
    .promo__bottom {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }
}

@media (max-width: 767px) {
    .promo__wrap {
        padding-bottom: 20px;
        min-height: 371px;
    }
    .promo__title {
        font-size: 40px;
    }
    .promo--business .promo__title {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .promo--service .promo__title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .promo__subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .promo__text {
        font-size: 14px;
    }
}
@media (max-width: 539px) {
    .promo--business .promo__wrap {
        padding: 143px 0 10px;
    }
    .promo__btn {
        width: 100%;
    }
    .promo__list {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .promo__item {
        font-size: 14px;
    }
    .promo__bottom .btn {
        width: 100%;
    }
}

.block-img__info {
    display: flex;
    flex-direction: column;
}
.block-img__text {
    margin-top: auto;
}
.block-img__img {
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #fff;
    border-radius: 20px;
}
.block-img__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.block-img .btn {
    width: fit-content;
    margin-top: 40px;
}

.marquee{
    width:100%;
    overflow: hidden;
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.marquee__track{
    display: flex;
    align-items: center;
    height:100%;
    animation: marquee 30s linear infinite;
    will-change: transform;
    width: max-content;
}

.marquee__img {
    flex: 0 0 auto; 
    height: 100%;
    max-width: 240px;
    margin: 0 20px;
}

.marquee__img img{
    width:100%;
    height:100%;
    object-fit: contain;
}

.marquee__track:nth-child(odd) {
    animation-direction: reverse;
}

@media (max-width: 959px) {
    .marquee{
        height: 100px;
        gap: 20px;
    }
    .marquee__img {
        max-width: 190px;
        margin: 0 25px;
    }
}

@media (max-width: 539px) {
    .marquee{
        height: 58px;
        gap: 10px;
    }
    .marquee__img {
        max-width: 116px;
        margin: 0 15px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.client {
    width: 100%;
    height: 100%;
    height: 91px;
    background-color: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
}
.client img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media(max-width: 539px) {
    .client {
        height: 61px;
        padding: 14px;
    }
}
.card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 301px;
    background-color: var(--color-light);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}
.card::after {
    content: '';
    position: absolute;
    display: block;
    z-index: 2;
    pointer-events: none;
    background-size: cover;
}
.card__icon {
    width: 32px;
    height: 32px;
    margin-bottom: auto;
    color: var(--color-blue);
}
.card__icon svg,
.card__icon img {
    width: 100%;
    height: 100%;
}
.card__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 20px;
    margin-top: auto;
}
.card__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.8;
}

.card dt {
    font-size: 16px;
    line-height: 120%;
    color: var(--color-gray);
    margin-bottom: auto;
}

.card dd {
    font-weight: 600;
    font-size: 22px;
    line-height: 140%;
    margin: 0;
}
.card dd a {
    position: relative;
    z-index: 3;
}

.card dd a:hover {
    color: var(--color-blue);
}

.card__number {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    text-align: right;
    color: var(--color-blue);
    margin-bottom: 50px;
}

.card--form {
    background-color: var(--color-blue);
    color: #fff;
}

.card--form .btn {
    color: var(--color-blue);
    margin-top: auto;
}
.card--form .btn:hover,
.card--form .btn:focus {
    color: #fff;
}
.card--form::after {
    bottom: 0;
    right: 0;
    transform: translate(50%,50%);
    width: 536px;
    height: 536px;
    background-image: url(img/decor.png);
}

@media(max-width: 959px) {
    .card dd {
        font-size: 20px;
    }
    .card__title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media(max-width: 539px) {
    .card {
        padding: 15px;
    }
    .card__title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .card__text {
        font-size: 14px;
    }
    .card dt {
        font-size: 14px;
    }
    .card dd {
        font-size: 18px;
    }
}
.mission__wrap {
    grid-auto-rows: 1fr;
}
.mission .card {
    min-height: 234px;
}
.mission .card:nth-child(4) {
    grid-row: 1 / span 2;
    grid-column: -2 / -1;
}
.mission .card:nth-child(1) {
    grid-row: 1 / span 2;
}
.mission .card:nth-child(2) {
    background-color: var(--color-blue);
    color: #fff;
}
.mission .card:nth-child(2)::after {
    bottom: 0;
    right: 0;
    transform: translate(50%,50%);
    width: 536px;
    height: 536px;
    background-image: url(img/decor.png);
}
.mission .card:nth-child(3)::after {
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
    width: 536px;
    height: 536px;
    background-image: url(img/decor2.png);
}

@media(max-width: 1199px) {
    .mission .card:nth-child(4) {
        grid-row: auto;
        grid-column: 1 / -1;
    }
}
@media(max-width: 539px) {
    .mission .card:nth-child(1) {
        grid-row: auto;
    }
}
/* .advantages__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 1fr;
} */
.advantages__wrap {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
}
.advantages .card {
    min-height: 230px;
    background-color: #fff;
	width: calc((100% - 2 * 20px) / 3);
}
.advantages .card__title {
	margin-top: 20px;
}
/* .advantages .card:nth-child(1) {
    grid-row: 1 / span 2;
} */
.advantages .card:nth-child(1)::after {
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
    width: 678px;
    height: 678px;
    background-image: url(img/decor2.png);
}
.advantages .card:nth-child(2),
.advantages .card:nth-child(5) {
    background-color: var(--color-blue);
    color: #fff;
}
.advantages .card:nth-child(2) .card__icon,
.advantages .card:nth-child(5) .card__icon  {
   filter: brightness(0) invert(1);
}

@media(max-width: 959px) {
/*     .advantages__wrap {
        grid-template-columns: repeat(2, 1fr);
    } */
	.advantages .card {
		width: calc((100% - 20px) / 2);
	}
/*     .advantages .card:nth-child(1) {
        grid-row: auto;
        grid-column: 1 / -1;
    } */
}
@media(max-width: 539px) {
    .advantages__wrap {
/*         grid-template-columns: 1fr;
        grid-auto-rows: 1fr; */
        gap: 10px;
    }
    .advantages .card {
        min-height: 214px;
		width: 100%;
    }
}
.steps__wrap {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
}
.steps .card {
    min-height: 322px;
	width: calc((100% - 3 * 20px) / 4);
}

@media(max-width: 1199px) {
    .steps .card {
        min-height: 270px;
		width: calc((100% - 20px) / 2);
    }
}
@media(max-width: 539px) {
	.steps__wrap {
		gap: 10px;
	}
    .steps .card {
        min-height: 212px;
		width: 100%;
    }
}
.contaсts .card:first-child {
    background-color: var(--color-blue);
}
.contaсts .card:first-child  dt, 
.contaсts .card:first-child  dd {
    color: #fff;
}
.contaсts .card:first-child::after {
    top: 0;
    right: 0;
    transform: translate(50%,-50%);
    width: 536px;
    height: 536px;
    background-image: url(img/decor.png);
}
.contaсts .card:nth-child(2)::after {
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
    width: 536px;
    height: 536px;
    background-image: url(img/decor2.png);
}
.contacts__list {
    margin: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
}
.contacts__map {
    height: 620px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

@media(max-width: 1199px) {
    .contacts__list  .card {
       min-height: 271px;
    }
    .contacts__map {
        height: 424px;
    }
}

@media(max-width: 959px) {
    .contacts__list {
        grid-template-columns: repeat(2,1fr);
    }
    .contacts__list  .card {
       min-height: 225px;
    }
    .contacts__list .card:last-child {
        grid-column: 1 / -1;
    }
}

@media(max-width: 539px) {
    .contacts__list {
       gap: 10px;
       grid-template-columns: 1fr;
    }
    .contacts__list  .card {
       min-height: 157px;
    }
    .contacts__map {
        height: 185px;
    }
}
.services__wrap {
	display:flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.service-card {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-light);
    border-radius: 20px;
    padding: 20px;
    min-height: 380px;
	
	width: calc((100% - 2 * 20px) / 3);
}

.service-card:nth-child(odd) {
    background-color: var(--color-blue);
    color: #fff;
}

.service-card__title {
    display: block;
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 20px;
}

.service-card__title::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.service-card__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.8;
    padding-top: 20px;
    border-top: 1px solid rgba(0,16,28,0.1);
}

.service-card:nth-child(odd) .service-card__text {
    border-color: rgba(255,255,255,0.2);
}

@media(max-width: 1199px) {
	.service-card {
		width: calc((100% - 20px) / 2);
	}
    .service-card:nth-child(4n+4) {
        background-color: var(--color-blue);
        color: #fff;
    }
    .service-card:nth-child(4n+4) .service-card__text {
        border-color: rgba(255,255,255,0.2);
    }
    .service-card:nth-child(4n+3) {
        background-color: var(--color-light);
        color: var(--color-dark);
    }
    .service-card:nth-child(4n+3) .service-card__text {
        border-color:  rgba(0,16,28,0.1);
    }
}

@media(max-width: 959px) {
    .service-card {
        min-height: 317px;
    }
    .service-card__title {
        font-size: 20px;
    }

}

@media(max-width: 539px) {
	.services__wrap {
		gap: 10px;
	}
    .service-card:nth-child(4n+4) {
        background-color: var(--color-light);
        color: var(--color-dark);
    }
    .service-card:nth-child(4n+4) .service-card__text {
        border-color:  rgba(0,16,28,0.1);
    }
    .service-card:nth-child(4n+3) {
        background-color: var(--color-blue);
        color: #fff;
    }
    .service-card:nth-child(4n+3) .service-card__text {
        border-color: rgba(255,255,255,0.2);
    }
    .service-card {
        padding: 15px;
        min-height: 193px;
		width: 100%;
    }
    .service-card__title {
        font-size: 18px;
    }
    .service-card__text {
        font-size: 14px;
        padding-top: 10px;
    }

}
.categories__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-auto-rows: 72px;
    grid-auto-flow: dense;
}
.category-card {
    display: flex;
    flex-direction: column;
    grid-row: auto / span  7;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-light);
    position: relative;
    padding: 10px;
}
.category-card:nth-child(4n+2) {
    grid-row: auto / span  6;
    grid-column: -2 / -1;
}
.category-card:nth-child(4n+3) {
    grid-row: auto / span  6;
    grid-column: 1 / 2;
}
.category-card__info {
    padding: 30px 20px;
}
.category-card__title {
    display: block;
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.category-card__title::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.category-card__text {
    font-size: 16px;
    line-height: 140%;
    color: var(--color-gray);
}

.category-card__title:hover {
    color: var(--color-blue);
}

.category-card__img {
    width: 100%;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}
.category-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 1199px) {
    .categories__wrap {
        grid-auto-rows: 50px;
    }
    .category-card__info {
        padding: 20px 10px;
    }
    .category-card__title {
        font-size: 26px;
    }
}

@media(max-width: 959px) {
    .categories__wrap {
        grid-auto-rows: 46px;
    }
    .category-card__title {
        font-size: 22px;
        margin-bottom: 15px;
    }

}

@media(max-width: 539px) {
    .categories__wrap {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }
    .category-card,
    .category-card:nth-child(4n+2),
    .category-card:nth-child(4n+3) {
        grid-row: auto;
        grid-column: auto;
    }
    .category-card__info {
        padding: 15px 5px 20px;
    }
    .category-card__title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .category-card__text {
        font-size: 14px;
    }
    .category-card__img {
        height: 240px;
        flex: auto;
    }
}
.products__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.product-card {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-light);
}
.product-card__img {
    height: 100%;
    width: 315px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}
.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card__info {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 0;
}
.product-card__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}
.product-card:has(.product-card__btn:hover) .product-card__title {
    color: var(--color-blue);
}
.product-card__text {
    font-size: 14px;
    line-height: 140%;
    color: var(--color-gray);
    margin-bottom: 20px;
}
.product-card__details ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-gray);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-card__details ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url(img/marker.svg);
    background-size: cover;
    margin: 0 5px 0 0;
    transform: translateY(3px);
}

.product-card__btn {
    width: fit-content;
    margin-top: auto;
}
.product-card__btn::after {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}
@media(max-width: 1199px) {
    .product-card {
        flex-direction: column;
        gap: 15px;
    }
    .product-card__img {
        height: auto;
        width: 100%;
        aspect-ratio: 435 / 320;
    }
    .product-card__info {
        flex: 1;
        padding: 0 10px 10px;
    }
}
@media(max-width: 959px) {
    .product-card__title {
        font-size: 20px;
    }
    .product-card__text {
        margin-bottom: 15px;
    }
}
@media(max-width: 539px) {
    .products__wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .product-card {
        padding: 5px;
    }
    .product-card__title {
        font-size: 18px;
    }
    .product-card__text {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .product-card__details {
        margin: 0 0 30px;
        font-size: 14px;
    }
}
.tariffs__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.tariffs__wrap--horizontal {
	flex-direction: column;
}
.tariffs__desc {
	margin-top: 50px;
}
.tariff-card {
    position: relative;
    display: flex;
    flex-direction: column;
	gap: 15px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-light);
    padding: 20px;
    min-height: 380px;
    transition: background-color 0.3s ease, color 0.3s ease;
	
	width: calc((100% - 3 * 20px) / 4);
}
.tariffs__wrap--horizontal .tariff-card {
	width: 100%;
	min-height: 0;
}
.tariff-card--multi,
.tariffs__wrap--horizontal .tariff-card--multi {
    flex-direction: column;
}
.tariff-card__top {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-bottom: 22px;
    border-bottom: 1px solid rgba(0,16,28,0.1);
	width: 100%;
}
.tariff-card__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;

    transition: color 0.3s ease;
}
.tariff-card__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.8;
    transition: border-color 0.3s ease;
}
.tariff-card__center {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.tariff-card__row {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 200px auto;
	align-items: start;
	padding: 0 0 10px; 
    border-bottom: 1px solid rgba(0,16,28,0.1);
	gap: 15px;
}
.tariff-card__row:last-child {
    border-bottom: none;
	padding-bottom: 0;
}
.tariff-card__price {
	font-size: 16px;
    line-height: 100%;
}
.tariff-card__price span {
	position: relative;
	font-weight: 600;
    font-size: 40px;
	line-height: 100%;
}
.tariff-card__price--old {
	opacity: 0.7;
}
.tariff-card__price--old span::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
	display: block;
	width: calc(100% + 10px);
	height: 2px;
	background-color: var(--color-dark);
	z-index: 2;
}
.tariff-card__price--sale {
	color: #c74141;
}
.tariff-card__bottom {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tariff-card__speed {
	font-size: 16px;
    line-height: 100%;
}
.tariff-card__speed span {
	font-weight: 600;
    font-size: 52px;
	line-height: 100%;
}

.tariff-card__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.tariff-card__btn:hover,
.tariff-card__btn:focus {
    color: var(--color-blue);
    background-color: #fff;
}
.tariff-card:has(.tariff-card__btn:hover) {
    background-color: var(--color-blue);
    color: #fff;
}
.tariff-card:has(.tariff-card__btn:hover) .tariff-card__top {
	border-color: rgba(255,255,255,0.2);
}
.tariff-card:has(.tariff-card__btn:hover) .tariff-card__title {
    color: #fff;
}
.tariff-card:has(.tariff-card__btn:hover) .tariff-card__price--old span::after {
	background-color: #fff;
}

@media(min-width:840px) {
	.tariffs__wrap--horizontal .tariff-card {
		width: 100%;
		flex-direction: row;
		align-items: center;
		min-height: 0;
	}
	.tariffs__wrap--horizontal .tariff-card--multi {
		flex-direction: column;
		align-items: start;
	}
	.tariffs__wrap--horizontal .tariff-card:not(.tariff-card--multi) .tariff-card__top {
		padding-bottom: 0;
		border-bottom: none;
	}
	.tariffs__wrap--horizontal .tariff-card__center {
		align-items: end;
		justify-content: end;
		text-align: right;
	}
		.tariffs__wrap--horizontal .tariff-card__bottom {
		flex-direction: row;
		align-items: center;
	}
		.tariffs__wrap--horizontal .tariff-card__btn {
		width: fit-content;
	}
}

@media(max-width: 1023px) {
    .tariff-card {
        min-height: 316px;
		width: calc((100% - 20px) / 2);
    }
}
@media(max-width: 959px) {
	.tariffs__desc {
		margin-top: 20px;
	}
    .tariff-card__title {
        font-size: 20px;
    }
	.tariff-card__row {
		grid-template-columns: 1fr auto;
	}
	.tariff-card__row .tariff-card__text {
		grid-column: 1 / -1;
	}
	.tariff-card__row .tariff-card__price {
		text-align: left;
	}
}
@media(max-width: 539px) {
	.tariffs__wrap {
		gap: 10px;
	}
    .tariff-card {
        min-height: 223px;
        padding: 15px;
		width: 100%;
    }
	.tariff-card__top {
		gap: 10px;
		padding-bottom: 10px;
    }
    .tariff-card__title {
        font-size: 18px;
    }
    .tariff-card__text {
        font-size: 14px;
    }
    .tariff-card__bottom {
        gap: 10px;
    }
    .tariff-card__speed span {
        font-size: 38px;
    }
	.tariff-card__price span {
		font-size: 24px;
	}
}

[data-accordion=element].is-active>[data-accordion=content] {
    max-height: 100%;
}

[data-accordion=parent].no-transition [data-accordion=content] {
    transition: none;
}

[data-accordion=content] {
    max-height: 0;
    transition: max-height 0.3s;
    overflow: hidden;
}

.accordion__element {
    background-color: var(--color-light);
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 20px;
}

.accordion__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 30px 90px 30px 30px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: transparent;
    transition: color 0.3s ease;
    min-height: 96px;
    font-family: 'Inter Tight','Arial', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.accordion__button-text {
    text-align: start;
}

.accordion__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(38, 69, 211, 0.2);
    border-radius: 18px;
    color: var(--color-blue);
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.accordion__icon svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}
.accordion__element.is-active .accordion__icon svg {
    transform: rotate(-90deg);
}

.accordion__element.is-active .accordion__button {
    color: var(--color-blue);
}

.accordion__wrapper {
    padding: 0 30px 30px;
    color: var(--color-gray);
}
.accordion__wrapper a {
    color: var(--color-gray);
}
@media(max-width: 1199px) {
    .accordion__button {
        padding: 30px 80px 30px 20px;
        font-size: 26px;
    }
    .accordion__wrapper {
        padding: 0 20px 20px;
    }
}

@media(max-width: 959px) {
    .accordion__button {
        padding: 20px 80px 20px 20px;
        font-size: 22px;
        min-height: 76px;
    }
    .accordion__icon {
        top: 10px;
        right: 10px;
    }
}
@media(max-width: 539px) {
    .accordion__button {
        padding: 15px 80px 15px 15px;
        font-size: 20px;
    }
    .accordion__wrapper {
        padding: 0 15px 15px;
    }
}

.text-content {
    font-size: 16px;
    line-height: 140%;
}

.text-content ul, .text-content ol {
    margin: 0 0 10px;
    padding: 0;
    list-style-position: inside;
}
.text-content li {
    margin: 0 0 10px;
}
.text-content p {
    margin: 0 0 10px;
}
.text-content a {
    text-decoration: underline;
}
.text-content a:hover {
    color: var(--color-blue);
}

@media(max-width:539px) {
    .text-content {
        font-size: 14px;
    }
}

.consult__wrap {
    position: relative;
    min-height: 370px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.consult__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
	background-color: #383D41;
}
.consult__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.consult__img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; 
    background: linear-gradient(270deg, rgba(0, 16, 28, 0) 0%, rgba(0, 16, 28, 0.72) 100%);
}
.consult .title,
.consult .subtitle {
    max-width: 545px;
}
.consult .subtitle {
    color: #fff;
    opacity: 0.6
}
.consult__btn {
    width: fit-content;
    margin-top: auto;
}

@media(max-width: 1199px) {
    .consult__wrap {
        padding: 20px;
    }
}

@media(max-width: 959px) {
    .consult__wrap {
        min-height: 437px;
    }
}

@media(max-width: 539px) {
    .consult__wrap {
        min-height: 344px;
        padding: 15px;
    }
    .consult__btn {
        width: 100%;
    }
}
.form-block__wrap {
    position: relative;
    min-height: 510px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    padding: 10px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    background-image: url(img/bg2.png);
    background-size: cover;
    gap: 20px;
}
.form-block__img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.form-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-block__info {
    display: flex;
    flex-direction: column;
    padding: 20px 0 20px 20px;
}

.form-block .subtitle {
    max-width: 545px;
    color: #fff;
    opacity: 0.6
}
.form-block .form {
    margin-top: auto;
}
.form-block .form__wrap {
    grid-template-columns: 1fr 1fr;
    max-width: 630px;
}

@media(max-width: 1199px) {
    .form-block__wrap {
        min-height: 539px;
        grid-template-columns: 1fr 1fr;
    }
    .form-block .form__wrap {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 767px) {
    .form-block__wrap {
        padding: 5px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .form-block__img {
        border-radius: 15px;
        height: auto;
        aspect-ratio: 320 / 240;
    }
    .form-block__info {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
}

.about__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: start;
}

.about__content {
    padding: 30px;
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.about__img {
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 670 / 524;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 959px) {
    .about__wrap {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 767px) {
    .portfolio .grid-3 {
        grid-template-columns: 1fr;
    }
}
.team .title,
.team .subtitle {
    padding-right: 150px;
}
.team__slider {
    position: relative;
}
.team__slider .swiper-btns {
    position: absolute;
    top: -80px;
    right: 0;
    transform: translateY(-100%);
}
.team-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.team-card__img {
    width: 100%;
    aspect-ratio: 325 / 419;
    overflow: hidden;
    user-select: none;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card__info {
    padding: 15px;
}

.team-card__name {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    transition: color 0.3s ease;
}

.team-card__position {
    font-size: 14px;
    line-height: 120%;
    color: var(--color-gray);
    opacity: 0.8;
}

.team-card:hover  .team-card__name {
    color: var(--color-blue);
}

@media(max-width: 1199px) {
    .team__slider .swiper-btns {
        top: -50px;
    }
}

@media(max-width: 959px) {
    .team__slider .swiper-btns {
        top: -30px;
    }
    .team-card__info {
        padding: 12px 15px;
    }

    .team-card__name {
        font-size: 18px;
    }
}

@media(max-width: 539px) {
    .team .title,
    .team .subtitle {
        padding-right: 60px;
    }
    .team__slider .swiper-btns {
        top: -23px;
        flex-direction: column;
        gap: 10px;
    }
    .team__slider .swiper-btn-next,
    .team__slider .swiper-btn-prev {
        width: 42px;
        height: 42px;
    }
    .team-card__info {
        padding: 5px 15px 15px;
    }

    .team-card__name {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

.news .title,
.news .subtitle {
    padding-right: 150px;
}
.news__slider {
    position: relative;
}
.news__slider .swiper-btns {
    position: absolute;
    top: -80px;
    right: 0;
    transform: translateY(-100%);
}
.news__btn {
	margin: 20px 0 0 auto;
	width: fit-content;
}


@media(max-width: 1199px) {
    .news__slider .swiper-btns {
        top: -50px;
    }
}

@media(max-width: 959px) {
    .news__slider .swiper-btns {
        top: -30px;
    }
}

@media(max-width: 539px) {
    .news .title,
    .news .subtitle {
        padding-right: 60px;
    }
    .news__slider .swiper-btns {
        top: -23px;
        flex-direction: column;
        gap: 10px;
    }
    .news__slider .swiper-btn-next,
    .news__slider .swiper-btn-prev {
        width: 42px;
        height: 42px;
    }
}

.blog-card {
    position: relative;
    width: 100%;
    background-color: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
}

.blog-card__img {
    width: 100%;
    aspect-ratio: 420 / 280;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__info {
    padding: 20px 10px 10px;
}

.blog-card__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.blog-card__title::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.blog-card__title:hover {
    color: var(--color-blue);
}

.blog-card__date {
    font-size: 12px;
    line-height: 140%;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.blog-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-gray);
}
@media(max-width: 959px) {
    .blog-card__info {
        padding-top: 15px;
    }
    .blog-card__title {
        font-size: 20px;
    }
    .blog-card__date {
        margin-bottom: 15px;
    }
}

@media(max-width: 539px) {
    .blog-card {
        padding: 5px;
    }
    .blog-card__info {
        padding: 10px;
    }
    .blog-card__title {
        font-size: 18px;
    }
    .blog-card__date {
        margin-bottom: 10px;
    }
    .blog-card__text {
        font-size: 14px;
    }
}

.paginations {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.paginations__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    background: var(--color-light);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.paginations__item:hover,
.paginations__item.active {
    background-color: var(--color-dark);
    color: #fff;
}

@media(max-width: 529px) {
    .paginations {
        justify-content: space-between;
    }

    .paginations__item {
        font-size: 14px;
    }
}

.form__wrap {
    display: grid;
    gap: 20px;
}

.form__btn {
    width: 100%;
    min-height: 42px;
}

.form__accept {
    align-self: center;
}

.form__wrap p {
	margin: 0;
}

@media(max-width: 767px) {
    .form__wrap {
        grid-template-columns: 1fr;
    }

    .form__note {
        width: 100%;
    }
}

.socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.socials__item {
    width: 34px;
    height: 34px;
}

.socials__item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: border-color 0.3s ease, color 0.3s ease;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.socials__item svg {
    width: 50%;
    height: 50%;
}

.socials__item a:hover {
    color: var(--color-blue);
}

.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 30px 0 20px;
}

.footer__wrap {
    display: grid;
    grid-template-columns: 3fr repeat(3, 1fr);
    gap: 0 20px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
}

.footer__title {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 140%;
    opacity: 0.6;
}

.footer__link {
    font-size: 16px;
    line-height: 140%;
    color: #fff;
}

.footer__link:hover,
.footer__link.active {
    color: var(--color-blue);
}

.footer__link--contact {
    font-weight: 600;
}

.footer__copyright {
    font-size: 12px;
    line-height: 140%;
    color: #fff;
    opacity: 0.4;
    margin-top: auto;
}
.footer__socials {
    margin-top: auto;
}

@media(max-width : 1199px) {
    .footer__wrap {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

@media(max-width : 959px) {
    .footer__wrap {
        grid-template-columns: max-content repeat(3, 1fr);
    }
}
@media(max-width : 767px) {
    .footer {
        padding: 0 0 20px;
    }
    .footer__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__logo {
        grid-column: 1 / -1;
    }
    .footer__col:nth-child(4) {
        grid-column: 1 / -1;
    }
    .footer__copyright {
        font-size: 10px;
        grid-column: 1 / -1;
        justify-self: end;
    }
    .footer__title {
        font-size: 14px;
    }
    .footer__link {
        font-size: 14px;
    }
}

.accept {
    position: fixed;
    bottom: 30px;
    left: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    background-color: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 120;
}

.accept.active {
    opacity: 1;
    visibility: visible;
}

.accept__btn {
    margin-left: auto;
    width: 80px;
}

@media(max-width : 539px) {
    .accept {
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px);
        padding: 20px;
    }
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: scale(1.2);
    visibility: hidden;
    opacity: 0;

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

    pointer-events: none;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal__wrapper {
    position: relative;

    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 30px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    backdrop-filter: blur(10px);
    opacity: 0.82;
    cursor: pointer;
}

.modal__content {
    position: relative;
    max-width: 460px;
    width: 100%;
    background-color: var(--color-dark);
    color: #fff;
    border-radius: 20px;
    padding: 35px 40px 40px;
}

.modal__title {
    font-size: 30px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.modal__subtitle {
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    opacity: 0.6;
    margin-bottom: 20px;
}

.modal__close {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    cursor: pointer;
    color: var(--color-gray);
    background-color: transparent;
    transition: opacity 0.3s ease;
}

.modal__close:hover,
.modal__close:focus {
    opacity: 0.8;
}

.modal.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@media(max-width : 539px) {
    .modal__wrapper {
        padding:  30px 15px 15px;
    }
    
    .modal__content {
        padding: 15px;
    }
    
    .modal__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .modal__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}


.intro {
    position: relative;
    height: 100vh;
    height: calc(100 * var(--vh, 1vh));
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background-color: var(--color-dark);
    color: #fff;
}
.intro__logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    width: 45px;
    height: 45px;
}
.intro__logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(100 * var(--vh, 1vh));
    z-index: -1;
    transform: scaleY(0);
    transform-origin: center 0;
    background-color: #3E6FD1;
    animation: scaleY 1s ease-in;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}
@keyframes scaleY {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}
@keyframes scaleX {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.intro__item {
    position: relative;
}
.intro video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px;
    z-index: 5;
}
.intro__link span {
    position: relative;
    font-weight: 600;
    font-size: 50px;
    line-height: 140%;
}
.intro__link span::after {
    content: '';
    width: 100%;
    height: 14px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}
.intro__link span:hover::after {
    transform: scaleX(1);
}
@media(max-width: 959px) {
    .intro__link span {
        font-size: 34px;
    }  
}
@media(max-width: 539px) {
    .intro {
        grid-template-columns: 1fr;
    }
    .intro__logo {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .intro__logo::after {
        width: 100vw;
        height: 100%;
        transform: scaleX(0);
        transform-origin: 0 center;
        animation: scaleX 1s ease-in;
        animation-fill-mode: forwards;
        animation-delay: 0.3s;
    }
    .intro__link span::after {
        height: 8px;
        bottom: -8px;
    }
}

main:has(.info-page) {
    display: flex;
    flex-direction: column;
}

.info-page, .info-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.info-page__title {
    margin-bottom: 20px;
}

.info-page__subtitle {
    max-width: 700px;
    text-align: center;
    margin-bottom: 50px;
}

.info-page__btn {
    width: 250px;
}

