@font-face {
    font-family: 'vazirmatn-bold';
    src: url('../font/Vazirmatn-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'vazirmatn-regular';
    src: url('../font/Vazirmatn-Regular.woff2') format('woff2');
}

html,
body {
    font-family: 'vazirmatn-regular';
    max-width: 1440px;
    margin: auto;
}

a {
    text-decoration: none;
    color: var(--color-secendry);
}

input {
    outline: none;
}

/* ----------root---------- */

:root {
    --border-color-1: rgba(0, 0, 0, .12);
    --border-color-2: rgba(0, 0, 0, 0.26);
    --text-color-header: #4B5259;
    --color-secendry: #17A2B8;
    --color-secendry-1: #C9E3F8;
    --color-secendry-2: #79b8ec;
    --color-secendry-3: #F2F9FF;
    --color-gray-1: #6C7680;
    --color-gray-2: #959EA6;
    --color-gray-3: #2b2f33;
    --color-gray-4: #6c7680;
    --color-gray-5: #4b5259;
    --color-gray-6: #0A0B0C;
    --color-gray-7: #BEC6CC;
    --color-hero-sect: #17A2B8;
    --color-into: #17A2B8;
    --color-into-2: #E8F9FC;
}

/* ----------header---------- */

.header {
    position: fixed;
    padding: 7px;
    box-shadow: silver 2px 2px 5px;
    background-color: white;
    left: 0;
    right: 0;
    z-index: 40;
}

.header .width {
    width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .width .display {
    display: flex;
    align-items: center;
    gap: 27px;
}

.header .width .display .list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 27px;
    margin: 0px;
    padding: 0px;
}

.header .width .display .list .item {
    color: var(--text-color-header);
    font-size: 15px;
}

.header .width .display .list .has-dropdown {
    position: relative;
}

.header .width .display .list .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 140px;
    padding: 10px 0;
    border-radius: 12px;
    border: 1px solid var(--border-color-1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.header .width .display .list .dropdown a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;

    font-size: 14px;
}

.header .width .display .list .dropdown a:hover {
    background: #f5f5f5;
}

.header .width .display .list .dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .width .buttons {
    display: flex;
    align-items: center;
    gap: 0px;
}

.header .width .buttons .btn {
    background: none;
    padding: 10px 15px;
    font-size: 15px;
    border: none;
    border-radius: 7px;
    font-family: 'vazirmatn-regular';
    color: var(--text-color-header);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all ease 0.1s;
}

.header .width .buttons .btn:hover {
    background-color: rgba(192, 192, 192, 0.158);
    transition: all ease 0.1s;
}

.header .mobile-header {
    display: none;
}

/* ----------hero-sect---------- */

.hero-sect {
    padding-top: 65px;
    position: relative;
}

.hero-sect .hero-image {
    width: 100%;
    position: absolute;
    display: block;
}

/* ----------sect-products---------- */

.sect-products {
    border: 1px solid var(--border-color-1);
    border-radius: 7px;
    width: 83%;
    margin: auto;
    margin-top: 227px;
    background-color: white;
    position: relative;
}

.sect-products .box-products {
    border-bottom: 1px solid var(--border-color-1);
}

.sect-products .box-products .list-products {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    width: 92%;
    margin: auto;
    padding: 10px 0px 0px 0px;
}

.sect-products .box-products .list-products .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 144px;
    color: var(--color-gray-5);
}

.sect-products .box-products .list-products .active {
    color: var(--color-hero-sect);
}

.sect-products .box-products .list-products .item .line {
    width: 115px;
    height: 5px;
    background-color: var(--color-hero-sect);
    border-radius: 7px 7px 0px 0px;
}

.sect-products .details {
    width: 95%;
    margin: auto;
    padding: 20px;
}

.sect-products .details .display {
    width: 100%;
    height: 35px;
    margin: 0px 0px 20px 0px;
}

.sect-products .details .options {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sect-products .details .options .origin-destination {
    display: flex;
    align-items: center;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

.sect-products .details .options .origin-destination .svg {
    display: none;
}

.sect-products .details .options .origin-destination .oring-inp-box {
    padding: 8px;
    color: var(--color-gray-2);
}

.sect-products .details .options .origin-destination .oring-inp-box #inp-origin {
    border: none;
    width: 100%;
}

.sect-products .details .options .origin-destination .line {
    width: 1px;
    height: 48px;
    background-color: var(--border-color-1);
}

.sect-products .details .options .origin-destination .destination-inp-box {
    padding: 8px;
    color: var(--color-gray-2);
}

.sect-products .details .options .origin-destination .destination-inp-box #inp-destination {
    width: 100%;
    border: none;
}

.sect-products .details .options .travel-date {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
    height: 48px;
}

.sect-products .details .options .travel-date .date-box {
    padding: 8px;
    width: 136px;
    margin: 0px;
}

.sect-products .details .options .travel-date .date-box .svg-data {
    display: none;
}

.sect-products .details .options .travel-date .date-box #inp-date-gone {
    border: none;
    width: 100%;
}

.sect-products .details .options .travel-date .date-box #inp-return-date {
    border: none;
    width: 100%;
}

.sect-products .details .options .travel-date .line {
    width: 1px;
    height: 48px;
    background-color: var(--color-gray-7);
}

.sect-products .details .options .passengers-inp-box {
    border: 1px solid var(--border-color-1);
    width: 182px;
    height: 48px;
    padding: 8px;
    border-radius: 8px;
}

.sect-products .details .options .passengers-inp-box #inp-passenger {
    border: none;
    width: 100%;
}

.sect-products .details .options .passengers-inp-box #inp-passenger {
    border: none;
    width: 100%;
}

.sect-products .details .options .btn-search {
    background-color: var(--color-hero-sect);
    color: white;
    padding: 4px 16px;
    border: 1px solid var(--border-color-1);
    font-size: 16px;
    width: 185px;
    height: 48px;
    border-radius: 8px;
}

/* ----------sect-advertisement---------- */

.sect-advertisement {
    width: 83%;
    margin: auto;
    margin-top: 20px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

.sect-advertisement .img-advertisement {
    width: 590px;
    height: 222px;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

/* ----------sect-tour-destinations---------- */

.sect-tour-destinations {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-tour-destinations .title {
    color: var(--color-gray-6);
    font-family: 'vazirmatn-bold';
    font-size: 25px;
    margin-bottom: 10px;
}

.sect-tour-destinations .text {
    color: var(--color-gray-6);
    font-size: 16px;
    margin-top: 20px;
}

.sect-tour-destinations .display {
    display: flex;
    align-items: start;
    justify-content: space-around;
    gap: 16px;
    margin-top: 30px;
}

.sect-tour-destinations .display .box {
    width: 127px;
}

.sect-tour-destinations .display .box .box-img {
    width: 127px;
    height: 127px;
    border-radius: 10px;
}

.sect-tour-destinations .display .box .text {
    text-align: center;
    font-family: 'vazirmatn-bold';
    color: var(--color-gray-5);
}

/* ----------sect-adventure---------- */

.sect-adventure {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-adventure .title {
    font-family: 'vazirmatn-bold';
    color: var(--color-gray-6);
    font-size: 32px;
    margin-bottom: 20px;
}

.sect-adventure .text {
    color: var(--color-gray-6);
    font-size: 16px;
}

.sect-adventure .btn-view-all {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--color-secendry);
    color: var(--color-secendry);
    font-size: 16px;
    padding: 4px 12px;
    height: 48px;
    margin-top: 20px;
}

.sect-adventure .swiper .button {
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid var(--border-color-1);
    padding: 12px;
    color: black;
}

.sect-adventure .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-adventure .swiper-wrapper .swiper-slide {
    width: 289px !important;
    height: 322px;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

.sect-adventure .swiper-wrapper .swiper-slide .box-img {
    width: 100%;
    height: 162px;
    border-radius: 8px 8px 0px 0px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding {
    padding: 12px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .mini-title {
    color: var(--color-gray-3);
    font-size: 16px;
    font-family: 'vazirmatn-bold';
    margin: 7px 0px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .display {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .display .text {
    font-size: 14px;
    color: var(--color-gray-1);
    margin: 5px 0px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .display .line {
    width: 4px;
    height: 4px;
    border-radius: 100px;
    background-color: var(--color-gray-7);
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color-1);
    padding: 10px 0px;
    margin-top: 35px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .price .text {
    font-size: 10px;
    color: var(--color-gray-1);
    margin: 0px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .price .price-text {
    font-size: 12px;
    color: var(--color-gray-1);
    margin: 0px;
}

.sect-adventure .swiper-wrapper .swiper-slide .padding .price .price-text strong {
    color: var(--color-secendry);
    font-size: 16px;
}

/* ----------sect-app---------- */

.sect-app {
    width: 83%;
    margin: auto;
    margin-top: 60px;
    border: 1px solid var(--border-color-1);
    border-radius: 8px;
    display: flex;
    padding: 8px 64px;
    align-items: center;
    justify-content: space-between;
}

.sect-app .box-download {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sect-app .box-download .title {
    margin: 0px 0px 10px 0px;
    color: var(--color-gray-3);
    font-size: 23px;
    font-family: 'vazirmatn-bold';
}

.sect-app .box-download .text {
    font-size: 20px;
}

.sect-app .box-download .download-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-secendry);
    margin-top: 34px;
}

.sect-app .box-download .text-addition {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-2);
    margin-top: 34px;
}

.sect-app .box-download .text-addition .display {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----------sect-other-tours---------- */

.sect-other-tours {
    width: 83%;
    margin: auto;
    margin-top: 30px;
}

.sect-other-tours .title {
    color: var(--color-gray-6);
    font-family: 'vazirmatn-bold';
    font-size: 24px;
    margin: 20px 0px;
}

.sect-other-tours .text {
    font-size: 14px;
    color: var(--color-gray-6);
    text-align: justify;
    text-justify: auto;
    line-height: 2.3;
}

.sect-other-tours .display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 16px 0px;
    gap: 16px;
}

.sect-other-tours .display .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
    border: 1px solid var(--border-color-1);
    padding: 24px;
    background-color: #ffffff;
    transition: all ease 0.5s;
}

.sect-other-tours .display .box:hover {
    box-shadow: 0 1px 10px 2px #00000014;
}

.sect-other-tours .display .box .text {
    margin: 0px;
    font-size: 16px;
    color: var(--color-gray-6);
}

/* ----------final-sect---------- */

.final-sect {
    width: 83%;
    border-top: 1px solid var(--border-color-1);
    padding-top: 50px;
    padding-bottom: 50px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.final-sect .box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 29%;
}

.final-sect .box .title {
    color: var(--color-gray-5);
    margin: 0px;
    font-family: 'vazirmatn-bold';
    font-size: 17px;
}

.final-sect .box .text {
    color: var(--color-gray-4);
    margin: 10px 0px;
    font-size: 14px;
}

/* ----------footer---------- */

.footer {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid var(--border-color-1);
    background-color: #ffffff;
}

.footer .width {
    width: 1195px;
    margin: auto;
}

.footer .width .main-section {
    display: flex;
    align-items: start;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color-1);
    padding-top: 50px;
}

.footer .width .main-section .horizontal-list {
    display: flex;
    align-items: start;
    gap: 100px;
}

.footer .width .main-section .horizontal-list .list-title {
    margin: 0px;
    font-size: 20px;
    font-family: 'vazirmatn-bold';
    margin-bottom: 20px;
}

.footer .width .main-section .horizontal-list .list {
    list-style: none;
    padding: 0px;
}

.footer .width .main-section .horizontal-list .list .item {
    font-size: 15px;
    color: var(--color-gray-3);
    transition: all ease 0.3s;
}

.footer .width .main-section .horizontal-list .list .item:hover {
    color: var(--color-gray-5);
    transition: all ease 0.3s;
}

.footer .width .main-section .hertical-list .list {
    display: flex;
    align-items: center;
    padding: 0px;
    gap: 20px;
    list-style: none;
}

.footer .width .main-section .hertical-list .list .item {
    color: var(--color-gray-4);
    font-size: 13px;
}

.footer .width .main-section .symbol-trust {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 70px;
}

.footer .width .main-section .symbol-trust .text {
    font-size: 14px;
    text-align: left;
    margin-top: 20px;
}

.footer .width .main-section .symbol-trust .display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 0px 20px 0px;
}

.footer .width .main-section .symbol-trust .display .box-image {
    border-radius: 7px;
    border: 1px solid var(--border-color-1);
    padding: 4px;
}

.footer .width .social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

.footer .width .social-media .text {
    font-size: 12px;
    color: var(--color-gray-4);
    margin: 0px;
}

.footer .width .social-media .display {
    display: flex;
    align-items: center;
    gap: 0px;
}

.footer .width .social-media .display .social-icon {
    color: var(--color-gray-4);
    padding: 0px 20px;
}

/* ----------laptop , tablet---------- */
@media (max-width: 1024px) {
    /* ----------header---------- */

    .header {
        padding: 0px;
        box-shadow: none;
        top: 0;
        background-color: none;
    }

    .header .width {
        display: none;
    }

    .header .mobile-header {
        display: block;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 4px;
        height: 56px;
    }

    .header .mobile-header .svg-box {
        padding: 12px;
        color: var(--color-gray-5);
    }

    .header .mobile-header .title-page {
        font-size: 16px;
        color: var(--color-gray-3);
        margin: 0px;
    }

    /* ----------hero-sect---------- */

    .hero-sect {
        display: none;
    }

    /* ----------sect-products---------- */

    .sect-products {
        border: none;
        width: 97%;
        margin: auto;
        margin-top: 65px;
        background-color: white;
        position: relative;
    }

    .sect-products .box-products {
        display: none;
    }

    .sect-products .details {
        width: 100%;
        padding: 0px;
    }

    .sect-products .details .display {
        display: none;
    }

    .sect-products .details .options {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .sect-products .details .options .origin-destination {
        display: block;
        align-items: center;
        height: 98px;
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--color-gray-7);
    }

    .sect-products .details .options .origin-destination .svg {
        display: inline;
        color: var(--color-gray-2);
    }

    .sect-products .details .options .origin-destination .oring-inp-box {
        padding: 8px;
        color: var(--color-gary-2);
        display: flex;
        gap: 4px;
        height: 48px;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 8px 8px 0px 0px;
        border-bottom: 1px solid var(--color-gray-7);
    }

    .sect-products .details .options .origin-destination .oring-inp-box #inp-origin {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .origin-destination .line {
        display: none;
    }

    .sect-products .details .options .origin-destination .destination-inp-box {
        padding: 8px;
        color: var(--color-gary-2);
        display: flex;
        gap: 4px;
        height: 48px;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 0px 0px 8px 8px;
    }

    .sect-products .details .options .origin-destination .destination-inp-box #inp-destination {
        width: 100%;
        border: none;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .travel-date {
        border-radius: 8px;
        border: 1px solid var(--color-gray-7);
        height: 50px;
        width: 100%;
    }

    .sect-products .details .options .travel-date .date-box {
        padding: 8px;
        width: 100%;
        display: flex;
        gap: 4px;
        height: 100%;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 8px;
    }

    .sect-products .details .options .travel-date .date-box .svg-data {
        display: inline;
        color: var(--color-gray-2);
    }

    .sect-products .details .options .travel-date .date-box #inp-date-gone {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .travel-date .date-box #inp-return-date {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .passengers-inp-box {
        border: 1px solid var(--color-gray-7);
        width: 100%;
        height: 48px;
        padding: 8px;
        border-radius: 8px;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .passengers-inp-box #inp-passenger {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .btn-box {
        width: 100%;
    }

    .sect-products .details .options .btn-box .btn-search {
        background-color: var(--color-hero-sect);
        color: white;
        padding: 4px 16px;
        border: 1px solid var(--border-color-1);
        font-size: 16px;
        width: 100% !important;
        height: 48px;
        border-radius: 8px;
    }

    /* ----------sect-advertisement---------- */

    .sect-advertisement {
        display: none;
    }

    /* ----------sect-tour-destinations---------- */

    .sect-tour-destinations {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-tour-destinations .title {
        color: var(--color-gray-6);
        font-family: 'vazirmatn-bold';
        font-size: 24px;
        margin: 0px;
    }

    .sect-tour-destinations .text {
        color: var(--color-gray-6);
        font-size: 16px;
        margin: 10px 0px;
    }

    .sect-tour-destinations .display {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 30px;
        width: 100%;
    }

    .sect-tour-destinations .display .box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sect-tour-destinations .display .box .box-img {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .sect-tour-destinations .display .box .text {
        text-align: center;
        font-family: 'vazirmatn-bold';
        color: var(--color-gray-5);
        font-size: 16px;
    }

    /* ----------sect-adventure---------- */

    .sect-adventure {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-adventure .title {
        font-family: 'vazirmatn-bold';
        color: var(--color-gray-6);
        font-size: 32px;
        margin-bottom: 10px;
    }

    .sect-adventure .text {
        color: var(--color-gray-6);
        font-size: 16px;
    }

    .sect-adventure .btn-box {
        width: 25% !important;
    }

    .sect-adventure .btn-box .btn-view-all {
        background-color: #ffffff;
        border-radius: 8px;
        border: 1px solid var(--color-secendry);
        color: var(--color-secendry);
        font-size: 16px;
        padding: 4px 12px;
        height: 40px;
        width: 100%;
        margin: auto;
        margin-top: 20px;
    }

    .sect-adventure .swiper-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .sect-adventure .swiper-wrapper .swiper-slide {
        width: 289px !important;
        height: 322px;
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
    }

    .sect-adventure .swiper-wrapper .swiper-slide .box-img {
        width: 100%;
        height: 162px;
        border-radius: 8px 8px 0px 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding {
        padding: 12px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .mini-title {
        color: var(--color-gray-3);
        font-size: 14px;
        font-family: 'vazirmatn-bold';
        margin: 7px 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .display {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .display .text {
        font-size: 12px;
        color: var(--color-gray-1);
        margin: 5px 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .display .line {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background-color: var(--color-gray-7);
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color-1);
        padding: 10px 0px;
        margin-top: 35px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price .text {
        font-size: 10px;
        color: var(--color-gray-1);
        margin: 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price .price-text {
        font-size: 12px;
        color: var(--color-gray-1);
        margin: 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price .price-text strong {
        color: var(--color-secendry);
        font-size: 14px;
    }

    /* ----------sect-app---------- */

    .sect-app {
        display: none;
    }

    /* ----------sect-other-tours---------- */

    .sect-other-tours {
        width: 97%;
        margin: auto;
        margin-top: 30px;
    }

    .sect-other-tours .title {
        color: var(--color-gray-6);
        font-family: 'vazirmatn-bold';
        font-size: 24px;
        margin: 20px 0px;
    }

    .sect-other-tours .text {
        font-size: 14px;
        color: var(--color-gray-6);
        text-align: justify;
        text-justify: auto;
        line-height: 2;
    }

    .sect-other-tours .display {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 16px 0px;
        gap: 16px;
    }

    .sect-other-tours .display .box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 8px;
        box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
        border: 1px solid var(--border-color-1);
        padding: 24px;
        background-color: #ffffff;
        transition: all ease 0.5s;
    }

    .sect-other-tours .display .box:hover {
        box-shadow: 0 1px 10px 2px #00000014;
    }

    .sect-other-tours .display .box .text {
        margin: 0px;
        font-size: 16px;
        color: var(--color-gray-6);
    }

    /* ----------final-sect---------- */

    .final-sect {
        width: 97%;
        border-top: 1px solid var(--border-color-1);
        padding-top: 50px;
        padding-bottom: 50px;
        margin: auto;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .final-sect .img-final-sect {
        width: 64px !important;
        height: 64px !important;
    }

    .final-sect .box {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 33%;
    }

    .final-sect .box .title {
        color: var(--color-gray-5);
        margin: 0px;
        font-family: 'vazirmatn-bold';
        font-size: 14px;
    }

    .final-sect .box .text {
        color: var(--color-gray-1);
        margin: 10px 0px;
        font-size: 12px;
    }

    /* ----------footer---------- */

    .footer {
        display: none;
    }
}

/* ----------mobile---------- */
@media (max-width: 576px) {
    /* ----------header---------- */

    .header {
        padding: 0px;
        box-shadow: none;
        top: 0;
        background-color: none;
    }

    .header .width {
        display: none;
    }

    .header .mobile-header {
        display: block;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 4px;
        height: 56px;
    }

    .header .mobile-header .svg-box {
        padding: 12px;
        color: var(--color-gray-5);
    }

    .header .mobile-header .title-page {
        font-size: 16px;
        color: var(--color-gray-3);
        margin: 0px;
    }

    /* ----------hero-sect---------- */

    .hero-sect {
        display: none;
    }

    /* ----------sect-products---------- */

    .sect-products {
        border: none;
        width: 94%;
        margin: auto;
        margin-top: 65px;
        background-color: white;
        position: relative;
    }

    .sect-products .box-products {
        display: none;
    }

    .sect-products .details {
        width: 100%;
        padding: 0px;
    }

    .sect-products .details .display {
        display: none;
    }

    .sect-products .details .options {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .sect-products .details .options .origin-destination {
        display: block;
        align-items: center;
        height: 98px;
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--color-gray-7);
    }

    .sect-products .details .options .origin-destination .svg {
        display: inline;
        color: var(--color-gray-2);
    }

    .sect-products .details .options .origin-destination .oring-inp-box {
        padding: 8px;
        color: var(--color-gary-2);
        display: flex;
        gap: 4px;
        height: 48px;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 8px 8px 0px 0px;
        border-bottom: 1px solid var(--color-gray-7);
    }

    .sect-products .details .options .origin-destination .oring-inp-box #inp-origin {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .origin-destination .line {
        display: none;
    }

    .sect-products .details .options .origin-destination .destination-inp-box {
        padding: 8px;
        color: var(--color-gary-2);
        display: flex;
        gap: 4px;
        height: 48px;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 0px 0px 8px 8px;
    }

    .sect-products .details .options .origin-destination .destination-inp-box #inp-destination {
        width: 100%;
        border: none;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .travel-date {
        border-radius: 8px;
        border: 1px solid var(--color-gray-7);
        height: 50px;
        width: 100%;
    }

    .sect-products .details .options .travel-date .date-box {
        padding: 8px;
        width: 100%;
        display: flex;
        gap: 4px;
        height: 100%;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 8px;
    }

    .sect-products .details .options .travel-date .date-box .svg-data {
        display: inline;
        color: var(--color-gray-2);
    }

    .sect-products .details .options .travel-date .date-box #inp-date-gone {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .travel-date .date-box #inp-return-date {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .passengers-inp-box {
        border: 1px solid var(--color-gray-7);
        width: 100%;
        height: 48px;
        padding: 8px;
        border-radius: 8px;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .passengers-inp-box #inp-passenger {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .btn-box {
        width: 100%;
    }

    .sect-products .details .options .btn-box .btn-search {
        background-color: var(--color-hero-sect);
        color: white;
        padding: 4px 16px;
        border: 1px solid var(--border-color-1);
        font-size: 16px;
        width: 100% !important;
        height: 48px;
        border-radius: 8px;
    }

    /* ----------sect-advertisement---------- */

    .sect-advertisement {
        display: none;
    }

    /* ----------sect-tour-destinations---------- */

    .sect-tour-destinations {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-tour-destinations .title {
        color: var(--color-gray-6);
        font-family: 'vazirmatn-bold';
        font-size: 20px;
        margin: 0px;
    }

    .sect-tour-destinations .text {
        color: var(--color-gray-6);
        font-size: 14px;
        margin: 10px 0px;
    }

    .sect-tour-destinations .display {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 30px;
        width: 100%;
    }

    .sect-tour-destinations .display .box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sect-tour-destinations .display .box .box-img {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }

    .sect-tour-destinations .display .box .text {
        text-align: center;
        font-family: 'vazirmatn-bold';
        color: var(--color-gray-5);
        font-size: 12px;
    }

    /* ----------sect-adventure---------- */

    .sect-adventure {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-adventure .title {
        font-family: 'vazirmatn-bold';
        color: var(--color-gray-6);
        font-size: 24px;
        margin-bottom: 10px;
    }

    .sect-adventure .text {
        color: var(--color-gray-6);
        font-size: 14px;
    }

    .sect-adventure .btn-box {
        width: 100% !important;
    }

    .sect-adventure .btn-box .btn-view-all {
        background-color: #ffffff;
        border-radius: 8px;
        border: 1px solid var(--color-secendry);
        color: var(--color-secendry);
        font-size: 14px;
        padding: 4px 12px;
        height: 40px;
        width: 100%;
        margin-top: 10px;
    }

    .sect-adventure .swiper .button {
        display: none;
    }

    .sect-adventure .swiper-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide {
        width: 100% !important;
        height: 322px;
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
    }

    .sect-adventure .swiper-wrapper .swiper-slide .box-img {
        width: 100%;
        height: 162px;
        border-radius: 8px 8px 0px 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding {
        padding: 12px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .mini-title {
        color: var(--color-gray-3);
        font-size: 14px;
        font-family: 'vazirmatn-bold';
        margin: 7px 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .display {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .display .text {
        font-size: 12px;
        color: var(--color-gray-1);
        margin: 5px 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .display .line {
        width: 4px;
        height: 4px;
        border-radius: 100px;
        background-color: var(--color-gray-7);
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid var(--border-color-1);
        padding: 10px 0px;
        margin-top: 35px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price .text {
        font-size: 10px;
        color: var(--color-gray-1);
        margin: 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price .price-text {
        font-size: 12px;
        color: var(--color-gray-1);
        margin: 0px;
    }

    .sect-adventure .swiper-wrapper .swiper-slide .padding .price .price-text strong {
        color: var(--color-secendry);
        font-size: 14px;
    }

    /* ----------sect-app---------- */

    .sect-app {
        display: none;
    }

    /* ----------sect-other-tours---------- */

    .sect-other-tours {
        width: 94%;
        margin: auto;
        margin-top: 30px;
    }

    .sect-other-tours .title {
        color: var(--color-gray-6);
        font-family: 'vazirmatn-bold';
        font-size: 24px;
        margin: 20px 0px;
    }

    .sect-other-tours .text {
        font-size: 14px;
        color: var(--color-gray-6);
        text-align: justify;
        text-justify: auto;
        line-height: 2;
    }

    .sect-other-tours .display {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 16px 0px;
        gap: 16px;
    }

    .sect-other-tours .display .box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 8px;
        box-shadow: 0 1px 1px -1px rgba(0, 0, 0, .08);
        border: 1px solid var(--border-color-1);
        padding: 24px;
        background-color: #ffffff;
        transition: all ease 0.5s;
    }

    .sect-other-tours .display .box:hover {
        box-shadow: 0 1px 10px 2px #00000014;
    }

    .sect-other-tours .display .box .text {
        margin: 0px;
        font-size: 16px;
        color: var(--color-gray-6);
    }

    /* ----------final-sect---------- */

    .final-sect {
        width: 94%;
        border-top: 1px solid var(--border-color-1);
        padding-top: 50px;
        padding-bottom: 50px;
        margin: auto;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .final-sect .img-final-sect {
        width: 64px !important;
        height: 64px !important;
    }

    .final-sect .box {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .final-sect .box .title {
        color: var(--color-gray-5);
        margin: 0px;
        font-family: 'vazirmatn-bold';
        font-size: 12px;
    }

    .final-sect .box .text {
        color: var(--color-gray-1);
        margin: 10px 0px;
        font-size: 12px;
    }

    /* ----------footer---------- */

    .footer {
        display: none;
    }
}