#hotspot-information {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.area-hotspot {
    width: 100%;
    max-width: 1320px;
    height: 700px;
    background-size: cover !important;
    background-position: top center !important;
    position: relative;
    padding: 0 66px 0 66px;
    margin: 0 15px 0 15px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hotspot-side {
    width: 33.3%;
    z-index: 2;
}

.hotspot-side h2 {
    color: white;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 65px;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.first-side-text {
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.second-side-text {
    font-size: 16px;
    color: white;
}

.space-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.btn-hotspot {
    background-color: var(--primary-color);
    color: white;
    height: 42px;
    padding: 5px 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.space-button p {
    font-size: 44px;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.img-hotspot {
    position: absolute;
    right: 7%;
    bottom: -80px;
    width: 56%;
    z-index: 3;
}

.img-hotspot img {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
}

.hotspot-item {
    position: absolute;
    z-index: 100;
    padding: 20px; 
}

.h-1 { top: 7%;
    left: 29%; }
.h-2 { top: 8%;
    left: 72%;}
.h-3 { top: 28%; left: 203px; }

.btn1-img-hotspot {
    position: relative;
 
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 4;
}

.btn2-img-hotspot {
    position: relative;

    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 4;
}

.btn3-img-hotspot {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 4;
}

.btn1-img-hotspot::after,
.btn2-img-hotspot::after,
.btn3-img-hotspot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
}


.tour-card-bt1,
.tour-card-bt2,
.tour-card-bt3 {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: auto;
    min-height: 435px;
    max-height: 488px;
    position: absolute;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    padding: 15px;
    transform: translateY(10px);
    overflow: hidden;
    pointer-events: none;
}

[class*="tour-card-bt"]::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -50px; 
    width: 100px; 
    height: 120px;
    background: transparent;
    z-index: -1;
}

.tour-card-bt2::before {
    left: -80px;
    width: 100px;
}

.tour-image img {
    height: 220px;
    width: 220px;
    object-fit: cover;
}

.tour-info h3 {
    font-size: 16px;
    text-align: center;
    margin: 12px 0;
}

.tour-card-bt1 {
    top: -61px;
    left: -242px;
}

.tour-card-bt2 {
    top: -60px;
    right: 43px;
}

.tour-card-bt3 {
    top: -40px;
    right: 59px;
}

.tour-description {
    font-size: 14px;
    text-align: center;
}

.tour-price {
    font-size: 16px;
    text-align: center;
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.tour-price span {
    font-weight: 700;
}

.area-btn-card {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.area-description-card {
    max-height: 65px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: relative;
}

.btn-read-more {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    height: 36px;
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hotspot-item:hover [class*="tour-card-bt"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.plus-description {
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
    position: absolute;
    width: 100%;
    z-index: 99;
    bottom: -18px;
    left: 0;
    cursor: pointer;
    color: var(--wd--black);
    transition: opacity 0.3s ease;

    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0) 100%);
}

[class*="tour-card-bt"].expanded {
    max-height: 1000px !important;
}

[class*="tour-card-bt"].expanded .area-description-card {
    max-height: 500px !important;
}

[class*="tour-card-bt"].expanded .plus-description {
    display: none !important;
}

.tour-info {
    position: relative;
}

.btn-read-more:hover {
    color: white;
    background-color: #e65587;
}


.zommIconH {
    animation: zoomIcon-animation 2s infinite, pulse-animation 2s infinite;
}

@media (max-width: 1280px) {
    .area-hotspot {
        height: 550px;
    }
    .h-1 { top: 7%;
    left: 26%; }
.h-2 { top: 8%;
    left: 69%;}
.h-3 { top: 28%; left: 154px; }
}

@media (max-width: 1024px) {
    .hotspot-item {
        display: none !important;
    }

    [class*="tour-card-bt"] {
        display: none !important;
    }
    
   
}

@media (max-width: 992px) {
    .area-hotspot {
        height: 600px;
        flex-direction: column;
        padding: 40px 34px 0 34px;
        overflow: hidden;
    }

    .hotspot-side {
        width: 100%;
    }

    .hotspot-side h2 {
        font-size: 2.5rem;
    }

    .btn-hotspot {
        padding: 5px 15px;
        font-size: 12px;
    }

    .img-hotspot {
        position: relative;
        bottom: 58px;
        left: 30%;
        width: 75%;
        margin-top: -50px;
    }

    .img-hotspot img {
        width: 440px;

    }

    .space-button {
        flex-wrap: wrap;
    }

    .btn1-img-hotspot {
        position: absolute;
        top: 9%;
        left: 22%;
        width: 20px;
        height: 20px;
        background-color: var(--primary-color);
        border-radius: 50%;
        z-index: 4;
    }

    .btn2-img-hotspot {

        left: 65%;

    }

    .btn3-img-hotspot {

        left: 20%;

    }
}

@media (max-width: 768px) {
    .area-hotspot {
        height: 600px;
    }

    .hotspot-side h2 {
        font-size: 1.8rem;
        line-height: 42px;
    }

    .img-hotspot {

        bottom: -24px;
        left: 24%;
        width: 56%;

    }

    .img-hotspot img {
        width: 100%;
    }

    .btn1-img-hotspot {
        top: -7%;
    }

    .btn3-img-hotspot {
        left: -6%;
    }
}

@media (max-width: 640px) {
    .img-hotspot img {
        width: 220px;
    }

    .img-hotspot {
        position: absolute;
        bottom: 0px;
        left: 8%;
        width: 100%;

    }

    .space-button p {
        font-size: 32px;
    }
}


@media (max-width: 480px) {
    .tour-card-bt1 {
        max-width: 100%;
        margin: 10px 0;
    }
}