.destination-section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 50px;
    background-image: url("../images/destination.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.destination-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
}

.destination-container {
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) {
    .destination-container {
        padding-left: 120px;
        padding-right: 120px;
    }
}

.destination-sub-title {
    padding-top: 20px;
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #d02129;
    text-align: center;
    margin-bottom: 20px;
}

.destination-main-title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    color: #444444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.destination-main-title .brand {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 50px;
    color: #27368b;
}

.btn-discover-destination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 40px;
    margin-top: 50px;
    border: 1.31px solid #27368b;
    border-radius: 68.63px;
    background: transparent;
    color: #27368b !important;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-decoration: none !important;
    gap: 8px;
}

.btn-discover-destination::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../images/arrow-narrow-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.destination-description {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #666666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .destination-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .destination-main-title {
        font-size: 32px;
        line-height: 40px;
    }
}
