.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.main-information {
    background-color: var(--white);
    background-image: url("/images/main-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.main-information .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 24px;
}

.menu {
    list-style: none;
    gap: 20px;
}

.menu-item > a {
    text-decoration: none;
    color: var(--green);
}

.main-title {
    font-size: 26px;
    text-align: center;
}

.text-mute {
    color: var(--gray);
    font-size: 13px;
}

.desc {
    flex-basis: 50%;
    color: var(--black);
}

.links {
    gap: 20px;
}

.links > a {
    text-decoration: none;
    color: var(--green);
    height: 50px;
    padding: 0 16px;
    border-radius: 25px;
    border: 1.5px solid var(--gray);
    gap: 4px;
    background-color: #ffffff;
    margin-top: 12px;
}

.links > a:last-child {
    background-color: var(--green);
    color: #fff;
}

.links > a:first-child:hover {
    color: #fff;
    background-color: var(--green);
    border-color: #fff;
}

.links > a:first-child:hover img {
    filter: brightness(0) saturate(100%) invert(96%) sepia(89%) saturate(0%) hue-rotate(283deg) brightness(106%) contrast(102%);
}

.links > a:last-child:hover img {
    filter: brightness(0) saturate(100%) invert(31%) sepia(8%) saturate(5410%) hue-rotate(36deg) brightness(105%) contrast(88%);
}

.links > a:last-child:hover {
    color: var(--green);
    background-color: #ffffff;
}

/*Second section*/
.service-advantages {
    background-color: var(--white-gray);
    position: relative;
}

.leaf-img {
    position: absolute;
    top: -5%;
    height: 80px;
}

.leaf-img.right {
    right: 0;
    transform: rotateY(-180deg);
}

.title {
    color: var(--black);
    text-align: center;
    font-size: 20px;
}

.services {
    gap: 12px;
    flex-direction: column;
}

.services .service-item {
    width: 100%;
    background-color: var(--white);
    padding: 0 16px;
    height: 60px;
    gap: 12px;
    border-radius: 35px;
    box-shadow: 0 2px 5px 2px #4F515908;
}
.services .service-item img{
    height: 45px;
}
.service-item .text-mute {
    font-size: 13px;
}

.footer {
    background-color: var(--green-60);
}
.footer .wrapper {
    flex-direction: column;
}
.footer .socials {
    list-style: none;
    gap: 12px;
}

.footer .socials .social-item a {
    display: flex;
    width: 38px;
    height: 38px;
    background-color: var(--green);
    border-radius: 50%;
    padding: 8px;
}

.how-we-work {
    background-color: var(--white-gray);
    min-height: 300px;
}

/*STEPS*/

.how-we-work .wrapper {
    background: var(--white);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    min-height: 240px;
    padding: 24px 0 48px;
}


.steps {
    display: flex;
    gap: 16px;
    align-items: center;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    margin-top: 12px;
}

.steps .title {
    font-size: 14px;
    font-weight: 400
}

.badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.badge img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.step-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, var(--white-gray) 50%);
    flex-basis: 40px;
    align-self: center;
    margin-top: -20px;
}

@media (max-width: 720px) {
    .steps {
        flex-direction: column;
        gap: 12px
    }

    .step {
        width: 100%
    }

    .step-line {
        display: none
    }
}


/*BOX*/
.products {
    background-color: var(--white-gray);
}

.confidential{
    gap: 16px;
}
.confidential a{
    color: var(--green);
}