.main-block .wrapper {
    justify-content: inherit;
}
.main-block span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 40px;
    position: absolute;
    top: -60px;
}
.main-block span::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--white);
    border-radius: 50%;
}
.main-block .icon {
    margin-right: 110px;
}
.main-block .text h1 {
    max-width: 620px;
}
.description {
    padding-top: 120px;
}
.description .block-text {
    background: var(--orange-100);
    border-radius: 30px;
    padding: 37px 40px 30px 60px;
    min-height: 210px;
}
.description .block-text p {
    max-width: 1080px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 30px;
}
.description h2 {
    font-size: 34px;
    line-height: 44px;    
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-200);
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 120px 0 20px;
}
.description h2::before {
    font-family: 'icon';
    content: '\e91e';
    color: var(--orange-100);
    font-size: 30px;
    line-height: 30px;
}
.description ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 0 20px;
}
.description ul li,
.description p, 
.description div{
    font-size: 16px;
    line-height: 22px;    
    color: var(--dark-200);
}
.description ul li::marker {
    width: 6px;
    height: 6px;
    color: var(--orange-100);
}
section.contact-form {
    margin-top: 110px;
}

@media screen and (max-width: 1220px) {
    .ellipse {
        right: unset;
    }
    .main-block::before {
        background-size: contain;
        width: 150%;
    }
}
@media screen and (max-width: 768px) {
    .ellipse {
        right: 0;
    }
    .main-block {
        padding: 80px 0 100px;
        min-height: 520px;
    }
    .main-block::before {
        top: 0;
        left: -30%;
        width: 150%;
    }
    .main-block .text h1 {
        font-size: 25px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .main-block .text p {
        font-size: 20px;
        line-height: 28px;
    }
    .description {
        padding-top: 80px;
    }
    .description .block-text {
        padding: 30px;
    }
    .description h2 {
        margin-top: 80px;
        font-size: 20px;
        line-height: 44px;
    }
    .description ul {
        margin-top: 20px;
    }
}
@media screen and (max-width: 375px)  {
    .main-block {
        padding: 50px 0 80px;
        min-height: 460px;
    }
    .main-block::before {
        width: 180%;
        left: -60%;
    }
    .main-block span {
        font-size: 14px;
    }
    .main-block .text h1 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .description {
        padding-top: 70px;
    }
    .description .block-text {
        padding: 30px 20px;
    }
    .description .block-text p {
        font-size: 14px;
        line-height: 20px;
    }
    .description h2 {
        margin-top: 80px;
    }
    section.contact-form {
        margin-top: 90px;
    }
}