@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Tenor Sans";
    src: url("../fonts/TenorSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --white: #FFFFFF;
    --grey: #F0F0F0;
    --text-color: #2B2B2B;
    --text-contrast-color: #FFFFFF;
    --accent: #651389;
    --border: rgba(43, 43, 43, 0.50);
    --dark: #170F1D;
}
* {
    box-sizing: border-box
}
html, body {
    height: 100%
}
html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}
body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Montserrat", system-ui, -apple-system, Arial, sans-serif;
    color: #fff;
}
a:active {
    color: var(--accent);
}
.b24-form-header-padding {
    display: none;
}

.b24-form-state-container .b24-form-success {
    background-color: transparent !important;
}
.b24-form-control-alert-message,
.b24-form-state-icon {
    display: none !important;
}
.b24-form div.b24-form-control-alert {
    margin-bottom: 15px !important;
}
.row {
    display: flex;
    flex-direction: row;
}
.col {
    display: flex;
    flex-direction: column;
}
.section {
    background-color: var(--white);
    background-color: transparent;
}
.section--grey {
    background-color: var(--grey);
}
.section__container {
    max-width: 1208px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 24px;
}
.text {
    margin: 0;
    color: var(--text-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.title {
    margin: 0;
    color: var(--text-color);
    font-family: "Tenor Sans", "Montserrat", system-ui, -apple-system, Arial, sans-serif;
}
.title--contrast, .text--contrast {
    color: var(--text-contrast-color);
}
.text--accent {
    color: var(--accent);
    font-weight: 600;
}
.title--h2 {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.title--h3 {
    font-family: "Montserrat", system-ui, -apple-system, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
}
.main {
    background-image: url('/assets/img/main-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*scroll-snap-align: start;*/
}
.materials__container {
    padding-top: 10px;
}
.materials__link {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 1;
    text-decoration: none;
    padding: 12px 27px;
    background-color: var(--accent);
    border-radius: 10px;
    width: fit-content;
    cursor: pointer;
    transition: opacity 0.5s ease;
}
.materials__link:hover {
    opacity: 0.8;
}
.materals__col {
    justify-content: center;
    gap: 16px;
    max-width: 495px;
}
.contacts__logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.contacts__logo-wrapper {
    height: 45px;
}
.carousel {
    padding-bottom: 90px;
}
.carousel .crs-track {
    padding: 0;
    gap: 0 90px;
}
.carousel .crs-slide {
    box-shadow: none;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    margin: 0;
    flex: 0 0 640px;
    background: var(--white);
    background: transparent;
}
.carousel .crs-slide:not(.active) img {
    filter: grayscale(100%);
    opacity: 0.3;
}
.carousel__title {
    text-align: center;
    margin-bottom: 35px;
}
.carousel .crs-dots {
    display: none;
}
.carousel .crs-nav {
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
    width: 35px;
    height: 35px;
}
.carousel .crs-nav:hover {
    opacity: 0.8;
}
.carousel .crs-nav.disabled, .carousel .crs-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.carousel .crs-next {
    right: calc(100vw / 2 - 370px);
}
.carousel .crs-prev {
    left: calc(100vw / 2 - 370px);
}
.main__container {
    min-height: 100svh;
    justify-content: space-between;
}
.main__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.main__links--start {
    justify-self: start;
}
.main__link-logo {
    justify-self: center;
}
.main__links--end {
    justify-self: end;
}
.main__link {
    text-decoration: none;
    font-size: 16px;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.main__link:hover {
    opacity: 0.8;
}
.main__logo {
    object-fit: contain;
    width: 100px;
}
.main__links {
    gap: 40px;
}
.main__bottom {
    margin-bottom: 63px;
}
.main__title {
    text-align: center;
    font-size: 70px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.main__descr {
    text-align: center;
    font-size: 20px;
    line-height: normal;
}
.stages__container {
    padding-top: 89px;
    padding-bottom: 83px;
}
.stages__row {
    gap: 20px;
    margin-bottom: 48px;
}
.stages__title {
    font-size: 44px;
    flex: 1;
}
.stages__descr {
    flex: 1;
}
.stages__lists {
    gap: 20px;
}
.stages__card--1 {
    flex: 1;
    justify-content: stretch;
}
.stages__card {
    border-radius: 10px;
    background: radial-gradient(50% 50% at 50% 50%, #7F2A99 0%, #4B1563 100%);
    padding: 37px 68px 37px 35px;
}
.stages__card--3 {
    background: var(--dark);
}
.stages__list-title {
    font-size: 24px;
    margin-bottom: 81px;
}
.stages__list-title--2 {
    margin-bottom: 15px;
}
.stages__list-descr {
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 25px;
}
.stages__list-title--3 {
    margin-bottom: 22px;
}
.stages__complex-list {
    gap: 30px;
}
.stages__cards {
    flex: 1;
    gap: 20px;
}
.stages__list {
    gap: 15px;
}
.stages__complex__list-item {
    position: relative;
    padding-left: 36px;
}
.stages__list-item {
    position: relative;
    padding-left: 20px;
}
.stages__complex__list-item:before, .stages__list-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background-repeat: no-repeat;
    background-size: contain;
}
.stages__complex__list-item:before {
    width: 24px;
    height: 24px;
}
.stages__complex__list-item[data-stage="1"]:before {
    background-image: url('/assets/icons/complex-list-item-1.svg');
}
.stages__complex__list-item[data-stage="2"]:before {
    background-image: url('/assets/icons/complex-list-item-2.svg');
}
.stages__complex__list-item[data-stage="3"]:before {
    background-image: url('/assets/icons/complex-list-item-3.svg');
}
.stages__complex__list-item[data-stage="4"]:before {
    background-image: url('/assets/icons/complex-list-item-4.svg');
}
.stages__list-item:before {
    top: 6px;
    width: 10px;
    height: 10px;
    background-image: url('/assets/icons/list-circle.svg');
}
.planning__container {
    padding-top: 86px;
    padding-bottom: 96px;
}
.planning__row {
    gap: 70px;
    align-items: center;
}
.planning__col {
    flex: 1;
    max-width: 488px;
    gap: 45px;
}
.planning__descr {
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
}
.planning__title {
    font-size: 50px;
    font-weight: 400;
}
.planning__list {
    flex: 1;
    gap: 40px;
    max-width: 470px;
}
.planning__list-item {
    gap: 15px;
    align-items: center;
}
.leaders {
    background-image: url('/assets/img/leaders-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.leaders__row {
    align-items: center;
}
.leaders__col-text {
    gap: 130px;
    max-width: 331px;
}
.leaders__descr {
    font-size: 24px;
    font-weight: 500;
}
.leaders__descr-accents {
    color: var(--accent);
}
.leaders__col-cards {
    gap: 50px;
    max-width: 225px;
    margin-left: auto;
}
.leaders__card {
    gap: 40px;
    padding-left: 10px;
    border-left: 1px solid rgba(101, 19, 137, 0.50);
}
.leaders__icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.leaders__text {
    font-size: 16px;
}
.leaders__icon--mob {
    display: none;
}
.techno__container {
    padding-top: 78px;
    padding-bottom: 90px;
}
.techno__title {
    text-align: center;
    margin-bottom: 40px;
}
.techno__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.techno__card-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-left: auto;
}
.techno__card {
    padding: 14px 22px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 126px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.techno__card--1 {
    background-image: url('/assets/img/techno-1.png');
}
.techno__card--2 {
    background-image: url('/assets/img/techno-2.png');
}
.techno__card--3 {
    background-image: url('/assets/img/techno-3.png');
}
.techno__card--4 {
    background-image: url('/assets/img/techno-4.jpg');
}
.techno__card--5 {
    background-image: url('/assets/img/techno-5.png');
}
.about__container {
    padding-top: 84px;
    padding-bottom: 90px;
}
.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "title card-1 card-2" "text big-image big-image";
    gap: 20px;
}
.about__title {
    grid-area: title;
}
.about__card--1 {
    grid-area: card-1;
}
.about__card--2 {
    grid-area: card-2;
    background-image: url('/assets/img/about-card-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.about__card--text {
    grid-area: text;
}
.about__img {
    grid-area: big-image;
    display: block;
    object-fit: contain;
    max-width: 100%;
}
.about__card {
    background-color: var(--grey);
    padding: 14px 14px 27px 30px;
    border-radius: 10px;
}
.about__card-icon {
    margin-left: auto;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 47px;
}
.about__card-number {
    color: var(--text-color);
    font-family: "Tenor Sans", "Montserrat", system-ui, -apple-system, Arial, sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    white-space: pre;
}
.about__card-plus {
    font-size: 30px;
    line-height: 100%;
}
.about__card-text {
    color: var(--text-color);
    font-size: 20px;
    line-height: normal;
}
.about__card-number--contrast, .about__card-text--contrast {
    color: var(--white);
}
.about__card-icon-text {
    margin-bottom: 96px;
}
.about__card-descr {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
}
.about__card--text {
    padding: 14px 14px 24px 20px;
}
.about__img--mob {
    display: none;
}
.price__container {
    padding-top: 80px;
    padding-bottom: 90px;
}
.price__title {
    text-align: center;
    margin-bottom: 36px;
}
.price-table {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 290px;
    width: 100%;
}
.price-table__header {
    display: contents;
}
.price-table__header-title {
    text-transform: uppercase;
    background: var(--white);
    border-bottom: 0.5px solid var(--border);
    padding: 23px 32px;
    font-weight: 600;
    line-height: 100%;
}
.price-table__header-title:first-child {
    border-right: 0.5px solid var(--border);
}
.price-table__row {
    display: contents;
}
.price-table__cell {
    padding: 16px 32px;
    border-bottom: 0.5px solid var(--border);
}
.price-table__cell:first-child {
    border-right: 0.5px solid var(--border);
}
.price-table__cell:last-child {
    text-align: left;
}
.price-table__section-header {
    display: contents;
}
.price-table__section-title {
    padding: 16px 32px;
    font-weight: 600;
    border-bottom: 0.5px solid var(--border);
}
.price-table__section-title:first-child {
    border-right: 0.5px solid var(--border);
}
.benefits {
    background-image: url('/assets/img/benefits.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.benefits__container {
    padding-top: 100px;
    padding-bottom: 100px;
}
.benefits__title {
    margin-bottom: 46px;
}
.benefits__row {
    gap: 60px;
}
.benefits__col {
    flex: 1;
}
.benefits__title-row {
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}
.benefits__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 100%;
}
.contacts__container {
    padding-top: 90px;
    padding-bottom: 90px;
}
.contacts__row {
    justify-content: space-between;
    align-items: center;
    gap: 187px;
}
.contacts__title {
    margin-bottom: 30px;
}
.contacts__list {
    gap: 18px;
    max-width: 375px;
}
.contacts__link {
    gap: 15px;
    align-items: center;
    text-decoration: none;
}
.contacts__link:not(.contacts__link--text):hover {
    opacity: 0.8;
}
.contacts__icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    min-width: 45px;
    height: 45px;
    background-color: var(--accent);
    border-radius: 100%;
}
.contacts__img,
.contacts__form {
    width: 567px;
    border-radius: 10px;
}
.contacts__img--mob {
    display: none;
}
.bottom__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.bottom__link {
    text-decoration: none;
}
.bottom__link:hover {
    text-decoration: underline;
}
.bottom__link--start {
    justify-self: start;
}
.bottom__link--end {
    justify-self: end;
}
.bottom__link-logo {
    justify-self: center;
}
.bottom__logo, 
.main__logo {
    max-width: 100px;
}

.scroll-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}
@media screen and (max-width: 1250px) {
    .title--h2 {
        font-size: 40px;
    }
    .title--h3 {
        font-size: 22px;
    }
    .text {
        font-size: 14px;
    }
    .main__descr {
        font-size: 18px;
    }
    .planning__row {
        gap: 30px;
    }
    .planning__col {
        gap: 15px;
    }
    .planning__title {
        font-size: 30px;
    }
    .planning__list {
        gap: 20px;
    }
    .leaders__col-text {
        gap: 16px;
    }
    .leaders__desr {
        font-size: 16px;
    }
    .leaders__col-cards {
        gap: 20px;
    }
    .leaders__card {
        gap: 10px;
    }
    .about__card-number {
        font-size: 60px;
    }
    .about__card--text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .about__card-icon-text {
        margin-bottom: 0;
    }
    .about__card-descr {
        font-size: 20px;
    }
    .price-table {
        grid-template-columns: 1fr 180px;
    }
    .benefits__row {
        flex-direction: column;
        gap: 30px;
    }
    .contacts__row {
        gap: 32px;
    }
    .contacts__img,
    .contacts__form {
        max-width: 567px;
        width: 100%;
    }
    .contacts__title {
        max-width: 230px;
    }
    .bottom__logo {
        max-width: 60px;
    }
}
@media screen and (max-width: 1000px) {
    .main__links {
        gap: 16px;
    }
    .leaders__row {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0 40px;
        padding-top: 57px;
    }
    .leaders__img {
        max-width: 400px;
    }
    .leaders__col-cards {
        flex-direction: row;
        width: 100vw;
        max-width: none;
        margin: 0;
        padding: 40px 0;
        margin-left: -24px;
        margin-right: -24px;
        padding: 40px 24px;
        background-image: url('/assets/img/leaders-bg-mob.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .leaders__icon--mob {
        display: block;
    }
    .leaders__icon--desc {
        display: none;
    }
    .leaders__icon-wrapper {
        background-color: var(--white);
    }
    .leaders__card {
        padding: 0;
        border: none;
    }
    .materals__img {
        max-width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .section__container {
        padding: 0px 20px;
    }
    .title--h2 {
        font-size: 30px;
    }
    .title--h3 {
        font-size: 16px;
    }
    .text {
        font-size: 12px;
    }
    .main__container {
        min-height: 0;
    }
    .main__top {
        grid-template-columns: 1fr;
        margin-bottom: 135px;
    }
    .main__links {
        display: none;
    }
    .main__logo {
        width: 73px;
    }
    .main__bottom {
        max-width: 326px;
        align-self: center;
        margin-bottom: 224px;
    }
    .main__title {
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
    }
    .main__descr {
        font-size: 16px;
    }
    .stages__container {
        padding-top: 58px;
        padding-bottom: 54px;
    }
    .stages__row {
        gap: 10px;
        margin-bottom: 30px;
        flex-direction: column;
    }
    .stages__title {
        font-size: 24px;
    }
    .stages__descr {
        font-size: 14px;
        line-height: 150%;
    }
    .stages__lists {
        flex-direction: column;
    }
    .stages__card {
        padding: 25px 22px 30px 20px;
    }
    .stages__list-title {
        margin-bottom: 27px;
    }
    .stages__complex-list, .stages__list {
        gap: 20px;
    }
    .stages__complex__list-item {
        padding-left: 25px;
    }
    .stages__complex__list-item:before {
        width: 15px;
    }
    .stages__list-item {
        padding-left: 11px;
    }
    .stages__list-item:before {
        width: 6px;
    }
    .stages__list-title--2 {
        margin-bottom: 11px;
    }
    .stages__list-title--3 {
        margin-bottom: 20px;
    }
    .leaders__desr {
        font-size: 16px;
    }
    .planning__container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .planning__row {
        flex-direction: column;
    }
    .planning__col {
        max-width: none;
    }
    .planning__title {
        font-size: 24px;
    }
    .planning__descr {
        font-size: 12px;
    }
    .planning__list {
        max-width: none;
    }
    .planning__list-item {
        gap: 10px;
        padding-bottom: 20px;
        border-bottom: 0.5px solid rgba(43, 43, 43, 0.20);
        padding-right: 20px;
    }
    .planning__img {
        max-width: 40px;
    }
    .leaders__row {
        justify-content: center;
        text-align: center;
    }
    .leaders__card {
        justify-content: center;
        align-items: center;
    }
    .leaders__col-cards {
        margin-left: -20px;
        margin-right: -20px;
    }
    .about__container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .techno__container {
        padding-top: 54px;
        padding-bottom: 51px;
    }
    .techno__title {
        margin-bottom: 20px;
    }
    .techno__cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .techno__card {
        padding: 12px 14px 19px 15px;
        gap: 110px;
    }
    .techno__card-icon {
        width: 25px;
        height: 25px;
    }
    .techno__icon {
        width: 12px;
        object-fit: contain;
    }
    .techno__text {
        font-size: 14px;
    }
    .techno__card--1 {
        background-image: url('/assets/img/techno-mob-1.png');
    }
    .techno__card--2 {
        background-image: url('/assets/img/techno-mob-2.png');
    }
    .techno__card--3 {
        background-image: url('/assets/img/techno-mob-3.png');
    }
    /*.techno__card--4 {
        background-image: url('/assets/img/techno-mob-4.png');
    }*/
    .techno__card--5 {
        background-image: url('/assets/img/techno-mob-5.png');
    }
    .about__grid {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "title text" "card-1 card-2";
    }
    .about__card {
        padding: 11px 11px 21px 15px;
    }
    .about__card-icon {
        width: 25px;
        height: 25px;
    }
    .about__icon {
        width: 12px;
        height: 12px;
    }
    .about__card-number {
        font-size: 48px;
    }
    .about__card-plus {
        font-size: 20px;
    }
    .about__img--descr {
        display: none;
    }
    .about__img--mob {
        display: block;
        width: 100%;
    }
    .about__title {
        max-width: 160px;
        margin-bottom: 90px;
    }
    .about__card-descr {
        font-size: 16px;
    }
    .price__container {
        padding-top: 53px;
        padding-bottom: 59px;
    }
    .price__title {
        margin-bottom: 18px;
    }
    .price-table {
        grid-template-columns: 1fr 115px;
    }
    .price-table__header-title {
        padding: 16px 10px;
    }
    .price-table__section-title, .price-table__cell {
        padding: 12px 10px;
    }
    .benefits {
        background-image: url('/assets/img/benefits-mob.png');
    }
    .benefits__container {
        padding-top: 54px;
        padding-bottom: 54px;
    }
    .benefits__title {
        margin-bottom: 40px;
        max-width: 200px;
    }
    .benefits__title-row {
        margin-bottom: 10px;
        gap: 10px;
    }
    .contacts__container {
        padding-top: 54px;
        padding-bottom: 54px;
    }
    .contacts__row {
        gap: 30px;
    }
    .contacts__title {
        max-width: 200px;
        margin-bottom: 20px;
    }
    .contacts__list {
        gap: 13px;
    }
    .contacts__icon-wrapper, .benefits__icon-wrapper {
        min-width: 30px;
        width: 30px;
        height: 30px;
    }
    .contacts__icon, .benefits__icon {
        transform: scale(0.66);
    }

    .contacts__logo {
        width: 30px;
        height: 30px;
    }
    .contacts__logo-wrapper {
        height: 30px;
    }
    .bottom__container {
        padding-top: 11px;
        padding-bottom: 11px;
    }
    .carousel {
        padding-bottom: 60px;
    }
    .carousel .crs-slide {
        flex: 0 0 calc(100vw - 40px);
    }
    .carousel .crs-track .crs-slide:first-child, .carousel .crs-track .crs-slide:last-child, .carousel .crs-dots button:first-child, .carousel .crs-dots button:last-child {
        display: none;
    }
    .carousel .crs-track {
        gap: 20px;
        padding: 0 20px;
    }
    .carousel .crs-prev {
        left: 30px;
    }
    .carousel .crs-next {
        right: 30px;
    }
    .carousel .crs-nav {
        width: 20px;
        height: 20px;
    }
    .carousel .crs-nav img {
        max-width: 100%;
        object-fit: contain;
    }
    /*.carousel .crs-dots {
        display: flex;
        gap: 5px;
        padding: 6px 20px 0;
    }*/
    .carousel .crs-dots button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: #666;
        opacity: .6;
        cursor: pointer;
        padding: 0;
    }
    .carousel .crs-dots button[aria-selected="true"] {
        background: var(--accent);
        width: 8px;
    }

    .contacts__img--desk,
    .contacts__form {
        border-radius: 0;
    }
   /* .contacts__img--desk {
        display: none;
    }*/
    /*.contacts__img--mob {
        display: block;
    }*/
    .contacts__container {
        padding: 54px 0 0 0;
    }
    .contacts__col--info {
        padding: 0 20px;
    }
    .contacts__row {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .contacts__list {
        max-width: 250px;
    }
    .contacts__col {
        width: 100%;
    }
    .materials__container {
        padding-top: 50px;
    }
    .materials__row {
        flex-direction: column;
        gap: 16px;
    }
    .materals__col {
        flex-direction: row;
        justify-content: space-between;
    }
    .materials__title {
        max-width: 200px;
    }

    .materials__link {
        height: fit-content;
        padding: 8px 14px;
    }
}
@media screen and (max-width: 450px) {
    .price-table {
        font-size: 10px;
    }
    .contacts__img--desk,
    .contacts__form {
        border-radius: 0;
    }
   /* .contacts__img--desk {
        display: none;
    }*/
    /*.contacts__img--mob {
        display: block;
    }*/
    .contacts__container {
        padding: 54px 0 0 0;
    }
    .contacts__col--info {
        padding: 0 20px;
    }
    .contacts__row {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .contacts__list {
        max-width: 250px;
    }
    .contacts__col {
        width: 100%;
    }
}