.title-header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(
            to left,
            var(--accent-color-2-70per),
            var(--primary-color-70per),
            var(--accent-color-1-70per)
    );
}

.title-header h2 {
    font-size: 40px;
    color: #fff;
}

.tour-aerial {
    background: linear-gradient(
            to left,
            var(--accent-color-2-70per),
            var(--primary-color-70per),
            var(--accent-color-1-70per)
    );
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    padding: 0 6rem;
}

.tour-aerial .tour-aerial-container {
    width: 80%;
    height: 250px;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.3)
    ), url("../images/kish_panorama_1.jpg");
    background-position: center;
    border-radius: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.5s ease;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.tour-aerial .tour-aerial-container:hover {
    transform: scale(1.05);
}

.tours-all-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
            to left,
            var(--accent-color-2-70per),
            var(--primary-color-70per),
            var(--accent-color-1-70per)
    );
    padding: 20px 0 40px 0;
}

.tours-all {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.tours-all .tour-cat-container {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    transition: 0.5s ease;
    position: relative;
    border-radius: 20px;
}

.tours-all .tour-cat-container:hover {
    transform: scale(1.05);
}

.tours-all .tour-cat-container.active {
    width: 100%;
    background: #fff;
    margin: 20px 0;
    padding: 10px;
}

.tours-all .tour-cat-container .tour-cat {
    list-style: none;
    min-width: 250px;
    min-height: 250px;
    width: 250px;
    height: 250px;
    margin: 5px;
    background-size: cover;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease;
}

.tours-all .tour-cat-container.active .tour-cat {
    transform: rotate(360deg);
}

.tours-all .tour-cat-container .tour-cat:hover {
    cursor: pointer;
}

.tours-all .tour-cat-container .tour-cat .tour-cat-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.tours-all .tour-cat-container .tour-cat .tour-cat-detail h4 {
    font-size: 20px;
}

.tours-all .tour-cat-container .tour-cat .tour-cat-detail span {
    font-size: 14px;
}

.tours-all .tour-cat-container .tours {
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    position: absolute;
    right: 300px;
    pointer-events: none;
}

.tours-all .tour-cat-container .to-map {
    display: none;
}

.tours-all .tour-cat-container.active .tours {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    position: static;
    pointer-events: initial;
}

.tours-all .tour-cat-container.active .to-map {
    display: block;
    margin-left: 100px;
    width: 100px;
    height: 50px;
    text-decoration: none;
}

.tours-all .tour-cat-container.active .to-map button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    margin-top: -20px;
    transition: 0.5s ease;
}

.tours-all .tour-cat-container.active .to-map button:hover {
    transform: scale(1.05);
}

.tours-map {
    min-height: 100vh;
    height: auto;
    width: 100%;
}

.tours-map iframe {
    height: 100vh;
    width: 100%;
}

.tours-map .map-base {
    display: block;
}

.tours-map .map-residence {
    display: none;
}

.tours-map .map-commercial {
    display: none;
}

.tours-map .map-tourism {
    display: none;
}

.tours-map .map-parks {
    display: none;
}

#ul1-residence {
    display: none;
}

#ul1-catering {
    display: none;
}

#ul2 {
    display: flex;
}

.tours-all .tour-cat-container.active .tours .tour {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    margin: 5px;
    height: 40px;
    width: 250px;
    border-radius: 10px;
    background: var(--secondary-color);
    transition: 0.5s ease;
}

#ul1-residence .tour {
    width: 100%;
}

#ul1-catering .tour {
    width: 100%;
}

.tours-all .tour-cat-container.active .tours .tour:hover {
    background: var(--primary-color);
    cursor: pointer;
}

.tours-all .tour-cat-container.active .tours .tour a,
.tours-all .tour-cat-container.active .tours .tour span {
    text-decoration: none;
    color: #fff;
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .tour-aerial .tour-aerial-container {
        min-width: 250px;
        min-height: 250px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
    }

    .tours-all .tour-cat-container {
        flex-direction: column;
    }

    .tours-all .tour-cat-container.active {
        margin: 40px 0;
    }

    .tours-all .tour-cat-container .tours {
        right: 0;
        top: 300px;
        justify-content: center;
    }

    .tours-all .tour-cat-container.active .tours {
        margin: 5px;
	
    }
    
    .tours-all .tour-cat-container.active .to-map {
        height: 120px;
        margin-right: 100px;
    }

    .tours-all .tour-cat-container.active .to-map button {
        margin-top: 0;
    }
}
