/* destinations three */

.destinations-three {
    /*padding-top: 120px;*/
    /*padding-bottom: 90px;*/
}

.destinations-three__single {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: var(--thm-black);
    border-radius: 18px;
    border: 1px solid rgba(var(--thm-black-rgb), 0.1);
    box-shadow: 0 14px 32px rgba(var(--thm-black-rgb), 0.12);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: border-color 320ms ease, box-shadow 320ms ease, -webkit-transform 320ms ease;
    transition: border-color 320ms ease, box-shadow 320ms ease, -webkit-transform 320ms ease;
    transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
    transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, -webkit-transform 320ms ease;
    isolation: isolate;
}

.destinations-three__single>img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transition: -webkit-transform 700ms ease;
    transition: -webkit-transform 700ms ease;
    transition: transform 700ms ease;
    transition: transform 700ms ease, -webkit-transform 700ms ease;
}

.destinations-three__content,
.destinations-three__hover-content {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    padding-left: 30px;
    padding-right: 90px;
}

.destinations-three__content {
    bottom: 0;
    padding-bottom: 30px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.destinations-three__single:hover .destinations-three__content {
    -webkit-transform: translateY(36px);
    transform: translateY(36px);
    opacity: 0;
}

.destinations-three__hover-content h3,
.destinations-three__content h3 {
    font-family: var(--thm-font);
    color: #fff;
    font-size: 31px;
    line-height: 1.06;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 700;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.long-poi-name .destinations-three__hover-content h3,
.long-poi-name .destinations-three__content h3 {
    font-size: 24px;
    line-height: 1.12;
}

.destinations-three__hover-content h3 a,
.destinations-three__content h3 a {
    color: inherit;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.destinations-three__hover-content h3 a:hover,
.destinations-three__content h3 a:hover {
    color: var(--thm-base-lighter);
}

.destinations-three__single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.94;
    background: linear-gradient(180deg, rgba(var(--thm-black-rgb), 0.06) 8%, rgba(var(--thm-black-rgb), 0.34) 52%, rgba(var(--thm-black-rgb), 0.88) 100%);
    -webkit-transition: opacity 320ms ease;
    transition: opacity 320ms ease;
}

.destinations-three__hover-content {
    bottom: 0;
    padding-bottom: 28px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.destinations-three__single:hover .destinations-three__hover-content {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.destinations-three__single:hover {
    border-color: rgba(var(--thm-primary-rgb), 0.36);
    box-shadow: 0 22px 38px rgba(var(--thm-black-rgb), 0.18);
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

.destinations-three__single:hover>img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.destinations-three__single:hover::before {
    opacity: 1;
}

.destinations-three__hover-content p {
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.destinations-three__link {
    width: 46px;
    display: block;
    height: 46px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 22px rgba(var(--thm-black-rgb), 0.26);
    position: absolute;
    right: 26px;
    bottom: 26px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.destinations-three__link i {
    line-height: 46px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 16px;
}

.destinations-three__link:hover {
    background-color: var(--thm-primary);
    border-color: rgba(var(--thm-primary-rgb), 0.8);
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}

.destinations-three__link:hover i {
    color: #ffffff;
}

.destinations-three__link:focus,
.destinations-three__link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--thm-primary-rgb), 0.34), 0 10px 22px rgba(var(--thm-black-rgb), 0.26);
}

@media (max-width: 1199px) {
    .destinations-three__content,
    .destinations-three__hover-content {
        padding-left: 24px;
        padding-right: 78px;
    }

    .destinations-three__hover-content h3,
    .destinations-three__content h3 {
        font-size: 28px;
    }

    .long-poi-name .destinations-three__hover-content h3,
    .long-poi-name .destinations-three__content h3 {
        font-size: 22px;
    }

    .destinations-three__link {
        right: 22px;
        bottom: 22px;
    }
}

@media (max-width: 767px) {
    .destinations-three__single {
        border-radius: 14px;
        margin-bottom: 22px;
    }

    .destinations-three__content,
    .destinations-three__hover-content {
        padding-left: 20px;
        padding-right: 66px;
    }

    .destinations-three__content {
        padding-bottom: 20px;
    }

    .destinations-three__hover-content {
        padding-bottom: 18px;
    }

    .destinations-three__hover-content h3,
    .destinations-three__content h3 {
        font-size: 22px;
        line-height: 1.15;
    }

    .long-poi-name .destinations-three__hover-content h3,
    .long-poi-name .destinations-three__content h3 {
        font-size: 20px;
    }

    .destinations-three__hover-content p {
        margin-top: 8px;
        font-size: 14px;
    }

    .destinations-three__link {
        width: 40px;
        height: 40px;
        right: 16px;
        bottom: 16px;
    }

    .destinations-three__link i {
        line-height: 40px;
        font-size: 14px;
    }
}


.banner-three__wrap {
    position: relative;
    margin-bottom: 88px;
}

.banner-three__floated-text {
    position: absolute;
    top: 70%;
    left: 50%;
    opacity: 0.03;
    -webkit-transform: translateX(-50%) translateY(-65%);
    transform: translateX(-50%) translateY(-65%);
    color: var(--thm-black);
    font-size: 350px;
    font-family: var(--heading-font);
    display: block;
    line-height: 1em;
}

.banner-three {
    padding-top: 90px;
    padding-bottom: 80px;
    background-image: -webkit-gradient( linear, left bottom, left top, from(rgb(255,255,255)), to(rgb(236,238,239)));
    background-image: linear-gradient( 0deg, rgb(255,255,255) 0%, rgb(236,238,239) 100%);
}
.banner-three__top {
    text-align: center;
}
.banner-three__top-inner {
    display: inline-block;
    position: relative;
}
.banner-three__top-inner h2, .banner-three__top-inner h3 {
    margin: 0;
    font-size: 100px;
    color: var(--thm-black);
    font-family: var(--thm-font);
    letter-spacing: .1em;
    font-weight: 400;
    text-transform: uppercase;
}
.banner-three__top-inner p {
    position: absolute;
    right: 10px;
    bottom: -8px;
    color: var(--thm-secondary);
    font-family: var(--heading-font);
    margin: 0;
    font-size: 60px;
}

.banner-three__box {
    /*padding-bottom: 90px;*/
}
.banner-three__col {
    -webkit-box-flex: 1;
    flex: 1 1 20%;
    max-width: 20%;
    padding-left: 15px;
    padding-right: 15px;
}
.banner-three__box-single {
    position: relative;
    border: 2px dashed #ced3d6;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-bottom: 30px;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}
.banner-three__box-single:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.banner-three__box-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 15px solid #ffffff;
    z-index: 10;
}
.banner-three__box-single > img {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.banner-three__leaf {
    position: absolute;
    top: 0;
    left: 0;
}

.banner-three__sun {
    position: absolute;
    top: 5%;
    left: 10%;
    -webkit-animation: sunMove 10s linear infinite;
    animation: sunMove 10s linear infinite;
}

.info-card-one__single {
    margin-top: 28px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(236, 238, 239);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 38px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.info-card-one__single:hover {
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}

.info-card-one__single h3 {
    color: var(--thm-primary);
    width: 88px;
}

.info-card-one__single b {
    color: var(--thm-black);
}

.info-card-one__single ul {
    list-style: none;
    margin-left: -18px;
}

.features-two {
    /*padding-top: 120px;*/
    /*padding-bottom: 120px;*/
    position: relative;
}

.features-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center 130%;
    background-repeat: no-repeat;
    opacity: 0.05;
}

.features-two .container {
    position: relative;
}

.features-two__single {
    margin-bottom: 30px;
    text-align: center;
    margin-top: 28px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(236, 238, 239);
    -webkit-box-align: center;
    align-items: center;
    padding: 38px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.features-two__single:hover {
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}

.features-two__single h3 {
    margin: 0;
    color: var(--thm-black);
    font-family: var(--thm-font);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 40px;
}

.features-two__single p {
    margin: 0;
    text-align: justify;
    color: var(--thm-darkgray);
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
}

.features-two__single p .btn-link {
    color: var(--thm-base);
}

.features-two__single i {
    width: 129px;
    display: -webkit-box;
    display: flex;
    height: 129px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    font-size: 52px;
    color: #ffffff;
    background-color: var(--thm-secondary);
    box-shadow: 0px 10px 30px 0px rgba(255, 1, 67, 0.2);
}

.features-two [class*=col-]:nth-child(1) .features-two__single i {
    background-color: #6ebd32;
    box-shadow: 0px 10px 30px 0px rgba(110, 189, 50, .2);
}

.features-two [class*=col-]:nth-child(2) .features-two__single i {
    background-color: var(--thm-secondary);
    box-shadow: 0px 10px 30px 0px rgba(var(--thm-secondary-rgb), .2);
}

.features-two [class*=col-]:nth-child(3) .features-two__single i {
    background-color: var(--thm-primary);
    box-shadow: 0px 10px 30px 0px rgba(var(--thm-primary-rgb), .2);
}

.features-two__btn {
    margin-top: 30px;
}

@media(max-width: 991px) {
    .banner-three__top-inner h3 {
        font-size: 80px;
    }
    .banner-three__top-inner p {
        position: relative;
        right: auto;
        bottom: auto;
    }
    .banner-three__col {
        -webkit-box-flex: 1;
        flex: 1 1 33.333%;
        max-width: 100%;
    }
}

@media(max-width: 625px) {
    .banner-three__col {
        -webkit-box-flex: 1;
        flex: 1 1 50%;
    }
    .banner-three__leaf {
        display: none;
    }
    .banner-three__top-inner p {
        margin-top: 10px;
    }
}

@media(max-width: 480px) {
    .banner-three__top-inner p {
        line-height: 1.3em;
    }
}

@media(max-width: 375px) {
    .banner-three__col {
        -webkit-box-flex:  1;
        flex:  1 1 100%;
    }
}
