@media (min-width: 0) {
    .gifts {
        color: #fff;
        padding: 70px 0 80px 0;
    }
    .gifts__title {
        font-size: 24px;
        line-height: 1.1;
        font-family: "GothamBook";
    }
    .gifts__paragraph {
        font-size: 16px;
        line-height: 1.3;
    }
    .gifts__paragraph:first-of-type {
        padding: 30px 0 0 0;
    }
    .gifts__paragraph:not(:first-of-type) {
        padding: 15px 0 0 0;
    }
    .gifts__image {
        max-width: 100%;
    }
    .gifts__button {
        margin: 30px 0 0 0;
        width: 100%;
    }
    .gifts__images {
        position: relative;
        margin: 20px 0 0 0;
    }
    .gifts__circle {
        width: 120px;
        height: 120px;
        background-color: #f2ddde;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: rotate(10deg);
    }
    .gifts__circle-inside {
        border: 1.4px dashed rgba(0, 0, 0, 0.558);
        width: 90%;
        height: 90%;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .gifts__circle-text {
        color: #2d2926;
        text-align: center;
        font-family: "GothamMedium";
        font-size: 12px;
        line-height: 1.5;
    }
    .gifts-modal {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100vw;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: scroll;
        display: none;
    }
    .gifts-modal__main {
        max-width: 90%;
        margin: 70px auto 70px auto;
        background-color: #1f1c1a;
        line-height: 1.3;
    }
    .gifts-modal__image {
        width: 100%;
    }
    .gifts-modal__title {
        font-size: 32px;
        text-align: center;
        font-family: 'GothamMedium';
    }
    .gifts-modal__list {
        font-size: 18px;
    }
    .gifts-modal__paragraph {
        padding: 30px 0 0 0;
    }
    .gifts-modal__main-content {
        max-width: 85%;
        margin: 0 auto;
        padding: 30px 0;
    }
    .gifts-modal__bg {
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.535);
        width: 100vw;
        height: 100vh;
        z-index: -1;
    }
    .gifts-modal__header {
        position: fixed;
        top: 0;
        display: flex;
        justify-content: flex-end;
        width: 90%;
        right: 5%;
        padding: 20px 0 0 0;
    }
}

@media (min-width: 480px) {
    .gifts__button {
        display: block;
        margin: 30px auto 0 auto;
    }
    .gifts__circle {
        width: 150px;
        height: 150px;
    }
    .gifts__circle-text {
        font-size: 14px;
    }
    .gifts {
        padding: 100px 0 80px 0;
    }
    .gifts-modal__main {
        max-width: 70%;
    }
}

@media (min-width: 640px) {
    .gifts {
        padding: 130px 0 80px 0;
    }
    .gifts__title {
        font-size: 42px;
    }
    .gifts__paragraph {
        font-size: 18px;
    }
    .gifts__images {
        max-width: 430px;
        margin: 20px auto 0 auto;
    }
    .gifts__circle {
        width: 170px;
        height: 170px;
        bottom: -10%;
        right: -10%;
    }
    .gifts__circle-text {
        font-size: 16px;
    }
    .gifts__button {
        margin: 60px auto 0 auto;
    }
    .gifts-modal__main {
        max-width: 460px;
    }
}

@media (min-width: 958px) {
    .gifts {
        display: grid;
        grid-template-areas: "title images"
        "paragraphs images"
        "button images";
        grid-template-columns: 1fr 1fr;
    }
    .gifts__title {
        grid-area: title;
        font-size: 38px;
    }
    .gifts__paragraphs {
        grid-area: paragraphs;
    }
    .gifts__images {
        grid-area: images;
        max-width: 100%;
        align-items: flex-end;
    }
    .gifts__button {
        grid-area: button;
        margin: 40px 0 0 0;
    }
    .gifts__circle {
        bottom: 60px;
        right: auto;
        left: -25px;
    }
}

@media (min-width: 1200px) {
    .gifts {
        padding: 150px 0 80px 0;
    }
    .gifts__title {
        font-size: 46px;
    }
    .gifts__paragraph:first-of-type {
        padding: 0 0 0 0;
    }
    .gifts__button {
        margin: 0 0 0 0;
    }
    .gifts-modal__main {
        max-width: 560px;
    }
}

@media (min-width: 1700px) {
    .gifts {
        padding: 220px 0 100px 0;
    }
    .gifts__title {
        font-size: 52px;
    }
    .gifts__paragraph {
        font-size: 25px;
    }
    .gifts__circle {
        width: 220px;
        height: 220px;
    }
    .gifts__circle-text {
        font-size: 22px;
    }
}