﻿nav {
    position: fixed;
}

main .heros {
    height: 99vh;
    position: relative;
}

    main .heros .searchbox-bg {
        height: 100%;
        width: 100%;
    }

        main .heros .searchbox-bg img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

/* ------------------------------------------------------------ */

main .tours .tours-head,
main .destinations .destinations-head,
main .tour-group .tour-group-head,
main .hotels .hotels-head,
main .hotels .choose-city,
main .searched-fly .searched-fly-head,
main .buy-ticket .buy-ticket-head,
main .visa .visa-head,
main .tourism .tourism-head {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-between;
    width: 100%;
}

main .hotels .choose-city {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center !important;
}

    main .hotels .choose-city .col-50-c {
        width: 30% !important;
    }

main .tours .view-all a {
    background-color: #ffffff;
    color: var(--font-color);
    font-family: vazir,system-ui;
    border-radius: 25px;
    border: none !important;
    padding: 7px 15px;
    transition: 0.2s;
}

main .tours .view-all a:hover {
    color: var(--first-color);
    cursor: pointer;
}

/*===swiper===*/

main .tours .swiper-wrapper .swiper-slide {
    height: max-content;
}

main .tours .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: start;
    align-items: start;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    font-size: 14px;
    width: 100%;
    height: 400px;
}

    main .tours .swiper-slide .card {
        width: 100% !important;
        position: relative;
        border: none !important;
    }

    main .tours .swiper-slide .img {
        aspect-ratio: 2/1.3;
    }

        main .tours .swiper-slide .img img {
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        main .tours .swiper-slide .img .card-tag {
            position: absolute;
            z-index: 6;
            top: 10px;
            left: 10px;
            padding: 0px 10px;
            background-color: #ffffff;
            border-radius: 6px;
            color: var(--caption-color);
            font-size: 11px;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 23px;
        }

    main .tours .swiper-slide .content {
        text-align: right;
        padding: 5px 10px;
        display: flex;
        flex-direction: column;
        row-gap: 5px;
    }

        main .tours .swiper-slide .content h4 {
            margin: 0px 0px 5px 0px;
            font-weight: bold;
            font-size: 15px !important;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        main .tours .swiper-slide .content .caption {
            color: gray !important;
            font-size: 12px;
        }

        main .tours .swiper-slide .content .value {
            font-size: 13px;
            color: #52575C;
        }

        main .tours .swiper-slide .content .price {
            color: var(--first-color) !important;
            font-weight: bold;
        }

    main .tours .swiper-slide .row1,
    main .tours .swiper-slide .row2 {
        display: flex;
        justify-content: space-between;
    }

    main .tours .swiper-slide .row2 {
        margin-bottom: 10px;
    }

    main .tours .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

/*==slider-buttons===*/

main .tours .swiper-area {
    position: relative;
}

main .tours .swiper-buttons {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: white;
    transition: 0.2s;
    position: absolute;
    z-index: 99;
    top: calc(50% - 20px);
}

main .tours .swiper-buttons > div {
    display:flex;
    align-items: center;
    justify-content: center;
}


main .tours #tour1NextButton,
main .tours #tour2NextButton {
    left: -50px;
}

main .tours #tour1PrevButton,
main .tours #tour2PrevButton {
    right: -50px;
}

main .tours .swiper-buttons:hover {
    cursor: pointer;
    box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.3);
}

main .tours .swiper-buttons:active {
    filter: brightness(0.9);
}

main .tours .swiper-button-disabled {
    color: gray !important;
}

main .tours .swiper-button-active {
    color: var(--first-color) !important;
}

/* ------------------------------------------------------------ */

main .destinations-content {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}

main .destinations .card {
    width: 100%;
    aspect-ratio: 1/0.45;
    position: relative;
    border-radius: 15px;
    border: none;
}

    main .destinations .card .card-label {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        z-index: 5;
    }

    main .destinations .card img {
        width: 100%;
        height: 100%;
        z-index: 3;
        object-fit: cover;
        position: absolute;
    }

    main .destinations .card .card-content {
        position: absolute;
        right: 15px;
        bottom: 15px;
        display: flex;
        align-self: center;
        gap: 5px;
        align-items: center;
        z-index: 5;
        color: #ffffff;
    }

/* ------------------------------------------------------------ */

main .tour-group .tour-group-content {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto auto;
    width: 100%;
    aspect-ratio: 1/0.32;
    column-gap: 10px;
    row-gap: 18px;
}

    main .tour-group .tour-group-content .tg-card:nth-child(1) {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    main .tour-group .tour-group-content .tg-card:nth-child(2) {
        grid-row: 2/ 3;
        grid-column: 1 / 2;
    }

    main .tour-group .tour-group-content .tg-card:nth-child(3) {
        grid-row: 1 / 3;
        grid-column: 2 / 4;
    }

    main .tour-group .tour-group-content .tg-card:nth-child(4) {
        grid-row: 1 / 2;
        grid-column: 4 / 5;
    }

    main .tour-group .tour-group-content .tg-card:nth-child(5) {
        grid-row: 2 / 3;
        grid-column: 4 / 5;
    }

    main .tour-group .tour-group-content .tg-card {
        position: relative;
        border-radius: 15px;
    }

        main .tour-group .tour-group-content .tg-card:hover {
            cursor: pointer;
        }

        main .tour-group .tour-group-content .tg-card img {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 4;
            object-fit: cover;
        }

        main .tour-group .tour-group-content .tg-card .img-cover {
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 5;
            background: -moz-linear-gradient(0deg, rgba(2, 0, 36, 0.85) 0%, rgba(0, 0, 0, 0) 30%);
            background: -webkit-linear-gradient(0deg, rgba(2, 0, 36, 0.85) 0%, rgba(0, 0, 0, 0) 30%);
            background: linear-gradient(0deg, rgba(2, 0, 36, 0.85) 0%, rgba(0, 0, 0, 0) 30%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024", endColorstr="#000000", GradientType=1);
        }

    main .tour-group .tour-group-content .tg-card-title {
        position: absolute;
        bottom: 10px;
        right: 15px;
        z-index: 6;
        color: white;
        font-weight: bold;
        padding: 2px 10px;
        border-radius: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
    }

/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */

main .hotels .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

main .hotels .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    height: calc((100% - 30px) / 2) !important;
    margin-top: 10px;
}

    main .hotels .swiper-slide .card {
        border: none !important;
        background-color: transparent;
    }

    main .hotels .swiper-slide .img {
        border-radius: 15px;
    }

    main .hotels .swiper-slide img {
        border-radius: 10px;
        display: block;
        width: 100%;
        aspect-ratio: 1/0.62;
        object-fit: cover;
    }

    main .hotels .swiper-slide .content {
        text-align: right;
        padding: 0px 10px;
        background-color: transparent;
    }

        main .hotels .swiper-slide .content .hotel-stars i {
            color: #f0bc00;
        }

        main .hotels .swiper-slide .content h4 {
            margin: 0;
            font-weight: 500;
            font-size: 14px !important;
            color: var(--font-color);
        }

        main .hotels .swiper-slide .content .caption {
            color: gray !important;
            font-size: 10px !important;
        }

        main .hotels .swiper-slide .content .value {
            font-weight: bold;
            font-size: 13px !important;
        }

        main .hotels .swiper-slide .content .price {
            color: var(--first-color) !important;
        }

    main .hotels .swiper-slide .row:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

        main .hotels .swiper-slide .row:first-child > * {
            width: fit-content;
        }

        main .hotels .swiper-slide .row:first-child > .hotel-stars {
            display: flex;
            column-gap: 0.1rem;
        }

        main .hotels .swiper-slide .row:first-child > a {
            width: unset;
            flex: 1;
        }

            main .hotels .swiper-slide .row:first-child > a h4 {
                margin: 5px 0px;
                font-weight: bold;
                font-size: 14px !important;
                color: var(--font-color);
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                line-clamp: 1;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
            }

/*==slider-buttons===*/

main .hotels .swiper-buttons {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: white;
    transition: 0.2s;
}

main .hotels .swiper-buttons div {
    display: flex;
    justify-content: center;
}


    main .hotels .swiper-buttons:hover {
        cursor: pointer;
        box-shadow: 0px 0px 3px rgba(128, 128, 128, 0.3);
    }

    main .hotels .swiper-buttons:active {
        filter: brightness(0.9);
    }

main .hotels .swiper-button-disabled {
    color: gray;
}

main .hotels .swiper-button-active {
    color: var(--first-color);
}

/* ------------------------------------------------------------ */

main .searched-fly .choose-origin {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin: 20px 0px;
    align-items: baseline;
    column-gap: 1rem;
}

    main .searched-fly .choose-origin .choose-origin-text {
        width: fit-content;
    }

    main .searched-fly .choose-origin .choose-origin-buttons {
        width: 92%;
        display: flex;
        justify-content: flex-start;
        column-gap: 1rem;
        white-space: nowrap;
        flex-wrap: wrap;
        row-gap: 1rem;
    }

        main .searched-fly .choose-origin .choose-origin-buttons .nav-item {
            width: fit-content;
            padding: 0px 7px;
            color: var(--caption-color);
        }

main .searched-fly .sf-card {
    background: #FFF;
    border-radius: 10px;
    transition: 0.1s ease-in-out;
    border: 1px solid #ccc;
}

    main .searched-fly .sf-card:hover {
        border: 1px solid var(--second-color);
    }

    main .searched-fly .sf-card .card-content {
        position: relative;
        aspect-ratio: 1/0.518;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        main .searched-fly .sf-card .card-content .row-1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        main .searched-fly .sf-card .card-content .row-2 {
            display: flex;
            justify-content: space-between;
        }

        main .searched-fly .sf-card .card-content svg {
            position: absolute;
            z-index: 50;
        }

        main .searched-fly .sf-card .card-content .card-divider {
            position: absolute;
            right: -1px;
            left: -1px;
            top: 55%;
            z-index: 4;
            display: flex;
            justify-content: space-between;
            overflow: hidden;
        }

        main .searched-fly .sf-card .card-content .half-circle {
            width: 12px;
            height: 26px;
            background: #f8f8f8;
            position: relative;
        }

        main .searched-fly .sf-card .card-content .half-circle-start {
            right: 0;
            border-top-left-radius: 50px;
            border-bottom-left-radius: 50px;
            border: 1px solid #ccc;
            border-right-color: #f8f8f8;
        }

        main .searched-fly .sf-card .card-content .half-circle-end {
            left: 0;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border: 1px solid #ccc;
            border-left-color: #f8f8f8;
        }

    main .searched-fly .sf-card:hover .card-content .half-circle-start {
        border: 1px solid var(--second-color);
        border-right-color: #f8f8f8;
    }

    main .searched-fly .sf-card:hover .card-content .half-circle-end {
        border: 1px solid var(--second-color);
        border-left-color: #f8f8f8;
    }

    main .searched-fly .sf-card .card-content hr {
        border-width: 1px;
        border-color: gray;
        opacity: 0.3;
        border-style: dashed;
        transform: scaleX(2);
        width: 45%;
        margin: auto;
    }

    main .searched-fly .sf-card .card-content .card-col {
        display: flex;
        flex-direction: column;
        row-gap: 3px;
        align-items: center;
    }

    main .searched-fly .sf-card .card-content .price {
        color: var(--second-color);
        font-size: 15px;
    }

    main .searched-fly .sf-card .card-content .plan .plan-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    main .searched-fly .sf-card .card-content .plan .plan-icon span.icon {
        font-size: 15px;
    }


/* ------------------------------------------------------------ */

main .buy-ticket .buy-ticket-content {
    display: grid;
    gap: 0px;
    row-gap: 15px;
    grid-template-columns: auto auto auto auto auto auto;
}

main .buy-ticket .ticket-box {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    margin: 0px 5px;
    background-color: #ffffff;
    color: var(--first-color);
    font-weight: bold;
    transition: 0.2s !important;
    cursor: pointer;
}

    main .buy-ticket .ticket-box .icon {
        transform: rotate(30deg);
        margin-left: 15px;
    }

    main .buy-ticket .ticket-box .text {
        margin-right: 10px;
        color: var(--font-color);
        font-weight: 500;
    }

        main .buy-ticket .ticket-box .text span {
            all: unset !important;
        }

main .buy-ticket .ticket-box-hover:hover {
    color: var(--first-color) !important;
}

    main .buy-ticket .ticket-box-hover:hover .text {
        color: var(--first-color) !important;
    }

/* ------------------------------------------------------------ */

main .banners {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    width: 100%;
}

    main .banners .banner {
        height: fit-content;
        border-radius: 10px;
        width: 100%;
        position: relative;
    }

    main .banners .banner {
        cursor: pointer;
    }

        main .banners .banner img {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            aspect-ratio: 3/1;
        }

    main .banners #banner1 .banner-content {
        position: absolute;
        width: 38%;
        height: 80%;
        top: 10%;
        right: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: white;
    }

        main .banners #banner1 .banner-content p {
            margin: 0px;
            font-weight: bold;
        }

        main .banners #banner1 .banner-content .social {
            width: 100%;
            display: grid;
            grid-template-columns: auto auto auto;
            gap: 5px;
        }

            main .banners #banner1 .banner-content .social .social-item {
                border-radius: 5px;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 3px 0px;
            }

            main .banners #banner1 .banner-content .social .social-1 {
                background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
                grid-column: 1/4;
            }

            main .banners #banner1 .banner-content .social .social-2 {
                grid-column: 1 / 2;
                background-color: white;
                padding: 8px 0px;
            }

            main .banners #banner1 .banner-content .social .social-3 {
                grid-column: 2 / 3;
                background-color: white;
                margin: 0px 5px;
                padding: 8px 0px;
            }

            main .banners #banner1 .banner-content .social .social-4 {
                grid-column: 3 / 4;
                background-color: white;
                padding: 8px 0px;
            }

                main .banners #banner1 .banner-content .social .social-2:hover,
                main .banners #banner1 .banner-content .social .social-3:hover,
                main .banners #banner1 .banner-content .social .social-4:hover {
                    background-color: var(--first-color);
                }

                    main .banners #banner1 .banner-content .social .social-2:hover .row-2-icon,
                    main .banners #banner1 .banner-content .social .social-3:hover .row-2-icon,
                    main .banners #banner1 .banner-content .social .social-4:hover .row-2-icon {
                        color: white;
                    }

            main .banners #banner1 .banner-content .social .row-2-icon {
                color: var(--first-color);
                transition: 0.2s;
            }

            main .banners #banner1 .banner-content .social .social-1 .mobile-icon {
                display: none;
            }

/* ------------------------------------------------------------ */

main .visa .visa-content {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    gap: 20px;
    margin-bottom: 10px;
}

    main .visa .visa-content .visa-card {
        width: 100%;
        height: 130px;
        transition: 0.2s;
        margin-bottom: 10px;
    }

        main .visa .visa-content .visa-card:hover,
        main .visa .visa-content .visa-card:hover .caption,
        main .visa .visa-content .visa-card:hover .icon .icon-holder {
            color: var(--first-color) !important;
            cursor: pointer;
        }

        main .visa .visa-content .visa-card .vc-img {
            position: relative;
        }

            main .visa .visa-content .visa-card .vc-img .img-cover {
                position: absolute;
                opacity: 0.4;
                width: 100%;
                height: 100%;
                border-radius: 10px;
                z-index: 5;
            }

            main .visa .visa-content .visa-card .vc-img img {
                position: absolute;
                height: 100%;
                width: 100%;
                border-radius: 10px;
                object-fit: cover;
                z-index: 4;
            }

        main .visa .visa-content .visa-card .vc-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 10px 0px;
        }

            main .visa .visa-content .visa-card .vc-content .caption {
                color: var(--caption-color);
            }

        main .visa .visa-content .visa-card .icon .icon-holder {
            background-color: white;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--caption-color);
            transition: 0.2s;
        }

/* ------------------------------------------------------------ */

main .tourism .title {
    width: 35%;
}

main .tourism .tourism-menu a {
    color: var(--font-color) !important;
    padding: 3px 10px;
    border-radius: 10px;
    transition: 0.2s;
}

    main .tourism .tourism-menu a:hover {
        color: var(--second-color) !important;
    }

main .tourism .tourism-grids {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: 15px;
    height: auto;
}

    main .tourism .tourism-grids .tourism-grid .img {
        width: 45%;
        aspect-ratio: 1/0.62;
    }

    main .tourism .tourism-grids .tourism-grid .content {
        width: 55%;
        padding: 0.75em;
        padding-top: 0px;
    }

        main .tourism .tourism-grids .tourism-grid .content .category {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
        }

            main .tourism .tourism-grids .tourism-grid .content .category .icon {
                color: var(--second-color);
                height: 16px;
                display: flex;
                align-items: center;
            }

    main .tourism .tourism-grids .tourism-grid img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        object-fit: cover;
    }

    main .tourism .tourism-grids .tourism-grid {
        display: flex;
        height: fit-content;
    }

        main .tourism .tourism-grids .tourism-grid h4 {
            margin: 0px 0px 10px 0px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        main .tourism .tourism-grids .tourism-grid p.caption-color {
            margin-top: 10px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

main .tourism-grids .tourism-grid .img {
    border-radius: 15px;
    position: relative;
}

    main .tourism-grids .tourism-grid .img img {
        z-index: 2;
    }

    main .tourism-grids .tourism-grid .img .tag {
        position: absolute;
        background-color: var(--first-color);
        z-index: 3;
        top: 0px;
        padding: 6px 15px;
        color: #f9f9f9;
        font-size: 11px;
        border-radius: 0px 10px 0px 10px;
    }

main .tourism-grids .tourism-grid #mobile-text {
    display: none;
}

/* ------------------------------------------------------------ */

main .description-area {
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    main .description-area .description .content {
        display: flex;
        justify-content: space-between;
        align-items:center;
        height: 100%;
    }

    main .description-area .empty-apace {
        height: 20%;
    }

    main .description-area .description {
        height: 80%;
    }

        main .description-area .description .content {
            width: 65%;
        }
            main .description-area .description .content article-area {
                width: 65%;
            }
            main .description-area .description .content h3 {
                color:var(--first-color);
            }
            main .description-area .description .content p {
                font-weight: 500;
                line-height: 30px;
                margin: 0;
                text-align: justify;
                word-break: keep-all;
            }

main .description #man {
    height: 120%;
    top: -10%;
    position: relative;
}

main .description .description-text {
    align-self: center;
    opacity: 0.8;
}

main .description-area #mobile-text {
    display: none;
}

/* ------------------------------------------------------------ */

main .why-tripall .why-tripall-content {
    width: 45%;
}

    main .why-tripall .why-tripall-content .options {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

        main .why-tripall .why-tripall-content .options .option {
            width: 180px;
            height: 180px;
            border-radius: 15px;
            display: flex;
            row-gap: 10px !important;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            main .why-tripall .why-tripall-content .options .option .icon {
                border-radius: 15px;
                padding: 15px;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 80px;
                height: 80px;
            }

                main .why-tripall .why-tripall-content .options .option .icon i {
                    color: #FFFFFF;
                    font-size: 45px;
                }

        main .why-tripall .why-tripall-content .options .option1 .icon {
            background-color: #1674DA;
            color: var(--first-color);
        }

        main .why-tripall .why-tripall-content .options .option1 .content p {
            color: #1674DA;
            margin-bottom: 0px;
        }

        main .why-tripall .why-tripall-content .options .option2 .icon {
            background-color: #54ba1d;
        }

        main .why-tripall .why-tripall-content .options .option2 .content p {
            color: #54ba1d;
            margin-bottom: 0px;
        }

        main .why-tripall .why-tripall-content .options .option3 .icon {
            background-color: #FF8400;
        }

        main .why-tripall .why-tripall-content .options .option3 .content p {
            color: #FF8400;
            margin-bottom: 0px;
        }

/* ------------------------------------------------------------ */

main .news {
    width: 100%;
}

    main .news .news-content {
        width: 50%;
        background-color: var(--first-color);
        border-radius: 20px;
    }

        main .news .news-content p {
            font-size: 16px;
            text-align: center;
            color: #ffffff;
            margin-top: 0px;
            margin-bottom: 20px !important;
        }

        main .news .news-content .news-inputs {
            display: grid;
            gap: 12px;
            grid-template-columns: auto auto auto auto auto auto auto auto;
            width: 80%;
        }

            main .news .news-content .news-inputs #origin_div {
                grid-column: 1 / 5;
            }

            main .news .news-content .news-inputs #destination_div {
                grid-column: 5 / 9;
            }

            main .news .news-content .news-inputs #email_div {
                grid-column: 1 / 8;
            }

            main .news .news-content .news-inputs #button_div {
                grid-column: 8 / 9;
            }

            main .news .news-content .news-inputs div {
                position: relative;
            }

                main .news .news-content .news-inputs div :is(input, button) {
                    border-radius: 10px;
                    border: none;
                    font-family: inherit;
                    outline: none;
                    width: 100%;
                    height: 100%;
                    padding: 12px 10px 12px 10px !important;
                }

                main .news .news-content .news-inputs div .icon {
                    position: absolute;
                    color: var(--second-color);
                    top: 30%;
                }

                main .news .news-content .news-inputs div .right-icon-position {
                    right: 10px;
                }

                main .news .news-content .news-inputs div .right-input-position {
                    padding: 12px 30px 12px 10px !important;
                }

                main .news .news-content .news-inputs div .left-icon-position {
                    left: 10px;
                }

            main .news .news-content .news-inputs button {
                color: #ffffff;
                background-color: var(--second-color);
            }

                main .news .news-content .news-inputs button:hover {
                    cursor: pointer;
                }

/*-------------------------------------------------*/

.origin-toggle-btn {
    padding: 8px 1em;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 25px;
    font-family: inherit;
    background-color: #fff;
    border: none;
    color: var(--btn-text);
    font-weight: bold;
}

    .origin-toggle-btn.active {
        background-color: hsl(var(--first-color-hsl-light));
        color: var(--first-color);
    }

/*-------------------------------------------------*/

select,
input {
    padding: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    direction: rtl !important;
    text-align: right !important;
    height: 35px;
}

@media screen and (max-width: 768px) {
    .hmbg-menu-icon {
        display: block;
    }

    main .search-box-area {
        width: 100%;
        text-align: center;
        position: absolute !important;
        bottom: 50px;
        height: max-content;
    }

    main .search-box {
        width: 100% !important;
        height: max-content !important;
        padding-top: 0.25rem;
        border-radius: 20px 20px 0 0 !important;
    }
}

@media screen and (max-width: 768px) {
    main .heros .searchbox-bg {
        height: 45%;
    }

    .heros .search-box #search-icon {
        display: none;
    }

    main .tours #tour1NextButton,
    main .tours #tour2NextButton {
        left: -12.5px;
    }

    main .tours #tour1PrevButton,
    main .tours #tour2PrevButton {
        right: -12.5px;
    }

    main .destinations-content {
        grid-template-columns: auto auto;
        gap: 10px;
    }

        main .destinations-content .card {
            height: 90px;
        }

    .title {
        width: 60% !important;
        text-align: right;
        font-size: 13px;
    }

    .view-all {
        display: none;
    }

    .swicher {
        width: 40%;
        text-align: left;
    }

        .swicher button {
            font-size: 10px;
        }

    main .buy-ticket .buy-ticket-content {
        display: grid;
        gap: 10px;
        grid-template-columns: auto auto;
    }

    main .banners #banner3,
    main .banners #banner4 {
        display: none;
    }

    main .banners {
        display: grid;
        grid-template-columns: auto;
        gap: 20px;
        width: 100%;
    }

        main .banners #banner1 .banner-content {
            width: 40%;
            height: 100%;
            top: 0px;
            justify-content: center;
        }

            main .banners #banner1 .banner-content .content p,
            main .banners #banner1 .banner-content .content span {
                font-size: 10px !important;
            }

            main .banners #banner1 .banner-content .content p {
                margin: -5px 0px 5px 0px;
            }

            main .banners #banner1 .banner-content .social .social-item {
                padding: 4px;
            }

            main .banners #banner1 .banner-content .social .social-1 {
                padding: 0px;
            }

                main .banners #banner1 .banner-content .social .social-1 span {
                    font-size: 11px !important;
                }

                main .banners #banner1 .banner-content .social .social-1 .pc-icon {
                    display: none;
                }

                main .banners #banner1 .banner-content .social .social-1 .mobile-icon {
                    display: block;
                }

    main .visa .visa-content {
        display: grid;
        grid-template-columns: auto auto;
        gap: 20px;
    }

    main .tourism .tourism-grids {
        display: grid;
        grid-template-columns: auto;
        gap: 15px;
        height: auto;
    }

    main .news .news-content .news-inputs {
        display: grid;
        gap: 10px;
        grid-template-columns: auto;
    }

    main .news .news-title {
        margin: 0px auto;
        width: 80%;
    }

        main .news .news-title p {
            text-align: right;
        }

    main .news .news-content {
        margin: 0px auto;
        width: 100%;
    }

        main .news .news-content .news-inputs #origin_div,
        main .news .news-content .news-inputs #button_div,
        main .news .news-content .news-inputs #email_div,
        main .news .news-content .news-inputs #destination_div {
            grid-column: 1 / 2;
            padding: 7px 0px;
        }

    inputs-butto main .news .news-content .news-inputs input {
        width: 100%;
        padding: 8px 0px;
    }

    main .news .news-content .news-inputs #button_div button {
        height: 100%;
        padding: 10px 0px;
    }

    .col-100-mobile {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
    }

    main .description-area {
        height: max-content;
        gap: 20px;
    }

        main .description-area .description .content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items:normal;
            height: 100%;
        }

        main .description-area p {
            margin-top: 10px;
            width: 90%;
            margin: auto;
            text-align: justify;
        }

    main .tourism .title {
        width: 100% !important;
        padding: 0px 0.75em;
    }

    main .tourism .swicher {
        display: none;
    }

    main .tour-group .tour-group-content {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto auto auto;
        width: 100%;
        height: 400px;
        gap: 10px;
    }

        main .tour-group .tour-group-content .tg-card:nth-child(1) {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }

        main .tour-group .tour-group-content .tg-card:nth-child(2) {
            grid-column: 2 / 3;
            grid-row: 1 / 2;
        }

        main .tour-group .tour-group-content .tg-card:nth-child(3) {
            grid-column: 1 / 3;
            grid-row: 2 / 4;
        }

        main .tour-group .tour-group-content .tg-card:nth-child(4) {
            grid-column: 1 / 2;
            grid-row: 4 / 5;
        }

        main .tour-group .tour-group-content .tg-card:nth-child(5) {
            grid-column: 2 / 3;
            grid-row: 4 / 5;
        }

    .accordion-item {
        margin: 0px 0px;
    }

    .accordion-header {
        font-size: smaller;
    }

    main .why-tripall .why-tripall-content .options .option {
        font-size: 11px !important;
        font-weight: bold;
        height: 125px;
    }

        main .why-tripall .why-tripall-content .options .option p {
            font-size: 11px !important;
        }

        main .why-tripall .why-tripall-content .options .option .icon {
            border-radius: 10px;
            padding: 10px;
        }

    main .why-tripall .why-tripall-content {
        width: 100%;
    }

        main .why-tripall .why-tripall-content .options {
            gap: 10px;
            width: 95%;
        }

    main .tourism .tourism-menu {
        font-size: 12px;
    }

    main .tourism .tourism-grids {
        display: flex;
        flex-direction: column;
    }

        main .tourism .tourism-grids #tg1 {
            height: 160px;
            display: flex;
        }

            main .tourism .tourism-grids #tg1 .content {
                height: 65%;
            }

            main .tourism .tourism-grids #tg1 .img {
                height: 100%;
            }


        main .tourism .tourism-grids :is(#tg1, #tg2, #tg3, #tg4) img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

        main .tourism .tourism-grids :is(#tg1, #tg2, #tg3, #tg4) {
            display: flex;
            height: auto;
        }

    main .tourism .tourism-grids {
        display: grid;
        grid-template-columns: auto;
        gap: 15px;
        height: max-content;
    }

        main .tourism .tourism-grids .tourism-grid {
            height: max-content;
            margin: 8px 0px !important;
        }

            main .tourism .tourism-grids .tourism-grid .content {
                padding-top: 0px;
            }

            main .tourism .tourism-grids .tourism-grid #pc-text {
                display: none;
            }

            main .tourism .tourism-grids .tourism-grid #mobile-text {
                display: block;
            }

    main .description-area .description .content #pc-text {
        display: none;
    }

    main .description-area #mobile-text {
        display: block;
    }

    main .hotels-arae {
        height: min-content;
    }

    main .hotels .choose-city {
        width: 100%;
        margin: auto;
    }

        main .hotels .choose-city .col-50-c {
            width: 100% !important;
        }

        main .hotels .choose-city .swiper-buttons {
            display: none;
        }

    main .hotels .swiper-slide {
        height: calc((90% - 50px) / 2) !important;
    }

        main .hotels .swiper-slide .content .caption {
            font-size: 11px !important;
        }

        main .hotels .swiper-slide .content .value {
            font-size: 12px !important;
        }

    main .hotels .swiper .swiper-wrapper {
        height: 600px;
    }

    main .hotels .swiper .swiper-br {
        display: none;
    }

    main .searched-fly .choose-origin {
        justify-content: flex-start;
        column-gap: 0.8rem;
    }

        main .searched-fly .choose-origin .choose-origin-buttons {
            width: max-content;
            display: flex;
            overflow-x: auto;
            overflow-y: scroll;
            height: 50px;
            align-items: center;
            gap: 5px;
            flex-wrap: nowrap;
        }

            main .searched-fly .choose-origin .choose-origin-buttons .origin-toggle-btn {
                font-weight: normal;
                padding: 5px 15px !important;
                font-size: 0.8rem;
            }

            main .searched-fly .choose-origin .choose-origin-buttons .nav-item {
                width: calc(100%);
            }

    main .searched-fly .sf-card .card-content {
        aspect-ratio: 1/0.381;
    }

    main .banners .banner {
        height: 125px;
        object-position: right;
    }

        main .banners .banner img {
            object-position: right;
        }

    #largerText {
        font-size: 17px !important;
    }
}

@media screen and (max-width: 1280px) {
    .tours,
    .destinations,
    .tour-group,
    .hotels,
    .searched-fly,
    .buy-ticket,
    .banners,
    .visa,
    .tourism,
    .q-a,
    .why-tripall-head,
    .footer-content-area {
        width: 95% !important;
    }
}