* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Lato", serif;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main block */

.main {
    margin-bottom: 80px;
    margin-top: 60px;
    /* background: url('../img/home/bg-main.png'); */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 100%;
    /* background: rgba(0, 0, 0, 0.5); */

}

.main__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

.main__block-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 80px;
}

.main__block-left {
    width: 66.66%;
    padding-right: 12px;
}

.main__block-title {
    color: #020405;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main__block-title:last-child {
    margin-bottom: 0px;
}

.main__block-main-title {
    margin-bottom: 20px;
}

.main__block-subtitle {
    color: #555;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.main__block-link {
    display: inline-block;
    padding: 20px 24px;
    border-radius: 8px;
    background: #1D9EE0;
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

}

.main__block-link:hover {
    background: #1681b6;
}

.main__block-right {
    padding-left: 12px;
    width: 33.33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main__block-parallax {
    position: relative;
    /* overflow: hidden; */
    /* width: 50%; */
    /* height: 50%; */
}


.main__block-parallax-img {
    -o-object-fit: cover;
    object-fit: cover;
    /* width: 312px; */
    /* height: 292px; */
    /* position: absolute; */
    width: auto;
    height: 292px;
    top: 0;
    left: 0;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    -o-transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

.main__block-stats {
    padding: 40px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 22px;
    background: #FFF;
    -webkit-box-shadow: 2px 2px 15px 0px rgba(2, 178, 167, 0.13);
    box-shadow: 2px 2px 15px 0px rgba(2, 178, 167, 0.13);
}

.stats__obj {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 20px;
}

.stats__obj:last-child {
    margin-right: 0;
}

.stats__obj-line {
    height: 100%;
    width: 4px;
    background: #02B2A7;
    border-radius: 2px;
    margin-right: 20px;
}

.stats__obj-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.stats__obj-text-title {
    color: #02B2A7;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.stats__obj-text-subtitle {
    color: #02B2A7;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/* About Us */
.aboutus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFFFFF;
    margin-bottom: 80px;
}

.aboutus__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.aboutus__block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.aboutus-title {
    color: #B3B3B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 20px;
    border: #B3B3B3 2px solid;
    border-radius: 8px;
}

.separator {
    height: 20px;
}

.aboutus__block-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.aboutus__text-title {
    color: #020405;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.aboutus__text-subtitle {
    color: #555;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.aboutus__text-subtitle span {
    color: #02B2A7;
}

/* Gallery */

.gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #FFFFFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 80px;
}

.gallery__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gallery__block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.gallery-title {
    color: #B3B3B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 20px;
    border: #B3B3B3 2px solid;
    border-radius: 8px;
}

.gallery__block-title {
    color: #020405;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.gallery__block-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 40px;
    max-height: 680px;
}

.gallery__images-left {
    width: 60%;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gallery__images-left-block {
    text-decoration: none;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.gallery__images-left-block-img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
    width: 100%;
}

.gallery__images-left-block-title {
    text-decoration: none;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 999;
}

.gallery__images-left-block-bg {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
    background: #FFFFFF;
    padding: 0 0 16px 16px;
    z-index: 999;
}

.gallery__images-left-block-arrow {
    background: #02B2A7;
    border-radius: 20px;
    padding: 28px;
}

.gallery__images-left-block-arrow-img {
    height: auto;
    width: 36px;
}

.gallery__images-right {
    width: 40%;
    padding-left: 20px;
}

.gallery__images-right-top {
    height: 50%;
    padding-bottom: 20px;
}

.gallery__images-right-bottom {
    height: 50%;
    padding-top: 20px;
}

.gallery__images-right-top-block {
    text-decoration: none;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.gallery__images-right-top-block-img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.gallery__images-right-top-block-title {
    text-decoration: none;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 999;
}

.gallery__images-right-top-block-bg {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
    background: #FFFFFF;
    padding: 0 0 16px 16px;
    z-index: 999;
}

.gallery__images-right-top-block-arrow {
    background: #02B2A7;
    border-radius: 20px;
    padding: 28px;
}

.gallery__images-right-top-arrow-img {
    height: auto;
    width: 28px;
}

.gallery__images-gradient-right-top {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -o-linear-gradient(89deg, #403360 0.59%, rgba(0, 0, 0, 0.00) 89.01%);
    background: linear-gradient(1deg, #403360 0.59%, rgba(0, 0, 0, 0.00) 89.01%);
}

.gallery__images-gradient-left {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -o-linear-gradient(89deg, #000 0.6%, rgba(0, 0, 0, 0.00) 84.88%);
    background: linear-gradient(1deg, #000 0.6%, rgba(0, 0, 0, 0.00) 84.88%);
}

.gallery__images-gradient-right-bottom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -o-linear-gradient(89deg, #000 11.35%, rgba(0, 0, 0, 0.00) 89.01%);
    background: linear-gradient(1deg, #000 11.35%, rgba(0, 0, 0, 0.00) 89.01%);
}

.gallert__images-right-bottom-block {
    text-decoration: none;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.gallery__images-right-bottom-block-img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.gallery__images-right-bottom-block-title {
    text-decoration: none;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 999;
}

.gallery__images-right-bottom-block-bg {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
    background: #FFFFFF;
    padding: 0 0 16px 16px;
    z-index: 999;
}

.gallery__images-right-bottom-block-arrow {
    background: #02B2A7;
    border-radius: 20px;
    padding: 28px;
}

.gallery__images-right-bottom-arrow-img {
    height: auto;
    width: 28px;
}


.gallery__block-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 16px;
    background: #02B2A7;
    padding: 20px 32px;
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    text-decoration: none;
    text-align: right;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery__block-link:hover {
    background: #02a095;
}

.gallery__block-link img {
    height: 26px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 48px;
}

/* Team */


.team {
    background: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 80px;
}

.team__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.team__block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.team-header {
    color: #B3B3B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 20px;
    border: #B3B3B3 2px solid;
    border-radius: 8px;
}

.team__block-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
}

.team__block-title {
    color: #020405;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.team__block-subtitle {
    color: #555;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.team__block-people {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 40px;
}

.team__block-people-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 40px;
}

.team__people-obj {
    max-width: 324px;
}

.team__people-obj-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
}

.team__people-obj-container-img {
    width: 100%;
    height: auto;
    display: block;
}



.team__people-obj-title {
    display: block;
    color: #02B2A7;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    padding: 12px;
    border: #02B2A7 2px solid;
    border-radius: 16px;
    margin-bottom: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team__people-obj-title:hover {
    background-color: #02B2A7;
    border: #FFFFFF 2px solid;
    color: #FFFFFF;
}

.team__people-obj-work {
    color: #555;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 12px;
}

.team__people-obj-subtitle {
    color: #555;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
}

/* advantages */

.advantages {
    background: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 80px;
}

.advantages__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.advantages__block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.advantages-title {
    color: #B3B3B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 20px;
    border: #B3B3B3 2px solid;
    border-radius: 8px;
}

.advantages__block-title {
    color: #020405;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.advantages__block-pluses {
    background: #1D9EE0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    padding: 40px;
}

.advantages__block-pluses-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.advantages__pluses-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.advantages__pluses-line-obg {
    width: 50%;
    padding: 20px;

}

.advantages__pluses-line-obg-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
}

.advantages__pluses-line-obg-text {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    padding-left: 90px;
}

.advantages__pluses-line-obg-text::before {
    top: 0;
    left: 0;
    content: "";
    background-color: #FFFFFF;
    background: url("../img/home/marker.png") no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 50px;
    height: 50px;
    position: absolute;
}

.advantages__pluses-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
    background: #FFFFFF;
    padding: 16px 0 0 16px;
    z-index: 999;
}

.advantages__pluses-bg-arrow {
    background: #FFFFFF;
    border: #1D9EE0 6px solid;
    border-radius: 20px;
    padding: 28px;
}

.advantages__pluses-bg-arrow-img {
    height: auto;
    width: 36px;
}

/* Stages */

.stages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFFFFF;
    margin-bottom: 80px;
}

.stages__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.stages__block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.stages-title {
    color: #B3B3B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 20px;
    border: #B3B3B3 2px solid;
    border-radius: 8px;
}

.stages__text-title {
    color: #020405;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.stages__block-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.stages__block-stage-bg {
    /* background: #1D9EE0; */
    border-top: #1D9EE0 4px solid;
    border-bottom: #1D9EE0 4px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.stages__block-stage-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    /* gap: 4px; */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stages__stage-obg {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.333%;
    background: #FFFFFF;
}

.stages__stage-obg:nth-child(1),
.stages__stage-obg:nth-child(2) {
    border-right: #1D9EE0 4px solid;
    border-bottom: #1D9EE0 4px solid;
}

.stages__stage-obg:nth-child(1),
.stages__stage-obg:nth-child(2),
.stages__stage-obg:nth-child(4),
.stages__stage-obg:nth-child(5) {
    border-right: #1D9EE0 4px solid;
}

.stages__stage-obg:nth-child(1),
.stages__stage-obg:nth-child(2),
.stages__stage-obg:nth-child(3) {
    border-bottom: #1D9EE0 4px solid;
}

.stages__stage-obg-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.stage__obg-top-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 8px;
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    margin-right: 24px;
    background: #1D9EE0;
}

.stage__obg-top-title {
    color: #1D9EE0;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.stages__stage-obg-bottom {
    display: block;
    color: #555;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.stages__stage-obg-link {
    display: block;
    width: 33.33%;
    text-decoration: none;
}

.stages__stage-obg-link-img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Contact Us */

.contactus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFFFFF;
    margin-bottom: 40px;
}

.contactus__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background: #02B2A7;
    border-radius: 12px;
}

.contactus__block-form {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px;

    background: url('../img/home/bg-form.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 50% auto;
}

.contactus__form-title {
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contactus__form-subtitle {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 40px;
}

.contactus__form-container {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}


.form__input,
.form__textarea {
    background: none;
    padding: 8px 8px 8px 0;
    border: none;
    border-bottom: #FFFFFF 2px solid;
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 24px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form__input.err,
.form__textarea.err,
.form__input:focus.err,
.form__textarea:focus.err {
    border-bottom: #FF5252 2px solid;
}

.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-bottom: #ffffff 2px solid;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#form__email {
    margin-bottom: 40px;
}

.form__textarea {
    resize: vertical;
    max-height: 300px;
    min-height: 40px;
    height: 40px;
}

.form__submit {
    border: none;
    cursor: pointer;
    display: block;
    padding: 16px 28px;
    background: #FFFFFF;
    border-radius: 8px;
    color: #02B2A7;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    width: 50%;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form__submit:hover {
    background: #D9D9D9;
}

.contactus__block-name-bg {
    padding: 0 0 12px 12px;
    border-radius: 0 0 0 12px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    right: 0;
}

.contactus__block-name {
    color: #B3B3B3;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #B3B3B3;

}

/* Creator */

.creator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFFFFF;
    margin-bottom: 40px;
}

.creator__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.creator__block-design,
.creator__block-dev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.creator__block-design {
    margin-bottom: 12px;
}

.creator__block-design-title,
.creator__block-dev-title {
    color: #B7B7B7;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.creator__block-design-title a,
.creator__block-dev-title a {
    color: #B7B7B7;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.creator__block-design-icon,
.creator__block-dev-icon {
    height: 18px;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 8px;
}

/* ---------------------Adaptive-------------------- */

@media (max-width: 1440px) {
    .container {
        max-width: 1024px;
    }

    .separator {
        height: 16px;
    }

    .main,
    .aboutus,
    .gallery,
    .team,
    .advantages,
    .stages {
        margin-bottom: 60px;
    }

    .main__block-title {
        font-size: 48px;
    }

    .main__block-subtitle {
        font-size: 20px;
    }

    .main__block-link {
        font-size: 20px;
        padding: 16px 20px;
    }

    .main__block-stats {
        padding: 30px 45px;
    }

    .main__block-parallax-img {
        
        height: 219px;
    }

    .stats__obj-text-title {
        font-size: 52px;
    }

    .stats__obj-text-subtitle {
        font-size: 14px;
    }

    .aboutus-title,
    .gallery-title,
    .team-header,
    .advantages-title,
    .stages-title {
        font-size: 14px;
        padding: 10px 16px;
    }

    .aboutus__text-title {
        font-size: 28px;
    }

    .aboutus__text-subtitle {
        font-size: 20px;
    }


    .gallery__images-left-block-bg {
        padding: 0 0 12px 12px;
    }

    .gallery__images-left-block-arrow {
        padding: 22px;
    }

    .gallery__images-left-block-arrow-img {
        width: 28px;
    }

    .gallery__images-left {
        padding-right: 16px;
    }

    .gallery__images-right {
        padding-left: 16px;
    }

    .gallery__images-right-top {
        padding-bottom: 16px;
    }

    .gallery__images-right-bottom {
        padding-top: 16px;
    }

    .gallery__images-right-top-block-bg,
    .gallery__images-right-bottom-block-bg {
        padding: 0 0 12px 12px;
    }

    .gallery__images-right-top-block-arrow,
    .gallery__images-right-bottom-block-arrow {
        padding: 22px;
    }

    .gallery__images-right-top-arrow-img,
    .gallery__images-right-bottom-arrow-img {
        width: 22px;
    }

    .gallery__images-right-top-block-title,
    .gallery__images-right-bottom-block-title,
    .gallery__images-left-block-title {
        font-size: 20px;
        bottom: 30px;
        left: 30px;
    }

    .gallery__block-link {
        font-size: 20px;
        padding: 16px 24px;
    }

    .gallery__block-link img {
        height: 20px;
        margin-left: 36px;
    }

    .gallery__block-title,
    .team__block-title,
    .advantages__block-title,
    .stages__text-title {
        font-size: 28px;
    }

    .team__block-subtitle {
        font-size: 20px;
    }

    .team__people-obj {
        max-width: 244px;
    }

    .team__block-people {
        gap: 30px;
    }

    .team__people-obj-container {
        margin-bottom: 24px;
    }

    .team__people-obj-title {
        font-size: 20px;
    }

    .team__people-obj-work {
        font-size: 16px;
    }

    .team__people-obj-subtitle {
        font-size: 14px;
    }

    .advantages__block-pluses {
        padding: 30px;
    }

    .advantages__pluses-line-obg {
        padding: 16px;
    }

    .advantages__pluses-line-obg-text {
        padding-left: 68px;
        font-size: 20px;
    }

    .advantages__pluses-line-obg-text::before {
        width: 38px;
        height: 38px;
    }

    .advantages__pluses-bg {
        padding: 12px 0 0 12px;
    }

    .advantages__pluses-bg-arrow {
        padding: 22px;
    }

    .advantages__pluses-bg-arrow-img {
        width: 28px;
    }

    .stages__text-title {
        margin-bottom: 30px;
    }

    .stages__stage-obg {
        padding: 30px;
    }

    .stage__obg-top-number {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
        font-size: 30px;
        line-height: 44px;
        margin-right: 18px;
    }

    .stage__obg-top-title {
        font-size: 20px;
    }

    .stages__stage-obg-top {
        margin-bottom: 16px;
    }

    .stages__stage-obg-bottom {
        font-size: 14px;
    }

    .contactus__block-form {
        padding: 30px;
    }

    .contactus__form-title {
        font-size: 28px;
    }

    .contactus__form-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .contactus__form-container {
        width: 60%;
    }

    .form__submit {
        padding: 12px 22px;
        font-size: 20px;
    }

    .contactus__block-name-bg {
        padding: 0 0 8px 8px;
    }

    .contactus__block-name {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }

    .main {
        margin-top: 40px;
    }

    .main__block-title {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .main__block-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .main__block-parallax-img {
        height: 166px;
    }

    .main__block-link {
        font-size: 16px;
        padding: 12px 16px;
    }

    .main__block-top {
        margin-bottom: 40px;
    }

    .main__block-stats {
        padding: 24px 36px;
    }

    .stats__obj-text-title {
        font-size: 40px;
    }

    .stats__obj-text-subtitle {
        font-size: 12px;
    }

    .main,
    .aboutus,
    .gallery,
    .team,
    .advantages,
    .stages {
        margin-bottom: 40px;
    }

    .aboutus-title,
    .gallery-title,
    .team-header,
    .advantages-title,
    .stages-title {
        font-size: 12px;
        padding: 8px 14px;
    }

    .separator {
        height: 12px;
    }

    .aboutus__text-title,
    .gallery__block-title,
    .team__block-title,
    .advantages__block-title,
    .stages__text-title {
        font-size: 22px;
    }

    .aboutus__text-subtitle,
    .team__block-subtitle {
        font-size: 16px;
    }

    .gallery__images-left {
        padding-right: 8px;
    }

    .gallery__images-right {
        padding-left: 8px;
    }

    .gallery__images-right-top {
        padding-bottom: 8px;
    }

    .gallery__images-right-bottom {
        padding-top: 8px;
    }

    .gallery__images-left-block-bg,
    .gallery__images-right-top-block-bg,
    .gallery__images-right-bottom-block-bg {
        display: none;
    }

    .gallery__images-right-top-block-title,
    .gallery__images-right-bottom-block-title,
    .gallery__images-left-block-title {
        font-size: 16px;
        bottom: 24px;
        left: 24px;
    }

    .gallery__block-images {
        margin-bottom: 20px;
    }

    .gallery__block-link {
        font-size: 16px;
        padding: 12px 18px;
    }

    .gallery__block-link img {
        height: 16px;
        margin-left: 28px;
    }

    .gallery__block-link {
        border-radius: 8px;
    }

    .gallery__images-left-block,
    .gallery__images-right-top-block,
    .gallert__images-right-bottom-block {
        border-radius: 12px;
    }

    .team__people-obj {
        width: 184px;
    }

    .advantages__block-pluses {
        padding: 24px;
    }

    .advantages__pluses-line-obg {
        padding: 12px;
    }

    .advantages__pluses-line-obg-text {
        padding-left: 52px;
        font-size: 16px;
    }

    .advantages__pluses-line-obg-text::before {
        width: 30px;
        height: 30px;
    }

    .advantages__pluses-bg {
        padding: 8px 0 0 8px;
    }

    .advantages__pluses-bg-arrow {
        padding: 18px;
        border: #1D9EE0 4px solid;
    }

    .advantages__pluses-bg-arrow-img {
        width: 22px;
    }

    .advantages__block-title {
        margin-bottom: 20px;
    }

    .stages__text-title {
        margin-bottom: 20px;
    }

    .stages__stage-obg,
    .stages__stage-obg-link {
        width: 50%;
    }

    .stages__stage-obg {
        border: none;
    }

    .stages__stage-obg:nth-child(1),
    .stages__stage-obg:nth-child(2) {
        border-right: none;
        border-bottom: none;
    }

    .stages__stage-obg:nth-child(1),
    .stages__stage-obg:nth-child(2),
    .stages__stage-obg:nth-child(4),
    .stages__stage-obg:nth-child(5) {
        border-right: none;
    }

    .stages__stage-obg:nth-child(1),
    .stages__stage-obg:nth-child(5),
    .stages__stage-obg:nth-child(3) {
        border-bottom: none;
        border-right: #1D9EE0 2px solid;
    }

    .stages__stage-obg:nth-child(3),
    .stages__stage-obg:nth-child(4),
    .stages__block-stage-bg {
        border-top: #1D9EE0 2px solid;
        border-bottom: #1D9EE0 2px solid;
    }

    .contactus__form-title {
        font-size: 22px;
    }

    .contactus__form-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .form__input,
    .form__textarea {
        font-size: 14px;
    }

    .form__input::-webkit-input-placeholder,
    .form__textarea::-webkit-input-placeholder {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .form__input::-moz-placeholder,
    .form__textarea::-moz-placeholder {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .form__input:-ms-input-placeholder,
    .form__textarea:-ms-input-placeholder {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .form__input::-ms-input-placeholder,
    .form__textarea::-ms-input-placeholder {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .form__input::placeholder,
    .form__textarea::placeholder {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
    }

    .contactus__block-form {
        background-size: 75% auto;
        padding: 24px;
    }

    .form__submit {
        padding: 10px 18px;
        font-size: 16px;
    }

    .contactus {
        margin-bottom: 20px;
    }

    .creator__block-design-title,
    .creator__block-dev-title,
    .creator__block-design-title a,
    .creator__block-dev-title a {
        font-size: 14px;
    }













}

@media (max-width: 768px) {
    .container {
        max-width: 425px;
    }

    .main__block-right {
        display: none;
    }

    .main__block-left {
        width: 100%;
        padding: 0;
    }

    .main__block-title {
        font-size: 28px;
        margin-bottom: 8px;
        text-align: center;
    }

    .main,
    .aboutus,
    .gallery,
    .team,
    .advantages,
    .stages {
        margin-bottom: 28px;
    }

    .main {
        margin-top: 28px;
    }

    .main__block-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        text-align: center;
    }

    .main__block-link {
        display: block;
    }

    .main__block-stats {
        padding: 18px;
        border-radius: 14px;
    }

    .stats__obj-line {
        margin-right: 14px;
    }

    .stats__obj-text-title {
        font-size: 26px;
    }

    .stats__obj-text-subtitle {
        font-size: 10px;
    }

    .aboutus-title,
    .gallery-title,
    .team-header,
    .advantages-title,
    .stages-title {
        font-size: 10px;
        padding: 6px 12px;
    }

    .aboutus__text-title,
    .gallery__block-title,
    .team__block-title,
    .advantages__block-title,
    .stages__text-title {
        font-size: 18px;
    }

    .aboutus__text-subtitle,
    .team__block-subtitle {
        font-size: 12px;
    }

    .gallery__block-title {
        margin-bottom: 20px;
    }

    .gallery__block-images {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .gallery__images-left {
        padding: 0;
        width: 100%;
        margin-bottom: 12px;
    }

    .gallery__images-right {
        padding: 0;
        width: 100%;
    }

    .gallery__images-right-top,
    .gallery__images-right-bottom {
        margin-bottom: 12px;
        padding: 0;
    }

    .gallery__block-images {
        max-height: none;
        margin-bottom: 0;
    }

    .gallery__block-link img {
        margin-left: 18px;
    }

    .team__people-obj-container {
        margin-bottom: 16px;
    }

    .team__people-obj-title {
        font-size: 16px;
        padding: 8px;
        border-radius: 10px;
        margin-bottom: 8px;
    }

    .team__people-obj-work {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .team__people-obj {
        width: 184px;
    }

    .team__block-people {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .team__block-people-scroll {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 40px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 20px;
    }

    .team__people-obj-subtitle {
        text-align: center;
    }

    .advantages__pluses-line-obg {
        width: 100%;
        padding: 0;
    }

    .advantages__pluses-line {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .advantages__pluses-line-obg-container {
        margin-bottom: 20px;
    }

    .advantages__pluses-bg {
        display: none;
    }

    .advantages__pluses-line-obg-text {
        padding-left: 40px;
    }

    .advantages__pluses-line-obg-text::before {
        width: 24px;
        height: 24px;
    }

    .mb-none {
        margin-bottom: 0;
    }

    .stages__stage-obg,
    .stages__stage-obg-link {
        width: 100%;
    }

    .stages__stage-obg-link {
        border-radius: 12px;
        overflow: hidden;
    }

    .stages__stage-obg {
        padding: 24px;
    }


    .stages__stage-obg:nth-child(1),
    .stages__stage-obg:nth-child(5),
    .stages__stage-obg:nth-child(3) {
        border: none;
    }

    .stages__stage-obg:nth-child(3),
    .stages__stage-obg:nth-child(4),
    .stages__block-stage-bg {
        border: none;
    }

    .stages__stage-obg:nth-child(1),
    .stages__stage-obg:nth-child(2),
    .stages__stage-obg:nth-child(3),
    .stages__stage-obg:nth-child(4) {
        border-bottom: #1D9EE0 2px solid;
    }

    .contactus__form-container {
        width: 100%;
    }

    .contactus__block-name-bg {
        padding: 0 0 4px 4px;
    }

    .contactus__block-name {
        padding: 4px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .contactus__form-subtitle {
        font-size: 12px;
    }

    .contactus__form-title {
        font-size: 18px;
    }

    .form__submit {
        width: 100%;
    }

    .creator {
        margin-bottom: 20px;
    }

    .contactus__block-form {
        background-size: 100% auto;
    }

    .stats__obj-line {
        min-width: 2px;
        max-width: 2px;
    }


}

/* @media (max-width: 425px) {
    .container {
        max-width: 375px;
    }

} */

@media (max-width: 375px) {
    .container {
        max-width: 320px;
    }

    .main__block-title {
        font-size: 20px;
    }

    .main__block-subtitle {
        font-size: 12px;
    }

    .main__block-link {
        font-size: 14px;
        padding: 10px;
    }

    .main__block-stats {
        padding: 12px;
        border-radius: 10px;
    }

    .stats__obj-text-title {
        font-size: 18px;
    }

    .stats__obj-text-subtitle {
        font-size: 8px;
    }

    .stats__obj {
        margin-right: 8px;
    }

    .stats__obj-line {
        margin-right: 4px;
    }

    .gallery__block-link {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .contactus__block-form {
        padding-top: 40px;
    }

    .contactus__form-title {
        text-align: center;
    }

    .contactus__form-subtitle {
        font-size: 10px;
        text-align: center;
        margin-bottom: 12px;
    }

    .form__input,
    .form__textarea {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .form__submit {
        padding: 8px 12px;
    }

    .advantages__block-pluses {
        padding: 18px;
    }

    .advantages__pluses-line-obg-text {
        font-size: 14px;
        padding-left: 32px;
    }

    .advantages__pluses-line-obg-container {
        min-height: 24px;
    }



}