main {
 font-family: 'Gotham', sans-serif
}

.hero {
    position: relative;
    height: 400px;
    width: 100%;
}

.hero__img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    inset: 0;
    position: absolute;
}

.hero__description {
    font-family: 'Gotham', sans-serif;
    padding: 48px 48px 48px 15%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 16px;
    color: #fff;
}

.bg-grey {
    background-color: rgb(241 239 237);
}

.bg-charcoal {
    background-color: rgb(67 65 61);
}

.bg-sand {
    background-color: #d5d1cb;
}

.destination-description {
    color: rgb(67 65 61);
    padding: 64px 0 48px 0;
    width: 100%;
    text-align: center;
}

.destination-description .text-wrapper {
    padding: 0 16px;
    max-width: 896px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 28px;
}


.destination-airports {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    color: rgb(67 65 61);
    padding: 40px 24px;
    width: 100%;
    gap: 32px;
}

.destination-airports__img-wrapper {

}

.destination-airports__img-wrapper img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.destination-airports__text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.destination-airports__text-block .airports-title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 16px;
}

.destination-airports__text-block .airports-description {
    font-size: 18px;
    line-height: 28px;
    max-width: 512px;
    margin-bottom: 24px;
}

.destination-airports__text-block .airports-list {
    font-size: 18px;
    line-height: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.destination-airports__text-block .airports-list .airports-list-item {

}

.private-jet-travel {
    color: #fff;
    padding: 64px 16px 48px;
    text-align: center;
}

.private-jet-travel .private-jet-travel__title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 24px;
}

.private-jet-travel .private-jet-travel__text {
    max-width: 896px;
    font-size: 18px;
    margin: 0 auto 24px;
    line-height: 28px;
}

.related-destinations {
    padding: 64px 0;
}

@media (min-width: 769px) {
    .hero {
        height: 500px;
    }
    .destination-airports__text-block .airports-title {
        font-size: 36px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .hero__description {
        font-size: 24px;
        font-weight: 400;
        line-height: 28px;
        align-items: center;
        padding: 24px;
    }
    .destination-airports {
        grid-template-columns: unset;
    }
}


