﻿
.destination .promo-crd__wrapper {
    margin-top: 160px;
    border-top: 0;
    height: 160px;
    position: relative;
    top: 95px;
    transition: top 0.3s ease;
}

.destination .promo-crd__wrapper h3 {
    padding: 7px 0 13px;
}

.destination .promo-crd__zooming-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -10;
    background-size: cover;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.destination:hover {
    position: relative;
}

.destination:hover .promo-crd__wrapper {
    top: 0;
    transition: top 0.5s ease;
}

.destination:hover .promo-crd__zooming-image {
    transform: scale(1.1);
}
.destination .promo-crd__wrapper h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
}


.destination {
    position: relative;
    overflow: hidden;
    cursor: default;
    margin-bottom: 20px;
}

.destination .destination-image {
    min-height: 265px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all .3s ease-out;
}

.destination .destination-name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    transform: scale(1);
}

.destination .destination-name h5 {
    min-width: 200px;
    background: #061B2B;
    display: inline-block;
    padding: 5px 25px;
    transform: skewX(-20deg);
    text-transform: uppercase;
    color: #fff;
}

.destination .destination-name h5 span {
    display: inline-block;
    transform: skewX(20deg);
}

.destination .destination-desc {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #061B2B;
    padding: 20px;
    transition: all .3s ease-out;
}

.destination .destination-desc p,
.destination .destination-desc #page .expandable-panel,
#page .destination .destination-desc .expandable-panel,
.destination .destination-desc .expandable-panel-link {
    margin: 0;
    color: #fff;
}

.destination:hover .destination-desc {
    bottom: 0;
}

.destination:hover .destination-image {
    transform: scale(1.1);
}

.destination .promo-crd__wrapper p {
    line-height: 19px;
}

.destination .promo-crd__wrapper h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
}

@media (max-width: 1024px) {
    .promo-crd.destination .promo-crd__wrapper {
        margin-top: 160px;
    }
}

@media (max-width: 420px) {
    .destination .promo-crd__zooming-image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -10;
        background-size: cover;
        transform: none !important;
    }

    .destination:hover .promo-crd__zooming-image {
        transform: none !important;
    }
}