.main {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main__previewPicture {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 0;
    display: block;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

.main__preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main__content {
    position: relative;
    z-index: 1;
    left: 20px;
    top: 20px;
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background-color: rgba(0, 0, 0, 0.32);
    padding: 40px;
}

.main__logo {
    width: 142px;
    height: 48px;
    position: absolute;
    left: 40px;
    top: 40px;
}

.main__menu {
    position: absolute;
    right: 40px;
    top: 40px;
}

.main__contactNumber {
    color: white;
    margin-left: 32px;
}

.main__calculatePrice {
    margin-left: 16px;
}

.main__title {
    position: absolute;
    left: 40px;
    bottom: 40px;
}

.main__title p,
.main__title h1 {
    color: white;
}

.main__titleH1 {
    margin-bottom: 16px;
}

.main__titleP {
    margin-bottom: 32px;
    font-weight: 300;
}

.main__bonuses {
    gap: 16px;
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.main__bonus {
    padding: 20px 24px;
    position: relative;
    height: 114px;
    background-color: #ffffff33;
    backdrop-filter: blur(3px);
    border-left: 1px solid #ffffffb2;
}

.main__bonus_long {
    width: 280px;
}

.main__bonus_short {
    width: 207px;
}

.main__bonusText {
    color: white;
}

.main__bonusIcon {
    position: absolute;
    top: 20px;
    right: 24px;
}

.main__menuMobileButton {
    display: none;
    background-color: #ffffff33;
    backdrop-filter: blur(3px);
    width: 48px;
    height: 48px;
    padding: 12px;
}

@media (max-width: 1450px) {
    .main__previewPicture {
        left: 8px;
        top: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }

    .main__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
        left: 8px;
        top: 8px;
        position: absolute;
        padding: 12px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }

    .main__menuItem,
    .main__contactNumber,
    .main__calculatePrice,
    .main__menu > .button-s:not(.main__menuMobileButton) {
        display: none;
    }

    .main__menuMobileButton {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main__logo {
        position: absolute;
        left: 12px;
        top: 12px;
        z-index: 2;
    }

    .main__title,
    .main__bonuses {
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        right: unset;
    }

    .main__title {
        margin-top: auto;
    }

    .main__menu {
        position: absolute;
        left: auto;
        right: 12px;
        top: 12px;
        bottom: auto;
        z-index: 2;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .main__titleP {
        margin-bottom: 24px;
    }
}

@media (max-width: 550px) {
    .main__content {
        gap: 16px;
    }

    .main__menuMobileButton {
        width: 40px;
        height: 40px;
    }

    .main__bonus_long,
    .main__bonus_short {
        width: 100%;
        height: unset;
        gap: 12;
        padding: 16px;
    }

    .main__bonusIcon {
        top: 16px;
        right: 16px;
    }

    .main__calculatePriceBottom {
        width: 100%;
    }
}
