.hero-custom {
    position: relative;
    min-height: calc(100vh - 86px);
    height: auto;
    overflow: hidden;
}

.container-custom {
    position: relative;
    min-height: calc(100vh - 86px);
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-video {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.label-custom {
    /*background: rgba(0, 0, 0, 0.3);*/
    background: linear-gradient(
            to right, var(--accent-color-2-70per),
            var(--primary-color-70per),
            var(--accent-color-1-70per)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    border-radius: 20px;
}

.label-custom h1, .label-custom h4, .label-custom span {
    color: #fff;
    text-align: center;
}

.label-custom button {
    height: 50px;
    width: 130px;
    font-size: 18px;
    margin-top: 30px;
    border: none;
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;
    transition: 0.2s ease;
}

.label-custom button:hover {
    color: var(--primary-color);
}

.tours-custom {
    background: linear-gradient(to right, #fff, var(--primary-color-70per));
    min-height: 100vh;
    height: auto;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.tours-custom .tours-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 30px;
    background: #fff;
    padding: 30px;
    text-align: justify;
}

.tours-custom .tours-label h2 {
    color: var(--secondary-color)
}

.tours-custom .tours-label button {
    border: none;
    padding: 5px 10px;
    transition: 0.2s ease;
    border-radius: 10px;
}

.tours-custom .tours-label button:hover {
    transform: scale(1.05);
}

.carousel-wrapper {
    max-width: calc(100% - 400px);
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 30px 5px;
    position: relative;
}

.carousel-wrapper i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 30px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    background: var(--accent-color-1);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-90%);
}

.carousel-wrapper i:first-child {
    left: 8px;
}

.carousel-custom {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel-custom a {
    text-decoration: none;
    color: #000;
}

.carousel-custom::-webkit-scrollbar {
    display: none;
}

.carousel-custom.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel-custom .tour-card {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-custom.dragging .tour-card {
    cursor: grab;
    user-select: none;
}

.carousel-custom .tour-card .card-image img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-custom .tour-card h2 {
    font-weight: 500;
    margin: 20px 0 5px 0;
    color: var(--primary-color);
}

.about-custom {
    background: #fff;
    min-height: 100vh;
    height: auto;
    width: 100%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.about-custom .about-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    /*background: linear-gradient(*/
    /*        to left,*/
    /*        var(--accent-color-2),*/
    /*        var(--primary-color),*/
    /*        var(--accent-color-1)*/
    /*);*/
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)
    ), url("../images/kish_panorama_1.jpg");
    background-size: cover;
    padding: 80px;
    text-align: justify;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: #fff;
}

.about-custom .about-label h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 30px;
}

.about-custom .about-collab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100px;
    margin-top: 20px;
    padding: 10px 10px;
}

.about-custom .about-collab a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    border-radius: 10px;
    height: 80px;
    width: 80px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.about-custom .about-collab img {
    padding: 10px;
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
}

#kfz {
    border-color: #009FAF;
}

#arunart {
    border-color: #ef5929;
}

.about-custom .about-collab a:hover {
    filter: none;
}

.contact-custom {
    background: linear-gradient(
            to left,
            var(--accent-color-2-70per),
            var(--primary-color-70per),
            var(--accent-color-1-70per)
    );
    min-height: 100vh;
    height: auto;
    width: 100%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-custom .contact-content {
    max-width: 800px;
    text-align: center;
}

.contact-custom .contact-content h2 {
    color: #fff;
    font-weight: 500;
    font-size: 42px;
}

.contact-custom .contact-container {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.contact-custom .contact-container .contact-form {
    width: 60%;
    background: #fff;
    padding: 40px 60px;
    border-radius: 30px;
}

.contact-custom .contact-container .contact-form h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-custom .contact-container .contact-form .input-box {
    width: 100%;
    position: relative;
}

.contact-custom .contact-container .contact-form .input-box label {
    width: 100%;
}

.contact-custom .contact-container .contact-form .input-box input,
.contact-custom .contact-container .contact-form .input-box textarea {
    width: 100%;
    font-size: 14px;
    margin: 10px 0;
    resize: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #666;
}

.contact-custom .contact-container .contact-form .input-box input {
    padding: 10px 0;
}

.contact-custom .contact-container .contact-form .input-box textarea {
    height: 100px;
}

.contact-custom .contact-container .contact-form .input-box span {
    position: absolute;
    right: 0;
    pointer-events: none;
    margin: 10px 0;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    transition: 0.5s ease;
}

.contact-custom .contact-container .contact-form .input-box input[type="submit"] {
    border-bottom: none;
    width: 30%;
    border-radius: 10px;
    transition: 0.5s ease;
}

.contact-custom .contact-container .contact-form .input-box input[type="submit"]:hover {
    background: var(--primary-color-70per);
}

.contact-custom .contact-container .contact-form .input-box input:focus ~ span,
.contact-custom .contact-container .contact-form .input-box textarea:focus ~ span,
.contact-custom .contact-container .contact-form .input-box input:valid ~ span,
.contact-custom .contact-container .contact-form .input-box textarea:valid ~ span {
    color: var(--primary-color);
    transform: translateY(-25px);
}


.contact-custom .contact-container .contact-social {
    background: var(--secondary-color);
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 40px;
    gap: 20px;
}

.contact-custom .contact-container .contact-social a {
    text-decoration: none;
    width: 80%;
    color: #000;
}

.contact-custom .contact-container .contact-social div {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    overflow: hidden;
    position: relative;
}

.contact-custom .contact-container .contact-social .button-text {
    width: 100%;
    padding-right: 20px;
    transition: 0.5s ease;
    position: absolute;
    right: 0;
    top: 8px;
}

.contact-custom .contact-container .contact-social .button-icon {
    width: 100%;
    font-size: 25px;
    padding: 7px 15px;
    color: #fff;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s ease;
    position: absolute;
    left: 0;
    transform: translateX(-75%);
}

.contact-custom .contact-container .contact-social div:hover .button-text {
    transform: translateX(100%);
}

.contact-custom .contact-container .contact-social div:hover .button-icon {
    transform: translateX(0);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


#instagram-logo {
    background: #e1306c;
}

/*#instagram-div:hover {*/
/*    background: #e1306c;*/
/*}*/

#whatsapp-logo {
    background: #25d366;
}

/*#whatsapp-div:hover {*/
/*    background: #25d366;*/
/*}*/

#email-logo {
    background: var(--accent-color-2);
}

/*#email-div:hover {*/
/*    background: var(--accent-color-2);*/
/*}*/


@media screen and (max-width: 510px) {
    .carousel-custom .tour-card .card-image img {
        width: 300px;
        height: 200px;
    }

    .label-custom {
        padding: 30px;
    }
}


@media screen and (max-width: 600px) {
    .contact-custom .contact-container .contact-social {
        padding: 40px 20px;
    }

    .contact-custom .contact-container {
        width: 100%;
    }
}


@media screen and (max-width: 780px) {
    .about-custom .about-label {
        padding: 40px;
    }
}

@media screen and (max-width: 910px) {
    .tours-custom {
        flex-direction: column;
    }

    .carousel-wrapper {
        max-width: none;
    }
}

@media screen and (max-width: 1000px) {
    .carousel-wrapper i {
        display: none;
    }
}

@media screen and (max-width: 1230px) {
    .contact-custom .contact-container {
        flex-direction: column;
    }

    .contact-custom .contact-container .contact-form {
        width: 100%;
        padding: 30px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .contact-custom .contact-container .contact-social {
        width: 100%;
        border-top-left-radius: 0;
        border-bottom-right-radius: 30px;
    }

    .contact-custom .contact-container .contact-social div {
        width: 100%;
    }

    .contact-custom .contact-container .contact-social .button-text {
        padding-right: 10px;
    }
}