.destinations-page {
    padding-top: 140px;
}

.destinations-page .home-destinations,
.destinations-page .destinations-page-section {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 60px;
    margin-bottom: 0;
    background-image: none;
    background: transparent;
}

.destinations-subpage {
    padding-bottom: 0;
    padding-top: 177px;
}

.dest-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.dest-breadcrumb__link {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #656565;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

@media (hover: hover) {
    .dest-breadcrumb__link:hover {
        color: #001F48;
        text-decoration: none;
    }
}

.dest-breadcrumb__sep {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #D9D9D9;
    flex-shrink: 0;
}

.dest-breadcrumb__active {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #001F48;
}

.dest-page-head {
    margin-bottom: 48px;
}

.dest-page-head__title {
    margin: 0 auto 8px;
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    color: #001F48;
    text-align: center;
}

.dest-page-head__subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 42px;
    text-align: center;
    color: #0B1FA1;
    margin: 0 0 10px;
}

.dest-country-grid {
    margin-bottom: 80px;
}

.dest-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 80px;
    justify-content: flex-start;
}

.dest-service-card {
    width: calc(33.333% - 16px);
    border-radius: 20px;
    border: 1px solid #D9EAFC;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dest-service-card__body {
    padding: 32px 24px 22px;
    flex: 1;
}

.dest-service-card__title {
    margin: 0 0 24px;
    font-family: Arimo;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #1E17E0;
}

.dest-service-card__specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dest-service-card__spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.dest-service-card__spec-label {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #001F48;
}

.dest-service-card__spec-value {
    font-family: Manrope;
    font-weight: 800;
    font-size: 18px;
    line-height: 140%;
    text-align: right;
    flex-shrink: 0;
    color: #1E17E0;
}

.dest-service-card__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dest-service-card__item {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #001F48;
}

.dest-service-card__img {
    height: 284px;
    overflow: hidden;
    flex-shrink: 0;
}

.dest-service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .dest-service-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .dest-page-head__title {
        font-size: 32px;
    }

    .dest-service-card {
        width: 100%;
    }
}
