/*--------------------------------------------------------------
# General
#3896A0
#565656
#000000
#77838F 
--------------------------------------------------------------*/

:root {
    --primary-color: #ffffff;
    --secondary-color: #565656;
    --third-color: #000000;
    --fourth-color: #77838F;
}

.color1 {
    color: var(--primary-color);
}

.color2 {
    color: #1200FF;
}

.color3 {
    color: #F9F9FF;
}

@font-face {
    font-family: "Araboto-Black";
    src: local("Araboto-Black"), url("../fonts/Araboto_Font_Family/Araboto\ Black\ 400.ttf") format("truetype");
}

@font-face {
    font-family: "Araboto-Bold";
    src: local("Araboto-Bold"), url("../fonts/Araboto_Font_Family/Araboto\ Bold\ 400.ttf") format("truetype");
}

@font-face {
    font-family: "Araboto-Light";
    src: local("Araboto-Light"), url("../fonts/Araboto_Font_Family/Araboto\ Light\ 400.ttf") format("truetype");
}

@font-face {
    font-family: "Araboto-Medium";
    src: local("Araboto-Medium"), url("../fonts/Araboto_Font_Family/Araboto\ Medium\ 400.ttf") format("truetype");
}

@font-face {
    font-family: "Araboto-Normal";
    src: local("Araboto-Normal"), url("../fonts/Araboto_Font_Family/Araboto\ Normal\ 400.ttf") format("truetype");
}

@font-face {
    font-family: "Araboto-Thin";
    src: local("Araboto-Thin"), url("../fonts/Araboto_Font_Family/Araboto\ Thin\ 400.ttf") format("truetype");
}

body {
    font-family: "Araboto-Medium";
    color: #444444;
    background-color: #ffffff;
}

a {
    color: var(--primary-color);
    text-decoration: none !important;
}

a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

a:focus {
    color: var(--primary-color) !important;
}

.router-link-exact-active,
.router-link-exact-active:focus {
    color: var(--primary-color) !important;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/


/*@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
*/


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 100px;
    /*transition: all 0.5s;*/
    z-index: 997;
    background-color: #ffffff;
    border-bottom: 2px solid #f7f8fb;
    /* position: relative; */
    
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo img {
   padding: 0;
    margin: 0;
    /* max-height: 100px; */
    height: 100px;
    max-width: 200px;
    object-fit: contain;

}


/*--------------------------------------------------------------
    select 
    ---------------------------------------------------------------*/

#header select {
    border: 0;
    background-color: transparent;
    font-size: 15px;
    font-family: "Araboto-Medium";
    color: #565656;
    padding: 5px 25px 7px 25px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

@media (min-width: 992px) {
    [dir=ltr] .dropdown-menu {
        margin-left: -450px;
    }
}

[dir='rtl'] .navbar li {
    position: relative;
    padding: 5px 15px 7px 15px;
}

[dir='ltr'] .navbar li {
    position: relative;
    padding: 5px 18px 7px 18px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 5px;
    font-size: 15px;
    font-family: "Araboto-Medium";
    color: #565656;
    white-space: nowrap;
    /*  transition: 0.3s;*/
    border-radius: 50px;
    text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
    font-size: 20px;
    line-height: 0;
}

.navbar a:hover,
.navbar .router-link-exact-active,
.navbar .router-link-exact-active:focus,
.navbar li:hover>a {
    /*background: #ef6603;*/
    color: var(--primary-color);
    /* font-family: "Araboto-Bold";*/
}


/*.navbar .dropdown {
    display: inline-block;
    margin-left: 20px;
    padding: 10px;
}

.navbar .glyphicon-bell {
    font-size: 1.5rem;
}
*/

.navbar .notifications {
    min-width: 420px;
}

.navbar .dropdown ul {
    display: none;
}

.navbar .dropdown .show {
    display: inherit;
}

#dLabel {
    display: flex !important;
}

.navbar .notifications ul {
    margin: 0;
    display: inherit;
}

.navbar .notifications-wrapper {
    overflow: auto;
    max-height: 250px;
}

.navbar .menu-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: inline-block;
}

.navbar .glyphicon-circle-arrow-right {
    margin-left: 10px;
}

.navbar .notification-heading,
.navbar .notification-footer {
    padding: 2px 10px;
}

.navbar .dropdown-menu.divider {
    margin: 5px 0;
}

.navbar .item-title {
    font-size: 1.2rem;
    color: #000;
}

.navbar .notifications a.content {
    text-decoration: none;
    background: #ccc;
    display: inline;
    padding: 0;
    margin: 0 !important;
}

.navbar .notification-item {
    padding: 10px;
    margin: 5px;
    background: #f5f5f5;
    border-radius: 4px;
}

@media (max-width: 1366px) {
    /*.navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }*/
}

@media (max-width: 1200px) {
    .navbar a i {
        font-size: 15px;
    }
    .navbar a {
        font-size: 13px;
        padding: 5px 10px;
    }
    /*#header .logo img {
            height: 60px;
            width: 60px;
        }*/
    /*#header .logo {
            height: 60px;
            width: 60px;
        }*/
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #777E90;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    /* transition: 0.5s;*/
}

@media (max-width: 991px) {
    .img-div {
        justify-content: start;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    #header .container {
        justify-content: space-between !important;
    }
    .navbar .item-title {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 330px) {
    #header .logo img {
        /*max-height: 30px;*/
        /* max-width: 100px;*/
        height: 60px;
        width: 60px;
    }
}

.navbar-mobile {
    position: fixed !important;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    /* transition: 0.3s;*/
    z-index: 1999;
    width: 300px;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

[dir=rtl] .navbar-mobile ul {
    display: block;
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    right: 0;
    /* bottom: 15px; */
    /* left: 15px; */
    padding: 10px 0;
    /* border-radius: 10px; */
    background-color: #fff;
    overflow-y: auto;
    /* transition: 0.3s;*/
}

[dir=ltr] .navbar-mobile ul {
    display: block;
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0;
    /*right: 0;*/
    /* bottom: 15px; */
    left: 0px;
    padding: 10px 0;
    /* border-radius: 10px; */
    background-color: #fff;
    overflow-y: auto;
    /* transition: 0.3s;*/
}

.navbar-mobile a {
    padding: 10px 20px;
    margin: 5px;
    font-size: 15px;
    color: #777E90;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile .router-link-exact-active,
.navbar-mobile li:hover>a {
    color: var(--primary-color);
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Second Section
----------------------------------------------------------------*/


/*--------------------------------------------------------------
#Third Section 
----------------------------------------------------------------*/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.pagination a {
    color: rgb(184 189 205);
    background-color: rgba(22, 22, 26, 0.0);
    border: none;
}

.pagination a:hover {
    color: rgb(6 7 20);
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e3e3e3;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 0, 0);
}

html {
    /* For Firefox */
    overflow-y: scroll;
    scrollbar-color: var(--primary-color) #e3e3e3;
    scrollbar-width: thin;
}


/*///////////////////////////////*/

section {
    padding: 30px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 22px;
    font-family: "Araboto-Black";
    color: var(--primary-color);
}

.section-title p {
    font-size: 18px;
    font-family: "Araboto-Medium";
    color: var(--primary-color);
}

.section-title a:hover {
    text-decoration: underline 2px var(--primary-color);
    text-underline-offset: 10px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #f7f8fb;
    color: #14151c;
    /*font-size: 14px;*/
    text-align: start;
    padding-top: 18px;
    /*padding-bottom: 18px;*/
    height: 100%;
    /*min-height: 540px;*/
    min-height: 450px;
}

#footer .logo {
    margin-bottom: 10px;
    min-height: 65px;
}

#footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14151c;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer h2 {
    font-size: 22px;
    font-family: "Araboto-Black";
    font-weight: 700;
    color: #14151c;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    color: #565656;
    font-family: "Araboto-Medium";
    font-size: 14px;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer a p:hover {
    color: var(--primary-color);
}

#footer .contact-info {
    width: 100%;
}

#footer .contact-info p {
    color: var(--primary-color);
    font-family: "Araboto-Bold";
    font-size: 15px;
    overflow-x: auto;
    overflow-y: hidden;
}

#footer .contact-info p:hover {
    text-decoration: underline;
}

#footer .button:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 29px 0 #a3a3a3;
}

#footer .social-linkes img:hover,
#footer .social-linkes1 img:hover {
    transform: scale(1.05);
}

#footer .social-linkes img {
    width: 30px;
    height: 30px;
    border-radius: 25px;
    cursor: pointer;
}

#footer .social-linkes1 img {
    width: 110px;
    cursor: pointer;
}

.mobile-active {
    display: none !important;
}

.mobile-inactive {
    display: block !important;
}

[dir="rtl"] .footer-image {
    position: absolute;
    left: 0;
    width: 330px;
    height: 430px;
    background-image: url(../image/footer.png);
    /* margin-top: -30px;*/
    background-repeat: no-repeat;
    background-size: 330px;
}

[dir="ltr"] .footer-image {
    position: absolute;
    right: 0;
    width: 330px;
    height: 430px;
    background-image: url(../image/footerEN.png);
    /* margin-top: -30px;*/
    background-repeat: no-repeat;
    background-size: 350px;
}

@media (max-width: 992px) {
    #footer h3 {
        text-align: center;
        font-size: 1.3rem;
        line-height: 1.3rem;
    }
    #footer p {
        text-align: center;
        font-size: 0.8rem;
        line-height: 1rem;
    }
    #footer h2 {
        font-size: 0.8rem;
        line-height: 1rem;
        text-align: center;
    }
    #footer .logo {
        justify-content: center;
    }
    #footer .social-linkes {
        justify-content: center;
        align-items: center;
        display: flex;
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        margin-top: 40px !important;
    }
    #footer .footer-width {
        padding-bottom: 50px !important;
    }
    .mobile-active {
        display: block !important;
    }
    .mobile-inactive {
        display: none !important;
    }
    .footer-width {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    #footer .social-linkes1 {
        justify-content: center;
        align-items: center;
        display: flex;
    }
}

@media (max-width: 575px) {
    #footer .social-linkes img {
        width: 25px;
        height: 25px;
    }
    #footer .social-linkes1 img {
        width: 90px;
    }
}

@media (max-width: 350px) {
    #footer h3 {
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
    #footer p {
        font-size: 0.6rem;
        line-height: 1rem;
    }
    #footer h2 {
        font-size: 0.6rem;
        line-height: 1rem;
    }
    #footer .logo {
        justify-content: center;
    }
}


/*--------------------------------------------------------------
#  booking page
--------------------------------------------------------------*/

#booking #Second {
    padding-top: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 85%;
    left: 50%;
    top: 304px;
    border-radius: 25px;
    z-index: 1;
    margin-bottom: 100%;
    transform: translate(-50%, -50%);
}

#booking #Second .bg-image {
    height: 150px;
}

#booking #Second h2 {
    font-size: 2rem;
    font-family: "Araboto-black";
}

#booking #Second .button1 .form-control {
    width: 136px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: "Araboto-Medium";
}


/*****Third***** */

#booking #Third .section-title h3 {
    color: black;
    text-align: start;
    font-family: "Araboto-Medium";
    font-size: 1.8rem;
}

#booking #Third .card {
    border: 0;
    border-radius: 15px;
    height: 220px;
    box-shadow: 0 2px 10px 0 #e5e5e5;
}

#booking #Third .card:hover {
    border: 0;
    border-radius: 15px;
    box-shadow: 0 2px 20px 0 #b1b0b0;
}

#booking #Third .card .trip-image {
    height: 220px;
}

[dir=ltr] #booking #Third .card .trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

[dir=rtl] #booking #Third .card .trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

#booking #Third .card h3 {
    text-align: start;
    font-family: "Araboto-Medium";
    color: var(--primary-color);
    font-size: 1.2rem;
}

#booking #Third .card p {
    padding-top: 5%;
    text-align: start;
    font-family: "Araboto-light";
    color: #565656;
    width: 70%;
    font-size: 1rem;
}

#booking #Third .card h4 {
    text-align: start;
    font-family: "Araboto-Bold";
    color: var(--primary-color);
    font-size: 1rem;
}

#booking #Third .card .price {
    width: 100px;
    height: 30px;
    border: 1px solid #23915D;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 3%;
}

#booking #Third .card .price p {
    display: inline;
    color: #565656;
    font-size: 0.7rem;
    font-family: "Araboto-Medium";
}

#booking #Third .card .price span {
    display: inline;
    color: #23915D;
    font-size: 0.7rem;
    font-family: "Araboto-Medium";
}

#booking #ShowMore {
    border: 2px solid #E6E8EC;
    border-radius: 35px;
    width: 170px;
    padding-top: 5%;
    padding-bottom: 5%;
    color: #000;
}

#booking #ShowMore:hover {
    color: var(--primary-color);
}

#booking .back,
#reservations .back {
    border: 2px solid #e6e8ec;
    background-color: #fff;
    position: absolute;
    top: 113px;
    right: 8%;
    padding: 10px;
    width: 120px;
    border-radius: 25px;
    font-size: 0.8rem;
}

#booking .bi-chevron-right::before,
#reservations .bi-chevron-right::before {
    margin: 0 10px;
}

#booking .back a,
#reservations .back a {
    color: #000
}

#booking .back a:hover,
#reservations .back a:hover {
    color: var(--primary-color)
}

@media (max-width: 992px) {
    #booking #Second .textcenter1 .align-items-end {
        align-items: center !important;
    }
    #booking #Second .textcenter1 .flex-row {
        flex-direction: column !important;
    }
    #booking #Second h2 {
        font-size: 20px;
    }
    #booking #Third .card {
        width: 100% !important;
    }
}

@media (max-width: 992px) and (min-width: 767px) {
    #booking #Third .container {
        max-width: 95%;
    }
    #booking #Third .card h3 {
        font-size: 1rem;
    }
    #booking #Third .card p {
        width: 80%;
        font-size: 0.9rem;
    }
    #booking #Third .card h4 {
        font-family: "Araboto-Medium";
        font-size: 0.8rem;
    }
    #booking #Third .card .price p {
        font-size: 0.6rem;
    }
    #booking #Third .card .price span {
        font-size: 0.6rem;
    }
}

@media (max-width: 500px) {
    #booking #Third .card {
        height: 170px;
    }
    #booking #Third .card .trip-image {
        height: 170px;
    }
    #booking #Third .card .card-text {
        width: 100%;
    }
    #booking #Third .container {
        max-width: 95%;
    }
    #booking #Third .card h3 {
        font-size: 1rem;
        margin-top: 15px;
    }
    #booking #Third .card p {
        width: 95%;
        font-size: 0.8rem;
    }
    #booking #Third .card h4 {
        font-family: "Araboto-Medium";
        font-size: 0.8rem;
    }
    #booking #Third .card .price p {
        font-size: 0.6rem;
    }
    #booking #Third .card .price {
        width: 85px;
    }
    #booking #Third .card .price span {
        font-size: 0.6rem;
    }
}

@media (max-width: 390px) {
    #booking #Third hr {
        margin: 5px;
    }
    #booking #Third .card {
        height: 110px;
    }
    #booking #Third .card .trip-image {
        height: 110px;
        padding: 0 2px;
    }
    #booking #Third .card .card-column {
        padding: 2px;
    }
    #booking #Third .card h3 {
        font-size: 0.8rem !important;
        margin-top: 10px;
        margin-bottom: 0;
    }
    #booking #Third .card p {
        width: 95%;
        font-size: 0.6rem;
        margin-bottom: 0;
    }
    #booking #Third .card .price {
        margin: 0 8px;
        height: 22px;
        line-height: 10px;
    }
    #booking #Third .card h4,
    #booking #Third .card .price p,
    #booking #Third .card .price span {
        font-size: 0.5rem;
        font-family: "Araboto-Light";
    }
    #booking #Second h2 {
        font-size: 18px;
    }
}


/*--------------------------------------------------------------
#  reservations page
--------------------------------------------------------------*/

#reservations #Second {
    padding-top: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 85%;
    left: 50%;
    top: 304px;
    border-radius: 25px;
    z-index: 1;
    margin-bottom: 100%;
    transform: translate(-50%, -50%);
}

#reservations #Second .bg-image {
    height: 150px;
}

#reservations #Second h2 {
    font-size: 2rem;
    font-family: "Araboto-black";
    text-align: center;
}

#reservations #Second .button1 .form-control {
    width: 136px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: "Araboto-Medium";
}


/*****Third***** */

#reservations #Third .section-title h3 {
    color: black;
    text-align: start;
    font-family: "Araboto-Medium";
    font-size: 1.8rem;
}

#reservations #Third .card {
    border: 0;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 2px 10px 0 #e5e5e5;
}

#reservations #Third .card:hover {
    border: 0;
    border-radius: 15px;
    box-shadow: 0 2px 20px 0 #b1b0b0;
}

#reservations #Third .card .trip-image {
    height: 241px;
}

#reservations #Third .card .trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#reservations #Third .card h3 {
    text-align: start;
    font-family: "Araboto-Medium";
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 10px;
}

#reservations #Third .card p {
    padding-top: 1%;
    text-align: start;
    font-family: "Araboto-light";
    color: #565656;
    font-size: 0.85rem;
}

#reservations #Third .card h4 {
    text-align: start;
    font-family: "Araboto-Bold";
    color: var(--primary-color);
    font-size: 1rem;
}

#reservations #Third .card .price {
    padding: 0 10px;
    height: 100%;
    border: 1px solid #23915D;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

#reservations #Third .card .price p {
    display: inline;
    color: #565656;
    font-size: 0.7rem;
    font-family: "Araboto-Medium";
}

#reservations #Third .card .price span {
    display: inline;
    color: #23915D;
    font-size: 0.7rem;
    font-family: "Araboto-Medium";
}

#reservations #ShowMore {
    border: 2px solid #E6E8EC;
    border-radius: 35px;
    width: 170px;
    padding-top: 5%;
    padding-bottom: 5%;
    color: #000;
}

#reservations #ShowMore:hover {
    color: var(--primary-color);
}

#reservations .scrollmenu .card-body h5 {
    font-size: 0.7rem;
    color: #000;
}

#reservations .scrollmenu .show-more h5 {
    font-size: 0.9rem;
    color: rgb(49, 49, 49);
}

#reservations .scrollmenu .card-body h6 {
    font-size: 0.9rem;
    color: #777E90;
}

#reservations .scrollmenu .card-body {
    padding: 0;
    padding-top: 1rem;
}

#reservations .scrollmenu .card {
    background-color: transparent;
    transition: transform 0.5s ease;
    border-radius: 20px;
    border: 0;
    margin-bottom: 28% !important;
    margin: 5px;
    height: 166px !important;
}

#reservations .scrollmenu .bg-image:hover {
    transform: scale(1.01) !important;
    transition-duration: 0ms !important;
    background-color: #ef660322;
    box-shadow: 0 10px 10px 0 rgba(22, 22, 26, 0.18);
}

#reservations .scrollmenu .active1 {
    background-color: #ef660322 !important;
}

#reservations .scrollmenu .card img {
    /* transition: transform 0.2s ease;*/
    width: 100%;
    height: 100%;
    border: 0;
    /* margin-bottom: 1.5em;*/
    object-fit: cover;
    margin: 0;
    border-radius: 15px;
}

#reservations .scrollmenu .bg-image {
    border-radius: 15px;
    width: 163px;
    height: 166px;
    object-fit: cover;
}

#reservations .scrollmenu {
    background-color: rgb(252 252 253);
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgb(240, 240, 240);
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    #reservations #Third .card .price p,
    #reservations #Third .card .price span {
        font-size: 0.6rem;
    }
    #reservations #Third .card .price span {
        color: var(--primary-color);
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
}

.vhl-btn-left,
.vhl-btn-right {
    width: 40px !important;
    height: 40px !important;
}

.vhl-btn-left img {
    border-radius: 50px;
}

.vhl-btn-right img {
    transform: rotate(180deg);
    border-radius: 50px;
}

.vhl-btn-left img:hover,
.vhl-btn-right img:hover {
    box-shadow: 0 2px 20px 0 rgba(22, 22, 26, 0.18);
}

#Section .vhl-btn-left {
    margin-left: 0px;
    margin-top: 8px;
    background: #f8f8f8;
    border: 0;
    box-shadow: none;
}

#Section .vhl-btn-right {
    margin-right: 0px;
    margin-top: 8px;
    background: #f8f8f8;
    border: 0;
    box-shadow: none;
}

#Section .vhl-item {
    padding: 10px;
}

#Section .vhl-container {
    margin: 0 !important;
}

.lingalleryContainer .lingallery figure img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.lingallery_thumbnails_content_elem img {
    border-radius: 15px;
}

.verticallingallery .lingalleryContainer .lingallery .lingallery_thumbnails .lingallery_thumbnails_content .lingallery_thumbnails_content_elem {
    display: block !important;
    width: 70px;
}

.verticallingallery .lingalleryContainer .lingallery {
    display: flex;
    flex-direction: row-reverse;
}

.verticallingallery .lingalleryContainer .lingallery .lingallery_thumbnails {
    max-width: 70px;
}

.verticallingallery .lingalleryContainer .lingallery figure img {
    object-fit: contain;
    width: 100% !important;
    border-radius: 5px;
}

.verticallingallery .lingalleryContainer .lingallery .lingallery_thumbnails .lingallery_thumbnails_content .lingallery_thumbnails_content_elem img,
.verticallingallery .lingalleryContainer .lingallery figure {
    border: 1px solid rgb(226 226 226) !important;
    margin: 0 0 10px 0;
    border-radius: 5px;
    padding: 5px;
    object-fit: contain;
}

#largeViewContainer a {
    top: 120px !important;
}

#largeViewContainer img {
    max-width: 50vw !important;
    max-height: 50vh !important;
}

.b-pagination-pills {
    padding: 0;
}

.b-pagination-pills .page-item .page-link {
    color: var(--secondary-color);
    background-color: rgba(22, 22, 26, 0);
    border: none;
    border-radius: 100%;
}

.b-pagination-pills .page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
}

.react-code-input-container {
    display: flex;
    width: 100% !important;
    flex-direction: row;
    justify-content: center;
}

.react-code-input input {
    width: 40px !important;
    height: 40px !important;
}

@media (max-width: 500px) {
    .react-code-input input {
        width: 30px !important;
        height: 30px !important;
    }
}

@media (max-width: 600px) {
    .vodal-dialog {
        width: 100% !important;
    }
}

.VueCarousel {
    width: 100%;
    height: 100% !important;
    padding: 0 !important;
    border-radius: 25px;
}

.VueCarousel-inner {
    background-color: #fcfcfd;
    width: 100%;
    height: 100% !important;
    border-radius: 25px !important;
}


/* ///////////////  v-select //////////////// */

[dir="rtl"] .vs__search {
    text-align: end;
}

[dir="rtl"] .vs--single.vs--searchable ul {
    text-align: right;
}

.input-icons .vs__dropdown-toggle {
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 10px;
    border: 1px solid #d7d7d7;
    font-size: 14px;
    font-family: "Araboto-normal";
    color: var(--secondary-color);
    padding: 10px 20px 15px 20px;
    /*    padding: 20px 5px 25px 5px;
  margin-bottom: 10px;*/
}

.input-icons .vs__actions button {
    padding: 0 10px;
}

.multi-range-slider-bar-only .bar-inner {
    background-color: var(--primary-color) !important;
    border: 0 !important;
    box-shadow: none !important;
}

@media (min-width: 1200px) {
    /*   .container {
            max-width: 90% !important;
        }
        .b-pagination-pills .page-item .page-link {
            font-size: 30px;
        }*/
}

@media (min-width: 1400px) {
    .navbar li {
        padding: 5px 25px 7px 25px !important;
    }
    .navbar a,
    .navbar a:focus,
    #header select {
        font-size: 15px;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 20px;
    }
    [dir="rtl"] .bi-search {
        margin-right: 70% !important;
    }
}


/* @media (min-width: 1600px) {
        .navbar li {
            padding: 5px 3px 7px 25px;
        }
    }
    
    @media (min-width: 1800px) {
        .navbar li {
            padding: 5px 0 7px 50px;
        }
    }
    
    @media (min-width: 2200px) {
        .navbar li {
            padding: 5px 0px 7px 100px;
        }
    }*/

.hooper-prev,
.hooper-next {
    background-color: #fff !important;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    padding: 0 !important;
    box-shadow: 0px 0px 10px #4646468c;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -15px;
}

.hooper-next.is-disabled,
.hooper-prev.is-disabled {
    display: none;
}

.sectionSlider .hooper-prev,
.sectionSlider .hooper-next {
    margin-top: 0;
}

.vue-map {
    border-radius: 15px;
}

.contactMap .vue-map {
    border-radius: 0;
}


/* clears the 'X' from Internet Explorer */

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}


/* clears the 'X' from Chrome */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

@media (max-width: 992px) {
    #hero .info p {
        /* line-height: 10px;*/
        margin-top: 10px;
    }
    .lingalleryContainer .lingallery figure img {
        width: 100%;
    }
    .lingalleryContainer {
        margin-bottom: 20px;
    }
}

@media (max-width: 630px) {
    #hero .info .bi {
        font-size: 30px !important;
        margin: 5px !important;
    }
}

@media (max-width: 490px) {
    .offers .card {
        width: 65% !important;
        margin-left: 18% !important;
        margin-right: 18% !important;
    }
}


/*::-webkit-input-placeholder::before {
        color:#290404 !important;
        content:"fff" !important;
    }
    .input-tel__input::-moz-placeholder{color:#290404}
    .input-tel__input:-ms-input-placeholder{color:#290404}
    .input-tel__input:-ms-input-placeholder{color:#290404}
    .input-tel__input::placeholder{color:#290404}*/

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1200px !important;
    }
}

#userNumber #MazPhoneNumberInput .select-country-container input {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 32px;
    padding-top: 20px;
    padding-bottom: 25px;
    border: 1px solid #d7d7d7;
}

#userNumber #MazPhoneNumberInput .flex-1 input {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 32px;
    padding-top: 20px;
    padding-bottom: 25px;
    border: 1px solid #d7d7d7;
}

#userNumber .input-tel {
    height: auto;
}

input:focus-visible {
    outline: 2px solid var(--primary-color) !important;
}

.cartVodal.vodal {
    z-index: 1040;
}

[dir="rtl"] .cartVodal .vodal-dialog {
    right: auto;
}

[dir="ltr"] .cartVodal .vodal-dialog {
    left: auto;
}

.treeselect .vue-treeselect__menu {
    max-height: 1000px !important;
}

.treeselect .vue-treeselect__menu,
.treeselect .vue-treeselect__menu-container {
    position: relative !important;
}

.cartVodal .vodal-dialog {
    margin: 0;
    height: 100% !important;
}
[dir="rtl"] .phone
{direction: ltr;
    text-align: right;}

    [dir="rtl"] .phone_dir
{direction: ltr;
    }
   
    .flag
    {
        margin-top: -51px !important;
        float: left !important;
        /* height: 40px !important; */
        border-radius: 40% !important;
        /* width: 50px !important; */
        display: inline-flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        align-content: stretch;
        justify-content: center;
        direction: ltr;
    }

    .flag img{
        width: 45px;
    height: 44px;
    border-radius: 35px;
    border: 1px solid var(--primary-color);
    margin-left: 6px;
    }
    .flag h2
    {    font-size: 20px !important;
        margin-top: 10px;
        padding: 0 10px;}

/*@media (min-width: 992px) {
    .theme3 .container {
        max-width: 98% !important;
        margin: auto;
    }
}

@media (min-width: 1920px) {
    .theme3 .container {
        max-width: 1920px !important;
    }
}*/