@import "components/header.css";
@import "components/text.css";
@import "components/modal.css";
@import "components/animation.css";
@import "components/upgrade.css";
@import "components/buttons.css";

@media only screen and (min-width: 1200px) {
    .process .container {
        max-width: 960px;
    }
}

.process__promo {
    padding: 120px 0;
    background-color: rgb(244, 248, 253);
}
.process__promo__title {
    text-align: center;
}
.process__promo__descr {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    max-width: 730px;
    color: rgb(77, 77, 77);
}
.process__steps {
    padding: 120px 0;
}
.process__steps__wrap {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.process__steps__item {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
}
.process__steps__item:nth-child(2n) {
    flex-direction: row-reverse;
}
.process__steps__item__img {
    width: 50%;
    padding: 10px;
}
.process__steps__item__main {
    width: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.process__steps__item__count {
    color: rgb(77, 77, 77);
    font-size: 43px;
    font-weight: 600;
    line-height: 55.9px;
}
.process__steps__item__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
}
.process__steps__item__descr {
    color: rgb(77, 77, 77);
}
.process__steps__item svg {
    position: absolute;
    right: 335px;
    bottom: -185px;
}
.process__steps__item:nth-child(2n) svg {
    position: absolute;
    right:unset;
    left: 335px;
    bottom: -185px;
    transform: scale(-1, 1);
}
.process__steps__item:last-child svg {
    display: none;
}
@media only screen and (max-width: 1400px) {

}
@media only screen and (max-width: 1200px) {

}
@media only screen and (max-width: 992px) {
    .process__promo,
    .process__steps {
        padding: 50px 0;
    }
    .process__steps__wrap {
        gap: 50px;
    }
    .process__steps__item,
    .process__steps__item:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .process__steps__item__main,
    .process__steps__item__img {
        width: 100%;
    }
    .process__steps__item__main {
        padding: 0;
    }
    .process__steps__item:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .process__steps__item svg {
        display: none;
    }
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 576px) {

}