@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+J:ital,wght@0,100..400;1,100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
}

.banner-section {
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.banner-section .container-fluid {
    padding: 0;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, black, transparent, black);
    z-index: 9;
}

.banner-section-infromation {
    position: absolute;
    bottom: 5%;
    left: 0;
    content: "";
    z-index: 9;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    align-items: center;
}

.banner-section-infromation h1 {
    margin-bottom: 0;
}

.banner-section-infromation p {
    font-size: 14px;
}

.banner-info h1 {
    font-size: 38px;
    font-family: "Gilda Display", serif;
    color: #ffba0a;
}

.banner-btn .btn {
    font-size: 12px;
}

.padding-space-extra {
    padding: 50px 0;
}

.about-destination {
    text-align: center;
}

.about-destination-information {
    width: 85%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 30px;
    font-family: "Gilda Display", serif;
}

.about-destination-information p {
    font-size: 13px;
    text-align: justify;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 13px;
}

.facilities-item h3 {
    font-size: 14px;
    margin-bottom:0;
}

.facilities-item p {
    font-size: 12px;
    margin-bottom: 0;
}

.bg-color {
    background: #f3f3f3;
}

.facilities {
    text-align: center;
}

.facilities-item {
    padding: 10px;
    border: 1px solid #d3d3d3;
    margin-bottom: 10px;
}

.visti-img {
    position: relative;
    height: 300px;
}

.visti-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 3px #9a9090;
    position: relative;
}

.visti-img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, #000000c2, #00000024, #000000cc);
    z-index: 9;
    border-radius: 20px;
}

.visit-hokkaido-inn {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.visit-hokkaido-inn p {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    z-index: 99;
    font-size: 22px;
    margin-bottom: 0;
    transform: translate(-50%);
    text-transform: uppercase;
    letter-spacing: 1px;
    background:linear-gradient(45deg,transparent, #e44f73, transparent);
    width:100%;
    text-align:center;
    font-family: "Gilda Display", serif;
}

.spot-item {
    position: relative;
    overflow: hidden;
}

.spot-img img {
    border-radius: 10px;
    box-shadow: 0 0 3px #0c0c0c;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spot-img {
    position: relative;
    overflow: hidden;
    height: 325px;
}
.spot-para {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    background: #000000c2;
    text-align: center;
    color: #fff;
    font-family: "Gilda Display", serif;
    font-size: 20px;
    
}
.special-info-img {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.special-info-img::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 9;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000, transparent, transparent);
    border-radius: 20px;
}

.special-info-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

.special-informtion {
    position: relative;
    overflow: hidden;
}

.special-informtion::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s ease;
    z-index: 1;
}

.special-informtion:hover::after {
    background: rgba(250, 235, 215, 0.658);
    border-radius: 20px;
}

.special-informtion .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: 0.4s ease;
}

.special-informtion:hover .btn {
    opacity: 1;
    visibility: visible;

}

.fecilities {
    position: absolute;
    bottom: 4%;
    left: 50%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%);
}

.flights {
    background: #e1ed91;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    color: #000000;
}

.flights p {
    margin-bottom: 0;
}

.flights:hover {
    transform: rotate(180deg);
    animation: bounce 1.5s infinite;
    cursor: pointer
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.special-offers {
    text-align: center;
}

.special-informtion .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: 0.4s ease;
}

.special-informtion:hover .btn {
    opacity: 1;
    visibility: visible;

}

.explore-now-btn {
    margin-top: 20px;
    background: #124175;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    border-radius: 20px;
    font-size: 15px;
    padding: 8px 35px;
}
.visit-swiper .swiper-button-next,
.visit-swiper .swiper-button-prev {
    background: #e44f73;
}
.swiper-button-next,
.swiper-button-prev {
    background: #124175;
    padding: 5px;
    width: 40px;
    height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 23px;
    color: #ffffff;
}

.auto-img img {
    border-radius: 15px;
}

.auto-popup-right {
    font-family: 'Montserrat';
}

.auto-popup-right h3 {
    font-family: 'Gilda Display';
    margin-bottom: 0;
    text-align: center;
    font-size: 23px;
    margin-top: 10px;
}

.auto-popup-right p {
    text-align: center;
    font-size: 13px;
}

.banner-section-img {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.banner-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 991px) {
    .banner-section-img {
        height: 100vh;
    }

    .banner-section-infromation {
        padding: 0 10px;
    }
}
@media only screen and (max-width: 767px) {
    .banner-btn {
        text-align: right;
    }
    .btn-gallery{
        margin-bottom:10px;
    }
    .banner-section-infromation {
        bottom: 1%;
    }

}
@media only screen and (max-width: 575px) {
    .banner-section-img {
        height: 80vh;
    }
    .padding-space-extra {
        padding: 40px 0;
    }
    .about-destination-information {
        width: 100%;
    }
}
@media only screen and (max-width: 420px) {
    .banner-section-infromation {
        display: block;
        text-align: center;
    }
    .banner-btn {
        text-align: center;
    }
    .banner-btn .btn {
        font-size: 12px;
        margin-bottom: 0;
    }
    .banner-section-infromation p {
        font-size: 14px;
        margin-bottom: 5px;
    }
        .banner-info h1 {
        font-size: 36px;
        font-weight: 600;
        color:#ffba0a;
    }
    .section-title {
        margin-bottom: 10px;
    }
}