.more-destinations {
    color: var(--color-white);
    background: var(--color-dark-red-wine);
    padding: 0 0 120px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .more-destinations {
        padding: 80px 0;
    }
}

@media (max-width: 568px) {
    .more-destinations {
        padding: 64px 0;
    }
}

.more-destinations-wrap {
    display: flex;
    gap: 40px;
}

@media (max-width: 1440px) {
    .more-destinations-wrap {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .more-destinations-wrap {
        flex-direction: column;
        gap: 32px;
    }
}

.more-destinations--decor-titles {
    font-family: "Cormorant Garamond", serif;
}

.more-destinations--decor-title-2 {
    font-weight: 400;
}

.more-destinations--left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 940px;
}

@media (max-width: 768px) {
    .more-destinations--left {
        padding-left: 40px;
        gap: 54px;
    }
}

@media (max-width: 568px) {
    .more-destinations--left {
        padding: 0;
        gap: 24px;
    }

    .more-destinations--decor-titles {
        padding: 0 16px;
    }
}

.more-destinations--decor-line-left {
    height: 1px;
    width: 236px;
    margin-top: 44px;
    background: var(--color-white);
    margin-right: 40px;
}

@media (max-width: 1440px) {
    .more-destinations--decor-line-left {
        width: 155px;
        margin-top: 35px;
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    .more-destinations--decor-line-left {
        display: none;
    }

    .more-destinations--decor-line-right {
        height: 1px;
        width: 190px;
        background: var(--color-white);
        margin-left: 70px;
        margin-top: 29px;
    }
}

@media (max-width: 568px) {
    .more-destinations--decor-line-right {
        display: none;
    }

    .more-destinations--decor-line-bottom {
        height: 1px;
        width: 190px;
        background: var(--color-white);
        float: right;
        margin-top: 24px;
    }
}

.more-destinations--decor-title-1 {
    display: flex;
    width: 100%;
}

.more-destinations--decor-title-1 .title {
    min-width: fit-content;
}

.more-destinations--decor-title-2 {
    float: right;
}

@media (max-width: 768px) {
    .more-destinations--decor-title-2 {
        float: unset;
        margin-left: 210px;
    }
}

@media (max-width: 568px) {
    .more-destinations--decor-title-2 {
        margin-left: 142px;
    }
}

.more-destinations--left-text-decor {
    display: flex;
    justify-content: flex-end;
}

.more-destinations--left-text-decor svg {
    height: 100%;
    max-height: 66px;
}

@media (max-width: 1440px) {
    .more-destinations--left-text-decor svg {
        max-height: 64px;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .more-destinations--left-text-decor {
        justify-content: start;
    }

    .more-destinations--left-text-decor svg {
        max-height: 55px;
        max-width: 448px;
    }
}

@media (max-width: 568px) {
    .more-destinations--left-text-decor svg {
        max-height: 42px;
    }
}

.more-destinations--right {
    display: flex;
    max-width: 940px;
    width: 100%;
    gap: 8px;
}

@media (max-width: 1440px) {
    .more-destinations--right {
        max-width: 705px;
    }
}

@media (max-width: 768px) {
    .more-destinations--right {
        padding-left: 40px;
    }
}

@media (max-width: 568px) {
    .more-destinations--right {
        padding-left: 16px;
    }
}

.more-destinations--right-image-wrapper {
    display: flex;
    width: 383px;
    height: 559px;
}

.more-destinations--right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .more-destinations--right-image-wrapper {
        width: 300px;
        height: 439px;
    }
}

@media (max-width: 768px) {
    .more-destinations--right-image-wrapper {
        width: 337px;
        height: 489px;
    }
}

@media (max-width: 568px) {
    .more-destinations--right-image-wrapper {
        width: 168px;
        height: 244px;
    }
}