@font-face {
    font-family: 'alibaba-bold';
    src: url('../font/alibaba-bold.woff2-bbb24413.woff2') format('woff2');
}

@font-face {
    font-family: 'alibaba-regular';
    src: url('../font/alibaba-regular.woff2-5d2979c4.woff2') format('woff2');
}

html,
body {
    font-family: 'alibaba-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: #0077DB;
    --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-gray-8: #F6F6F6;
    --color-hero-sect: #fdb713;
    --color-into: #17A2B8;
    --color-into-2: #E8F9FC;
    --color-seccess: #1e7b33;
    --color-seccess-2: #eafaee;
    --color-seccess-3: #28a745;
}

/* ----------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: 14px;
}

.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: 14px;
    border: none;
    border-radius: 7px;
    font-family: 'alibaba-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-secendry);
}

.sect-products .box-products .list-products .item .line {
    width: 115px;
    height: 5px;
    background-color: var(--color-secendry);
    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 {
    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);
    width: 365px;
}

.sect-products .details .options .origin-destination .oring-inp-box #inp-origin {
    border: none;
    width: 100%;
}

.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: 159px;
    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: 228px;
    height: 48px;
    padding: 8px;
    border-radius: 8px;
}

.sect-products .details .options .passengers-inp-box #inp-passenger {
    border: none;
    width: 100%;
}

.sect-products .details .options .btn-box .btn-search {
    background-color: var(--color-hero-sect);
    color: var(--color-gray-6);
    padding: 4px 16px;
    border: 1px solid var(--border-color-1);
    font-size: 16px;
    width: 185px;
    height: 48px;
    border-radius: 8px;
}

/* ----------sect-other-services---------- */

.sect-other-services {
    width: 83%;
    margin: auto;
    margin-top: 35px;
}

.sect-other-services .title {
    color: var(--color-gray-3);
    font-family: 'alibaba-bold';
    font-size: 20px;
    margin-bottom: 20px;
}

.sect-other-services .display {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid var(--border-color-1);
    padding: 12px 20px;
    border-radius: 7px;
}

.sect-other-services .display .line {
    border-left: 1px solid var(--border-color-1);
    border-right: 1px solid var(--border-color-1);
}

.sect-other-services .display .box-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 115px;
}

.sect-other-services .display .box-service .text {
    margin: 0px;
    color: var(--color-gray-5);
}

/* ----------sect-villa-rental---------- */

.sect-villa-rental {
    width: 83%;
    margin: auto;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sect-villa-rental .box {
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
    width: 288px;
}

.sect-villa-rental .box .box-img {
    width: 100%;
    height: 151px;
    border-radius: 8px 8px 0px 0px;
}

.sect-villa-rental .box .text {
    font-size: 18px;
    color: var(--color-gray-5);
    font-family: "alibaba-bold";
    text-align: center;
    padding: 12px 8px;
    margin: 0px;
}

/* ----------sect-destination---------- */

.sect-destination {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-destination .title {
    color: var(--color-gray-6);
    font-size: 20px;
    font-family: "alibaba-bold";
    margin-bottom: 15px;
}

.sect-destination .mini-title {
    font-size: 14px;
    color: var(--color-gray-6);
    margin-bottom: 24px;
}

.sect-destination .display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sect-destination .display .box {
    width: 288px;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
    padding: 8px 8px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sect-destination .display .box .svg {
    color: #A3AAB0;
}

.sect-destination .display .box .information-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sect-destination .display .box .information-box .img-box .box-img {
    width: 88px;
    height: 88px;
    border-radius: 8px;
}

.sect-destination .display .box .information-box .rent-text {
    margin: 0px;
    color: var(--color-gray-4);
    font-size: 12px;
}

.sect-destination .display .box .information-box .destination-text {
    margin: 0px;
    font-family: "alibaba-bold";
    color: var(--color-gray-3);
    font-size: 16px;
}

/* ----------sect-accommodation-type---------- */

.sect-accommodation-type {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-accommodation-type .title {
    color: var(--color-gray-6);
    font-size: 20px;
    font-family: "alibaba-bold";
    margin: 0px;
    margin-bottom: 24px;
}

.sect-accommodation-type .display {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sect-accommodation-type .display .box {
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 186px;
}

.sect-accommodation-type .display .box .svg {
    color: var(--color-gray-4);
}

.sect-accommodation-type .display .box .mini-title {
    font-family: "alibaba-bold";
    color: var(--color-gray-3);
    font-size: 14px;
}

/* ----------sect-app---------- */

.sect-app {
    width: 83%;
    margin: auto;
    margin-top: 60px;
    border: 1px solid var(--border-color-1);
    border-radius: 7px;
    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: 'alibaba-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-villa-kordan---------- */

.sect-villa-kordan {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-villa-kordan .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sect-villa-kordan .top-part .title {
    color: var(--color-gray-6);
    font-size: 20px;
    font-family: "alibaba-bold";
    margin: 0px;
}

.sect-villa-kordan .top-part .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    margin: 10px 0px;
}

.sect-villa-kordan .top-part .view-all {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-villa-kordan .top-part .view-all .text {
    margin: 0px;
    font-size: 14px;
}

.sect-villa-kordan .swiper .button {
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid var(--border-color-1);
    padding: 12px;
    color: black;
}

.sect-villa-kordan .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide {
    width: 289px !important;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .box-img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    height: 161px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding {
    padding: 8px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .display .score-number {
    color: var(--color-into);
    font-size: 14px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .display .score-number .span {
    font-size: 10px;
    color: var(--color-into);
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .display .score-text {
    font-size: 12px;
    color: var(--color-gray-1);
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    font-family: "alibaba-bold";
    margin: 14px 0px 4px 0px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .small-title {
    color: var(--color-gray-3);
    font-size: 10px;
    margin: 8px 0px 12px 0px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .discount {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    margin-top: 15px;
    height: 24px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .discount .number-text {
    color: var(--color-gray-5);
    font-size: 14px;
    text-decoration: underline red;
    margin: 0px 0px 0px 5px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .discount .percentage-text {
    margin: 0px;
    font-size: 12px;
    color: var(--color-seccess);
    background-color: var(--color-seccess-2);
    padding: 3px 8px;
    border-radius: 1024px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .price .text {
    color: var(--color-gray-1);
    font-size: 12px;
    margin: 0px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .price .small-text {
    font-size: 12px;
    color: var(--color-gray-2);
    margin: 0px 4px 0px 0px;
}

.sect-villa-kordan .swiper-wrapper .swiper-slide .padding .price .small-text .strong {
    color: var(--color-secendry);
    font-size: 20px;
    margin: 0px;
}

/* ----------sect-instant-booking---------- */

.sect-instant-booking {
    margin-top: 100px;
    background-color: var(--color-gray-8);
    padding: 28px 0px;
    position: absolute;
    left: 0;
    right: 0;
}

.sect-instant-booking .width {
    width: 1195px;
    margin: auto;
}

.sect-instant-booking .width .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sect-instant-booking .width .top-part .title {
    color: var(--color-seccess-3);
    font-size: 20px;
    font-family: "alibaba-bold";
    margin: 0px;
}

.sect-instant-booking .width .top-part .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    margin: 10px 0px;
}

.sect-instant-booking .width .top-part .view-all {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-instant-booking .width .top-part .view-all .text {
    margin: 0px;
    font-size: 14px;
}

.sect-instant-booking .width .swiper .button {
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid var(--border-color-1);
    padding: 12px;
    color: black;
}

.sect-instant-booking .width .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide {
    width: 289px !important;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .box-img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    height: 161px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding {
    padding: 8px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .display .score-number {
    color: var(--color-into);
    font-size: 14px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .display .score-number .span {
    font-size: 10px;
    color: var(--color-into);
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .display .score-text {
    font-size: 12px;
    color: var(--color-gray-1);
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    font-family: "alibaba-bold";
    margin: 14px 0px 4px 0px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .small-title {
    color: var(--color-gray-3);
    font-size: 10px;
    margin: 8px 0px 12px 0px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .discount {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    margin-top: 15px;
    height: 24px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .discount .number-text {
    color: var(--color-gray-5);
    font-size: 14px;
    text-decoration: underline red;
    margin: 0px 0px 0px 5px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .discount .percentage-text {
    margin: 0px;
    font-size: 12px;
    color: var(--color-seccess);
    background-color: var(--color-seccess-2);
    padding: 3px 8px;
    border-radius: 1024px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .price .text {
    color: var(--color-gray-1);
    font-size: 12px;
    margin: 0px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .price .small-text {
    font-size: 12px;
    color: var(--color-gray-2);
    margin: 0px 4px 0px 0px;
}

.sect-instant-booking .width .swiper-wrapper .swiper-slide .padding .price .small-text .strong {
    color: var(--color-secendry);
    font-size: 20px;
    margin: 0px;
}

/* ----------sect-suite-tehran---------- */

.sect-suite-tehran {
    width: 83%;
    margin: auto;
    margin-top: 650px;
}

.sect-suite-tehran .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sect-suite-tehran .top-part .title {
    color: var(--color-gray-6);
    font-size: 20px;
    font-family: "alibaba-bold";
    margin: 0px;
}

.sect-suite-tehran .top-part .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    margin: 10px 0px;
}

.sect-suite-tehran .top-part .view-all {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-suite-tehran .top-part .view-all .text {
    margin: 0px;
    font-size: 14px;
}

.sect-suite-tehran .swiper .button {
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid var(--border-color-1);
    padding: 12px;
    color: black;
}

.sect-suite-tehran .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide {
    width: 289px !important;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .box-img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    height: 161px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding {
    padding: 8px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .display .score-number {
    color: var(--color-into);
    font-size: 14px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .display .score-number .span {
    font-size: 10px;
    color: var(--color-into);
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .display .score-text {
    font-size: 12px;
    color: var(--color-gray-1);
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    font-family: "alibaba-bold";
    margin: 14px 0px 4px 0px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .small-title {
    color: var(--color-gray-3);
    font-size: 10px;
    margin: 8px 0px 12px 0px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .discount {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    margin-top: 15px;
    height: 24px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .discount .number-text {
    color: var(--color-gray-5);
    font-size: 14px;
    text-decoration: underline red;
    margin: 0px 0px 0px 5px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .discount .percentage-text {
    margin: 0px;
    font-size: 12px;
    color: var(--color-seccess);
    background-color: var(--color-seccess-2);
    padding: 3px 8px;
    border-radius: 1024px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .price .text {
    color: var(--color-gray-1);
    font-size: 12px;
    margin: 0px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .price .small-text {
    font-size: 12px;
    color: var(--color-gray-2);
    margin: 0px 4px 0px 0px;
}

.sect-suite-tehran .swiper-wrapper .swiper-slide .padding .price .small-text .strong {
    color: var(--color-secendry);
    font-size: 20px;
    margin: 0px;
}

/* ----------sect-villa-ramsar---------- */

.sect-villa-ramsar {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-villa-ramsar .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sect-villa-ramsar .top-part .title {
    color: var(--color-gray-6);
    font-size: 20px;
    font-family: "alibaba-bold";
    margin: 0px;
}

.sect-villa-ramsar .top-part .view-all {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-villa-ramsar .top-part .view-all .text {
    margin: 0px;
    font-size: 14px;
}

.sect-villa-ramsar .swiper .button {
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid var(--border-color-1);
    padding: 12px;
    color: black;
}

.sect-villa-ramsar .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide {
    width: 289px !important;
    border-radius: 8px;
    border: 1px solid var(--border-color-1);
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .box-img {
    width: 100%;
    border-radius: 8px 8px 0px 0px;
    height: 161px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding {
    padding: 8px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .display .score-number {
    color: var(--color-into);
    font-size: 14px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .display .score-number .span {
    font-size: 10px;
    color: var(--color-into);
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .display .score-text {
    font-size: 12px;
    color: var(--color-gray-1);
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .mini-title {
    color: var(--color-gray-6);
    font-size: 14px;
    font-family: "alibaba-bold";
    margin: 14px 0px 4px 0px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .small-title {
    color: var(--color-gray-3);
    font-size: 10px;
    margin: 8px 0px 12px 0px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .discount {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    margin-top: 15px;
    height: 24px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .discount .number-text {
    color: var(--color-gray-5);
    font-size: 14px;
    text-decoration: underline red;
    margin: 0px 0px 0px 5px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .discount .percentage-text {
    margin: 0px;
    font-size: 12px;
    color: var(--color-seccess);
    background-color: var(--color-seccess-2);
    padding: 3px 8px;
    border-radius: 1024px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .price .text {
    color: var(--color-gray-1);
    font-size: 12px;
    margin: 0px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .price .small-text {
    font-size: 12px;
    color: var(--color-gray-2);
    margin: 0px 4px 0px 0px;
}

.sect-villa-ramsar .swiper-wrapper .swiper-slide .padding .price .small-text .strong {
    color: var(--color-secendry);
    font-size: 20px;
    margin: 0px;
}

/* ----------sect-questions---------- */

.sect-questions {
    width: 83%;
    margin: auto;
    margin-top: 70px;
}

.sect-questions .title {
    color: var(--color-gray-3);
    font-family: 'alibaba-bold';
    font-size: 24px;
    margin-bottom: 20px;
}

.sect-questions .text {
    color: var(--color-gray-4);
    line-height: 2.3;
    padding: 16px 64px;
    text-align: justify;
    text-justify: auto;
    font-size: 16px;
}

.sect-questions .question-box {
    padding: 5px 0px;
}

.sect-questions .question-box .display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-questions .question-box .display .a-accordion__icon {
    color: var(--color-into);
    background-color: var(--color-into-2);
    border-radius: 50%;
    padding: 5px;
    width: 32px;
    height: 32px;
}

.sect-questions .question-box .display .text-question {
    font-family: 'alibaba-bold';
    color: var(--color-gray-5);
    margin: 0px;
}

/* ----------sect-text---------- */

.sect-text {
    width: 83%;
    margin: auto;
    margin-top: 50px;
}

.sect-text .title {
    color: var(--color-gray-6);
    font-family: "alibaba-bold";
    font-size: 20px;
    margin-bottom: 30px;
}

.sect-text .text {
    color: var(--color-gray-6);
    font-size: 14px;
    text-align: justify;
    text-justify: auto;
    line-height: 2.3;
    margin-bottom: 14px;
}

/* ----------sect-rent---------- */

.sect-rent {
    width: 83%;
    margin: auto;
    margin-top: 50px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(6, 1fr);
}

.sect-rent .box {
    border: 1px solid var(--border-color-1);
    border-radius: 9999px;
    background-color: #ffffff;
    padding: 4px 16px;
    width: 193px !important;
    text-align: center;
}

.sect-rent .box a {
    color: var(--color-gray-5);
    font-size: 14px;
}

/* ----------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: 'alibaba-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: 14px;
    font-family: 'alibaba-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: 14px;
    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;
}

.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);
}

.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: 75px;
        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;
        height: 48px;
        width: 100%;
        border-radius: 8px;
        background-color: #F8FAFB;
        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: 100%;
        width: 100%;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 8px;
        border-bottom: none;
    }

    .sect-products .details .options .origin-destination .oring-inp-box #inp-origin {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .travel-date {
        display: flex;
        align-items: center;
        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: 50%;
        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 .travel-date .line {
        width: 1px;
        height: 48px;
        background-color: var(--color-gray-7);
    }

    .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: var(--color-gray-6);
        padding: 4px 16px;
        border: 1px solid var(--border-color-1);
        font-size: 16px;
        width: 100% !important;
        height: 48px;
        border-radius: 8px;
    }

    /* ----------sect-other-services---------- */

    .sect-other-services {
        display: none;
    }

    /* ----------sect-villa-rental---------- */

    .sect-villa-rental {
        width: 97%;
        margin: auto;
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .sect-villa-rental .box {
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
        width: 100%;
        height: 100%;
    }

    .sect-villa-rental .box .box-img {
        width: 100%;
        height: 100%;
        border-radius: 8px 8px 0px 0px;
    }

    .sect-villa-rental .box .text {
        font-size: 16px;
        color: var(--color-gray-5);
        font-family: "alibaba-bold";
        text-align: center;
        padding: 12px 8px;
        margin: 0px;
    }

    /* ----------sect-destination---------- */

    .sect-destination {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-destination .title {
        color: var(--color-gray-6);
        font-size: 20px;
        font-family: "alibaba-bold";
        margin-bottom: 10px;
    }

    .sect-destination .mini-title {
        font-size: 14px;
        color: var(--color-gray-6);
        margin-bottom: 24px;
    }

    .sect-destination .display {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .sect-destination .display .box {
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
        padding: 8px;
        display: flex;
        align-items: center;
    }

    .sect-destination .display .box .information-box {
        display: flex;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .sect-destination .display .box .information-box .img-box .box-img {
        width: 88px;
        height: 88px;
        border-radius: 8px;
    }

    .sect-destination .display .box .information-box .rent-text {
        margin: 0px;
        color: var(--color-gray-4);
        font-size: 10px;
    }

    .sect-destination .display .box .information-box .destination-text {
        margin: 0px;
        font-family: "alibaba-bold";
        color: var(--color-gray-3);
        font-size: 16px;
    }

    /* ----------sect-accommodation-type---------- */

    .sect-accommodation-type {
        width: 97%;
        margin: auto;
        margin-top: 100px;
    }

    .sect-accommodation-type .title {
        color: var(--color-gray-6);
        font-size: 20px;
        font-family: "alibaba-bold";
        margin: 0px;
        margin-bottom: 24px;
    }

    .sect-accommodation-type .display {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .sect-accommodation-type .display .box {
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .sect-accommodation-type .display .box .svg {
        color: var(--color-gray-4);
    }

    .sect-accommodation-type .display .box .mini-title {
        font-family: "alibaba-bold";
        color: var(--color-gray-3);
        font-size: 14px;
        margin: 0px;
    }

    /* ----------sect-app---------- */

    .sect-app {
        display: none;
    }

    /* ----------sect-villa-kordan---------- */

    .sect-villa-kordan {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-villa-kordan .top-part {
        margin-bottom: 20px;
    }

    .sect-villa-kordan .top-part .title {
        color: var(--color-gray-6);
        font-size: 20px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-villa-kordan .top-part .mini-title {
        color: var(--color-gray-6);
        font-size: 14px;
        margin: 10px 0px;
    }

    /* ----------sect-instant-booking---------- */

    .sect-instant-booking {
        margin-top: 100px;
        background-color: var(--color-gray-8);
        padding: 28px 0px;
        position: absolute;
        left: 0;
        right: 0;
    }

    .sect-instant-booking .width {
        width: 97%;
        margin: auto;
    }

    .sect-instant-booking .width .top-part {
        margin-bottom: 20px;
    }

    .sect-instant-booking .width .top-part .title {
        color: var(--color-seccess-3);
        font-size: 20px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-instant-booking .width .top-part .mini-title {
        color: var(--color-gray-6);
        font-size: 14px;
        margin: 10px 0px;
    }

    /* ----------sect-suite-tehran---------- */

    .sect-suite-tehran {
        width: 97%;
        margin: auto;
        margin-top: 650px;
    }

    .sect-suite-tehran .top-part {
        margin-bottom: 20px;
    }

    .sect-suite-tehran .top-part .title {
        color: var(--color-gray-6);
        font-size: 20px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-suite-tehran .top-part .mini-title {
        color: var(--color-gray-6);
        font-size: 14px;
        margin: 10px 0px;
    }

    /* ----------sect-villa-ramsar---------- */

    .sect-villa-ramsar {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-villa-ramsar .top-part {
        margin-bottom: 30px;
    }

    .sect-villa-ramsar .top-part .title {
        color: var(--color-gray-6);
        font-size: 20px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    /* ----------sect-questions---------- */

    .sect-questions {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-questions .title {
        color: var(--color-gray-3);
        font-family: 'alibaba-bold';
        font-size: 24px;
        margin-bottom: 20px;
    }

    .sect-questions .text {
        color: var(--color-gray-4);
        line-height: 2;
        padding: 16px 64px;
        text-align: justify;
        text-justify: auto;
        font-size: 16px;
    }

    .sect-questions .question-box {
        padding: 5px 0px;
    }

    .sect-questions .question-box .display {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sect-questions .question-box .display .a-accordion__icon {
        color: var(--color-into);
        background-color: var(--color-into-2);
        border-radius: 50%;
        padding: 5px;
        width: 32px;
        height: 32px;
    }

    .sect-questions .question-box .display .text-question {
        font-family: 'alibaba-bold';
        color: var(--color-gray-5);
        margin: 0px;
        font-size: 16px;
    }

    /* ----------sect-text---------- */

    .sect-text {
        width: 97%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-text .title {
        color: var(--color-gray-6);
        font-family: "alibaba-bold";
        font-size: 20px;
        margin-bottom: 24px;
    }

    .sect-text .text {
        color: var(--color-gray-6);
        font-size: 14px;
        text-align: justify;
        text-justify: auto;
        line-height: 2;
        margin-bottom: 14px;
    }

    /* ----------sect-rent---------- */

    .sect-rent {
        width: 97%;
        margin: auto;
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sect-rent .box {
        border: 1px solid var(--border-color-1);
        border-radius: 9999px;
        background-color: #ffffff;
        padding: 4px 16px;
        width: 100% !important;
        text-align: center;
    }

    .sect-rent .box a {
        color: var(--color-gray-5);
        font-size: 14px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* ----------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: 'alibaba-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: 75px;
        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;
        height: 48px;
        width: 100%;
        border-radius: 8px;
        background-color: #F8FAFB;
        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: 100%;
        width: 100%;
        align-items: center;
        background-color: #F8FAFB;
        border-radius: 8px;
        border-bottom: none;
    }

    .sect-products .details .options .origin-destination .oring-inp-box #inp-origin {
        border: none;
        width: 100%;
        background-color: #F8FAFB;
    }

    .sect-products .details .options .travel-date {
        display: flex;
        align-items: center;
        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: 50%;
        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 .travel-date .line {
        width: 1px;
        height: 48px;
        background-color: var(--color-gray-7);
    }

    .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: var(--color-gray-6);
        padding: 4px 16px;
        border: 1px solid var(--border-color-1);
        font-size: 16px;
        width: 100% !important;
        height: 48px;
        border-radius: 8px;
    }

    /* ----------sect-other-services---------- */

    .sect-other-services {
        display: none;
    }

    /* ----------sect-villa-rental---------- */

    .sect-villa-rental {
        width: 94%;
        margin: auto;
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sect-villa-rental .box {
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
        width: 100%;
        height: 100%;
    }

    .sect-villa-rental .box .box-img {
        width: 100%;
        height: 100%;
        border-radius: 8px 8px 0px 0px;
    }

    .sect-villa-rental .box .text {
        font-size: 16px;
        color: var(--color-gray-5);
        font-family: "alibaba-bold";
        text-align: center;
        padding: 12px 8px;
        margin: 0px;
    }

    /* ----------sect-destination---------- */

    .sect-destination {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-destination .title {
        color: var(--color-gray-6);
        font-size: 16px;
        font-family: "alibaba-bold";
        margin-bottom: 10px;
    }

    .sect-destination .mini-title {
        font-size: 12px;
        color: var(--color-gray-6);
        margin-bottom: 24px;
    }

    .sect-destination .display {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .sect-destination .display .box {
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sect-destination .display .box .svg {
        display: none;
    }

    .sect-destination .display .box .information-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }

    .sect-destination .display .box .information-box .img-box {
        width: 100%;
    }

    .sect-destination .display .box .information-box .img-box .box-img {
        width: 100%;
        height: 72px;
        border-radius: 8px;
    }

    .sect-destination .display .box .information-box .rent-text {
        margin: 0px;
        color: var(--color-gray-4);
        font-size: 10px;
        text-align: center;
    }

    .sect-destination .display .box .information-box .destination-text {
        margin: 0px;
        font-family: "alibaba-bold";
        color: var(--color-gray-3);
        font-size: 14px;
        text-align: center;
    }

    /* ----------sect-accommodation-type---------- */

    .sect-accommodation-type {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-accommodation-type .title {
        color: var(--color-gray-6);
        font-size: 16px;
        font-family: "alibaba-bold";
        margin: 0px;
        margin-bottom: 24px;
    }

    .sect-accommodation-type .display {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sect-accommodation-type .display .box {
        border-radius: 8px;
        border: 1px solid var(--border-color-1);
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .sect-accommodation-type .display .box .svg {
        color: var(--color-gray-4);
    }

    .sect-accommodation-type .display .box .mini-title {
        font-family: "alibaba-bold";
        color: var(--color-gray-3);
        font-size: 14px;
        margin: 0px;
    }

    /* ----------sect-app---------- */

    .sect-app {
        display: none;
    }

    /* ----------sect-villa-kordan---------- */

    .sect-villa-kordan {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-villa-kordan .top-part {
        margin-bottom: 20px;
    }

    .sect-villa-kordan .top-part .title {
        color: var(--color-gray-6);
        font-size: 16px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-villa-kordan .top-part .mini-title {
        color: var(--color-gray-6);
        font-size: 12px;
        margin: 10px 0px;
    }

    .sect-villa-kordan .top-part .view-all {
        display: none;
    }

    .sect-villa-kordan .swiper .button {
        display: none;
    }

    /* ----------sect-instant-booking---------- */

    .sect-instant-booking {
        margin-top: 100px;
        background-color: var(--color-gray-8);
        padding: 28px 0px;
        position: absolute;
        left: 0;
        right: 0;
    }

    .sect-instant-booking .width {
        width: 94%;
        margin: auto;
    }

    .sect-instant-booking .width .top-part {
        margin-bottom: 20px;
    }

    .sect-instant-booking .width .top-part .title {
        color: var(--color-seccess-3);
        font-size: 16px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-instant-booking .width .top-part .mini-title {
        color: var(--color-gray-6);
        font-size: 12px;
        margin: 10px 0px;
    }

    .sect-instant-booking .width .top-part .view-all {
        display: none;
    }

    .sect-instant-booking .width .swiper .button {
        display: none
    }

    /* ----------sect-suite-tehran---------- */

    .sect-suite-tehran {
        width: 94%;
        margin: auto;
        margin-top: 650px;
    }

    .sect-suite-tehran .top-part {
        margin-bottom: 20px;
    }

    .sect-suite-tehran .top-part .title {
        color: var(--color-gray-6);
        font-size: 16px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-suite-tehran .top-part .mini-title {
        color: var(--color-gray-6);
        font-size: 12px;
        margin: 10px 0px;
    }

    .sect-suite-tehran .top-part .view-all {
        display: none;
    }

    .sect-suite-tehran .swiper .button {
        display: none;
    }

    /* ----------sect-villa-ramsar---------- */

    .sect-villa-ramsar {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-villa-ramsar .top-part {
        margin-bottom: 30px;
    }

    .sect-villa-ramsar .top-part .title {
        color: var(--color-gray-6);
        font-size: 16px;
        font-family: "alibaba-bold";
        margin: 0px;
    }

    .sect-villa-ramsar .top-part .view-all {
        display: none;
    }

    .sect-villa-ramsar .swiper .button {
        display: none;
    }

    /* ----------sect-questions---------- */

    .sect-questions {
        width: 94%;
        margin: auto;
        margin-top: 50px;
    }

    .sect-questions .title {
        color: var(--color-gray-3);
        font-family: 'alibaba-bold';
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sect-questions .text {
        color: var(--color-gray-4);
        line-height: 2;
        padding: 16px;
        text-align: justify;
        text-justify: auto;
        font-size: 14px;
    }

    .sect-questions .question-box {
        padding: 5px 0px;
    }

    .sect-questions .question-box .display {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sect-questions .question-box .display .a-accordion__icon {
        color: var(--color-into);
        background-color: var(--color-into-2);
        border-radius: 50%;
        padding: 5px;
        width: 32px;
        height: 32px;
    }

    .sect-questions .question-box .display .text-question {
        font-family: 'alibaba-bold';
        color: var(--color-gray-5);
        margin: 0px;
        font-size: 14px;
    }

    /* ----------sect-text---------- */

    .sect-text {
        width: 94%;
        margin: auto;
        margin-top: 30px;
    }

    .sect-text .title {
        color: var(--color-gray-6);
        font-family: "alibaba-bold";
        font-size: 16px;
        margin-bottom: 24px;
    }

    .sect-text .text {
        color: var(--color-gray-6);
        font-size: 12px;
        text-align: justify;
        text-justify: auto;
        line-height: 2;
        margin-bottom: 14px;
    }

    /* ----------sect-rent---------- */

    .sect-rent {
        width: 94%;
        margin: auto;
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sect-rent .box {
        border: 1px solid var(--border-color-1);
        border-radius: 9999px;
        background-color: #ffffff;
        padding: 4px 16px;
        width: 100% !important;
        text-align: center;
    }

    .sect-rent .box a {
        color: var(--color-gray-5);
        font-size: 14px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* ----------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: 'alibaba-bold';
        font-size: 12px;
    }

    .final-sect .box .text {
        color: var(--color-gray-1);
        margin: 10px 0px;
        font-size: 12px;
    }

    /* ----------footer---------- */

    .footer {
        display: none;
    }
}