.contacts {
    width: 100%;
}
.yandex {
    position: relative;
}
.contacts__wrap {
    position: absolute;
    left: 200px;
    bottom: 0;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 5px;
}
.contacts__wrap h2 {
    font-family: "Manrope", sans-serif;
    font-style: bold;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.7em;
    color: #000000;
    text-align: left;
    margin-bottom: 30px;
}

.contacts__wrap h3 {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7em;
    color: #000000;
    text-align: left;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.contact__description {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7em;
    color: #000000;
    text-align: left;
}
/* .contacts__download {
    text-decoration: dotted;
} */
.checkbox__wrap {
    display: flex;
    align-items: flex-start;
}
.checkbox__wrap > input{
    margin-top: 5px;
    margin-right: 10px;
}
.check__label {
    margin: 0;
}
.cont__inner:not(:last-child) {
    margin-bottom: 10px;
}
.btn__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .contacts__wrap {
        left: 120px;
        padding: 45px 60px 45px 45px;
    }
    .contacts__wrap h2 {
        font-size: 36px;
        line-height: 36px;
    }
    .contacts__wrap h3 {
        font-size: 14px;
        line-height: 15px;
    }
    .contact__description {
        font-size: 13px;
        line-height: 14px;
    }
    .contact__description:not(:last-child) {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .contacts__wrap {
        left: 80px;
        padding: 35px 50px 35px 35px;
    }
    .contacts__wrap h2 {
        font-size: 30px;
    }
    .contacts__wrap h3 {
        font-size: 14px;
    }
    .contact__description {
        font-size: 13px;
    }
    .contact__description:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media (max-width: 500px) {
    .contacts__wrap {
        left: 0;
        bottom: 0;
        padding: 15px;
    }
    .contacts__wrap h2 {
        font-size: 20px;
    }
    .contacts__wrap h3 {
        font-size: 12px;
    }
    .contact__description {
        font-size: 11px;
    }
    .contact__description:not(:last-child) {
        margin-bottom: 15px;
    }
}