.about-first-block{
    display: flex;
    gap: 20px;
}
.about-first-block .text-area{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    min-height: 580px;
    border-radius: 16px;
    background: #007444;
    color: #FFF;
}
.about-first-block .text-area .title-page{
    font-size: 50px;
    font-weight: 600;
    line-height: 120%;
}
.about-first-block .text-area .text-section{
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}
.about-first-block .text-area .button-action{
    margin-top: auto;
    display: inline-flex;
    height: 54px;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
    max-width: max-content;
    border-radius: 100px;
    border: 1px solid #FFF;
    transition: background 0.7s, color 0.7s;
}
.about-first-block .text-area .button-action:hover{
    color: #007444;
    background: #FFF;
}
.about-first-block .img-area{
    display: flex;
    width: 100%;
    max-width: 600px;
    min-height: 580px;
    border-radius: 16px;
    overflow: hidden;
}
.about-first-block .img-area img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}
@media (max-width: 1030px) {
    .about-first-block .text-area .title-page {
        font-size: 32px;
    }
    .about-first-block .text-area {
        gap: 14px;
        padding: 24px;
        min-height: 366px;
    }
    .about-first-block .img-area {
        min-height: 366px;
    }
    
}
@media (max-width: 725px) {
    .about-first-block {
        flex-direction: column;
        gap: 10px;
    }
    .about-first-block .text-area {
        max-width: 100%;
    }
    .about-first-block .img-area {
        max-width: 100%;
    } 
}

.more-10{
    display: flex;
    width: 100%;
}
.more-10 .text-total{
    display: flex;
    align-items: center;
    gap: 32px;
}
.more-10 .first-world{
    display: inline-flex;
    color: #222422;
    font-size: 42px;
    font-weight: 600;
    line-height: 110%;
}
.more-10 .group-number{
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.more-10 .group-number .number{
    display: inline-flex;
    color: #007444;
    font-size: 140px;
    font-weight: 600;
    line-height: 100%;
}
.more-10 .group-number .text-right-number{
    display: inline-flex;
    color: #007444;
    font-size: 42px;
    font-weight: 600;
    line-height: 110%;
}
.more-10 .other-text{
    display: inline-flex;
    color: #222422;
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
}
@media (max-width: 1000px) {
    .more-10 .other-text {
        color: #222422;
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .more-10 .text-total {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
        align-items: center;
    }
    .more-10 .other-text {
        text-align: center;
    }
}
@media (max-width: 555px) {
    .more-10 .text-right-number,
    .more-10 .number,
    .more-10 .group-number,
    .more-10 .first-world,
    .more-10 .other-text,
    .more-10 .text-total {
        display:inline;
        font-size: 32px !important;
    }
}

.steps-age{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.steps-age .step{
    display: inline-flex;
    padding: 32px;
    flex-direction: column;
    border-radius: 16px;
    background: #F0F0F0;
    width: calc(33.3% - 16px);
    min-height: 248px;
    gap: 64px;
}
.steps-age .step .year{
    color: #222422;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
}
.steps-age .step.green-style .year{
    color: #007444;
}
.steps-age .step .text{
    color: #222422;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}
.steps-age .step .text span{
    color: #007444;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
}
.steps-age .step.img-item {
    background: #007444;
    display: flex;
    justify-content: center;
    align-items: center;
}
.steps-age .step.img-item .img-area{
    width: 319;
    height: 61;
}
.steps-age .step.img-item .img-area img{
    width: 100%;
    height: auto;
    object-fit: contain;
}


@media (max-width: 935px) {
    .steps-age .step.img-item {
        width: 100%;
    }
    .steps-age .step{
        width: calc(50% - 12px);
    }
}
@media (max-width: 650px) {
    .steps-age .step{
        gap: 48px;
        padding: 24px;
    }
    .steps-age {
        gap: 14px;
    }
    .steps-age .step .text {
        font-size: 14px;
    }
}
@media (max-width: 580px) {
    .steps-age .step {
         width: 100%;
         min-height: 188px;
    }
}

.control-quality{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}
.control-quality .title-section{
    color: #222422;
    font-size: 42px;
    font-weight: 600;
    line-height: 110%;
    width: 100%;
    max-width: 600px;
}
.control-quality .items-area{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.control-quality .items-area .item{
    width: 100%;
    max-width: calc(46% - 10px);
    min-height: 230px;
    gap: 59px;
    border-radius: 16px;
    background: #F0F0F0;
    flex-direction: column;
    padding: 40px;
    display: flex;
    color: #222422;
}
.control-quality .items-area .item.img-item{
    padding: 0;
}
.control-quality .items-area .item.img-item .img-area{
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.control-quality .items-area .item.img-item .img-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.control-quality .items-area .item.img-item{
    padding: 0;
}
.control-quality .items-area .item .number{
    color: #007444;
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: auto;
}
.control-quality .items-area .item .text{
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    width: 100%;
    max-width: 90%;
}
.control-quality .items-area .item.large {
    max-width: calc(54% - 10px);
}
.control-quality .items-area .item.grine-style {
    background: #007444;
    color: #FFF;
}
.control-quality .items-area .item.grine-style  .number{
    color: #FFF;
}


@media (max-width: 820px) {
    .control-quality .items-area .item {
        min-height: 210px;
        gap: 57px;
        padding: 24px;
    }
    .control-quality .items-area .item .text {
        font-size: 14px;
        max-width: 100%;
    }
}
@media (max-width: 630px) {
    .control-quality .title-section {
        font-size: 28px;
    }
    .control-quality .items-area .item {
        max-width: 100% !important;
    }
}

.requirements {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.requirements .title-section {
    color: #222422;
    font-size: 42px;
    font-weight: 600;
    line-height: 110%;
    width: 100%;
    max-width: 600px;
}

.requirements .items-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.requirements .items-area .item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(25% - 15px);
    align-items: center;
}
.requirements .items-area .item .img-area{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.requirements .items-area .item .img-area img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.requirements .items-area .item .text-area{
    color: #222422;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
}

.requirements .loading-area{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.requirements .loading-area .item{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    border-radius: 16px;
    background: #FFF;
    padding: 32px;
    width: calc(50% - 10px);
}
.requirements .loading-area .item .item-wrapper{
    display: flex;
    gap: 8px;
    flex-direction: column;
    color: #222422;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
}
.requirements .loading-area .item .item-wrapper .text-info{
    color: #007444;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
}
.requirements .loading-area .item .icon-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #007444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.31982 11.6799L11.8798 14.2399L14.4398 11.6799' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.8799 4V14.17' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20 12.1799C20 16.5999 17 20.1799 12 20.1799C7 20.1799 4 16.5999 4 12.1799' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

@media (max-width: 900px) {
    .requirements .items-area .item {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: calc(50% - 10px);
        align-items: center;
    }
    .requirements .loading-area .item {
        width: 100%;
    }
}
@media (max-width: 630px) {
    .requirements .title-section{
        font-size: 28px;
        max-width: 100%;
    }
}
@media (max-width: 555px) {
    .requirements .items-area {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .requirements .items-area::-webkit-scrollbar {
        display: none;
    }
    .requirements .items-area .item {
        width: 295px;
        flex-shrink: 0;
    }
    .requirements .items-area .item .img-area{
        width: 100%;
        height: 438px;
        flex-shrink: 0;
    }
    .requirements .loading-area .item .item-wrapper .text-info {
        font-size: 14px;
    }
    .requirements .loading-area .item .item-wrapper {
        font-size: 20px;
    }
    .requirements .loading-area .item {
        padding: 24px;
    }
}

.feedbackform2 {
    display: flex;
}

.feedbackform2 .wrapper-form {
    display: flex;
    border-radius: 16px;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
    padding: 60px;
    background: #007444;
}

.feedbackform2 .wrapper-form .text-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.feedbackform2 .wrapper-form .text-area .title {
    color: #FFF;
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
}

.feedbackform2 .wrapper-form .text-area .text {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

.feedbackform2 .wrapper-form .form-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    gap: 16px;
}

@media (max-width: 950px) {
    .feedbackform2 .wrapper-form {
        padding: 24px;
    }

    .feedbackform2 .wrapper-form .text-area .title {
        font-size: 32px;
    }

    .feedbackform2 .wrapper-form .text-area .text {
        font-size: 14px;
    }
}

@media (max-width: 950px) {
    .feedbackform2 .wrapper-form {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
















