@import "font-face.css";

body{
    font-family: PeydaWebFaNum, serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-size: 1em;
    background-color: #000;
}

input, button, textarea, select {
    font: inherit;
}

input::placeholder {
    opacity: 0.5 !important;
}

input::-ms-input-placeholder { /* Edge 12 -18 */
    opacity: 0.5 !important;
}

p {
    text-wrap: pretty;
    font-size: 1.2rem;
    line-height: 2.1rem;
    text-align: justify;
    text-align-last: center;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}
h1, h2, h3, h4,
button, input, label {
    line-height: 1.1;
}

.brand-color{
    color: #c78e66;
}

.btn-xtrim{
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    padding: 12px 20px;
    width: 180px;
    display: block;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.btn-xtrim-white{
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}

.btn-xtrim-white:hover{
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
}

.btn-xtrim-black{
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
}

.btn-xtrim-black:hover{
    background-color: #c78e66;
    border-color: #c78e66;
    color: #fff;
}

.btn-xtrim-border-white{
    border-color: #fff;
}

.xtrim-btn-color{
    font-size: 1rem;
    width: 235px;
    padding: 19px 25px;
}

.xtrim-btn-color:hover{
    background-color: #c78e66;
    border-color: #c78e66;
    color: #fff;
}

.btn-xtrim-white:hover{
    background-color: #c78e66;
    border-color: #c78e66;
    color: #fff;
}

.parallax{
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.loader-wrap svg path{
    fill: #1d1d1d;
}

/* ========= [ preloader ]  =========*/
/* Preloader
-----------------------------------------------------------------*/
body.loaded {
    overflow: hidden !important;
    height: 100% !important;
}

.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #000;
    z-index: 99999999999999;
}

.loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: #fff;
}

.loader-wrap .loader-wrap-heading .load-text {
    color: #c78e66;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 15px;
    text-transform: uppercase;
    text-align: center;
    z-index: 20;
}

.load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate; }

.load-text span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s; }

.load-text span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s; }

.load-text span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; }

.load-text span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }

.load-text span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s; }

.load-text span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s; }

.load-text span:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s; }

@-webkit-keyframes loading {
    0% {
        opacity: 1; }
    100% {
        opacity: 0; } }

@keyframes loading {
    0% {
        opacity: 1; }
    100% {
        opacity: 0; } }

/**
* header
 */
header{
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    z-index: 99;
}
header.disable{
    opacity: 0;
    z-index: 0;
}

header.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0;
    background-color: #000;
    z-index: 0;
    display: none;
}

header.sticky.active{
    z-index: 99;
    opacity: 1;
    display: block;
}

@media only screen and (max-width: 600px) {
    .logo{
        width: 120px;
    }
    .btn-xtrim {
        padding: 8px 8px;
        width: 135px;
        font-size: 0.9rem;
    }
    .xtrim-btn-color{
        font-size: 1rem;
        width: 200px;
        padding: 13px 20px;
    }
}

/**
* main-slider
 */
.main-slider{
    height: 100vh;
    width: 100%;
}

.main-slider:hover{
    cursor: pointer;
}

video{
    object-fit: cover;
    height: -webkit-fill-available;
}

.main-slider .swiper{
    height: 66%;
}

.main-slider .welcome{
    height: 26%;
}

.swiper-pagination-bullet-active {
    background: #ebab7f;
}

.swiper-pagination-bullet {
    width: 70px;
    height: 2px;
}

.swiper-button-next, .swiper-button-prev {
    color: #ebab7f;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2.2rem;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.swiper-button-next:hover, .swiper-button-prev:hover{

    background-color: rgba(255, 255, 255, 1);
}
@media only screen and (max-width: 600px) {
    .main-slider {
        height: 100vh;
    }
    .main-slider .swiper {
        height: 68%;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 1.5rem;
    }
    .swiper-button-next, .swiper-button-prev {
        padding: 1.2rem;
    }
}

/**
*
 */
#welcome{
    background-image: url("images/bg-img-01.jpg");
}

.welcome{
    height: 100vh;
    background-color: #fff;
}

.slogan-first h1{
    font-size: 4rem;
    font-weight: 800;
    line-height: 3rem;
}

@media only screen and (max-width: 600px) {
    .slogan-first h1{
        font-size: 2rem;
        line-height: 3rem;
    }
    .welcome {
        height: 67vh;
        margin-top: -7px;
    }
}

/**
* Gallery
 */
.explore-trip-description{
    text-align: justify-all;
    color: #fff;
    line-height: 2rem;
}

#gallery{
    background-image: url("images/bg-img-05.jpg");
    margin-top: -76px;
}

.gallery{
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-left: 4rem;
    padding-right: 4rem;
    position: relative;
    min-height: 50rem;
}

.gallery-item {
    margin-bottom: 20px;
    cursor: pointer;
    height: 124px;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

/* Lazy Load */
.lazy-image {
    width: 100%;
    height: auto;
    display: block;
    background: #f0f0f0 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23ddd" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"/></svg>') no-repeat center;
    background-size: cover;
}

.filter-buttons button {
    margin: 5px;
    width: 150px;
}

.filter-buttons button.active {
    background-color: #c78e66;
    color: #fff;
}

.btn-outline-primary {
    --bs-btn-color: #c78e66;
    --bs-btn-border-color: #c78e66;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c78e66;
    --bs-btn-hover-border-color: #c78e66;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #c78e66;
    --bs-btn-active-bg: #c78e66;
    --bs-btn-active-border-color: #c78e66;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #c78e66;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #c78e66;
    --bs-gradient: none;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #fff;
    background-color: #c78e66;
    border-color: #c78e66;
}

.explore-trip-description p{
    text-align-last: auto;
}

.lightbox .lb-image {
    border-radius: 0;
    border: none;
}

.lb-outerContainer {
    border-radius: 0;
    background-color: transparent;
}

.kashan,
.isfahan,
.yazd{
    display: none;
}

.gallery-holder{
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-color: #c78e66 #000;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 28px;
    padding-left: 13px;
}

.gallery-item img{
    object-fit: cover;
}

@media only screen and (min-width: 2560px) {
    .gallery-item {
        height: 310px;
    }
}

@media only screen and (max-width: 2560px) {
    .gallery-item {
        height: 250px;
    }
}

@media only screen and (max-width: 900px) {
    .gallery-item {
        height: 156px;
    }
}

@media only screen and (max-width: 600px) {
    .gallery {
        padding-top: 3rem;
        padding-bottom: 5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gallery-item {
        height: 156px;
    }
}

@media only screen and (max-width: 460px) {
    .gallery-item {
        height: 111px;
    }
}

/**
* about
 */
#about{
    background-image: url("images/bg-img-09.jpg");
}

.about{
    background-color: #fff;
    height: 100vh;
}

/**
* catalog
 */
#catalog{
    background-image: url("images/bg-img-01.jpg");
}

.catalog{
    background-color: #000;
    height: 80rem;
}

@media only screen and (max-width: 600px) {
}

/**
* test_drive
 */
#test_drive{
    background-image: url("images/bg-img-09.jpg");
}

.test-drive{
    background-color: #fff;
    height: 100vh;
}


/**
* footer
 */
footer{
    background-color: #000;
}

footer .logo{
    border-bottom: 1px solid #1e1e1e;
}

.copyright .menu ul li{
    display: inline-block;
    margin-left: 15px;
}

.copyright .menu ul li a{
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.copyright .menu ul li a:hover{
    color: #c78e66;
}

.copyright .social ul li{
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

.copyright .text{
    color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 600px) {
    footer{
        padding: 1rem !important;
    }
}

.alert p{
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    margin: 5px;
}

.regenerate_captcha {
    position: absolute;
    top: 1px;
    z-index: 9;
    right: 2px;
    background-color: #fff;
    border: 0;
    outline: 0;
    box-shadow: none;
    height: 34px;
}
