/*******************************/
/********* General CSS *********/
/*******************************/
/* :root {
 --main-color: #fbaf32;
 --second-color: #719a0a;
} */

body {
    color: #757575;
    /* color: white; */
    background: #ffffff;
    /* font-family: 'open sans', sans-serif; */

    /* font-family: "Amiri", serif; */
}

* {
  font-family: inherit;
}

label {
    color: #757575;
}

input[type="checkbox"] {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    accent-color: #0d6efd;
}

.h1,
.h2, 
.h3, 
.h4,
.h5, 
.h6,
h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #454545;
    font-family: inherit;
    /* color: white; */
    /* font-family: 'Nunito', sans-serif; */
}

a {
    /* font-family: 'Nunito', sans-serif; */
    font-family: inherit;
    font-weight: 600;
    color: var(--main-color);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--second-color);
    outline: none;
    text-decoration: none;
}

.btn.custom-green-btn {
    padding: 8px;
    /* font-family: 'Nunito', sans-serif; */
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-green-btn:hover {
    color: var(--main-color);
    background: transparent;
}

.btn.custom-green-btn:focus,
.form-control:focus,
.custom-green-select:focus {
    box-shadow: none;
}


.btn.custom-orange-btn {
    padding: 8px;
    /* font-family: 'Nunito', sans-serif; */
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: var(--second-color);
    border: 2px solid var(--second-color);
    border-radius: 5px;
    transition: .5s;
}

.btn.custom-orange-btn:hover {
    color: var(--second-color);
    background: transparent;
}

.btn.custom-orange-btn:focus,
.form-control:focus,
.custom-orange-select:focus {
    box-shadow: none;
}




.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--main-color);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: var(--second-color);
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    background: transparent !important;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: var(--main-color);
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    /* font-family: 'Nunito', sans-serif; */
    font-family: inherit;
    transition: .5s;
    
}

.navbar .navbar-brand span {
    color: var(--second-color);
}

.navbar .navbar-brand:hover {
    color: var(--main-color);
}

.navbar .navbar-brand:hover span {
    color: var(--main-color);
}

.navbar .navbar-brand img {
    /* max-width: 100%;
    max-height: 40px; */
    width: 90px;
    height: 90px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .dropdown {
    /* position: relative; */
    /* display: inline-block; */
}

.navbar .dropdown-menu {
    width: 300px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
    position: absolute !important;
    top: 100%;
    max-height: 100vh; 
    z-index: 1000;
    left: -217px;
    /* box-shadow: inset 5px 5px 10px #d1d9e6,
            inset -5px -5px 10px #ffffff; */
    box-shadow: 0px 4px 12px rgb(69 69 69);
}

.navbar .dropdown .icon-shopping {
    font-size: 22px;
}

/* .navbar .cart-mobile .dropdown-menu {
    left: -71px !important;
}

.navbar .cart-mobile .dropdown-menu .check-item {
    right: 70px;
} */

/* .navbar .dropdown #number_product {
    position: absolute;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 11px;
    right: -12px;
    text-align: center;
    color: red;
    padding-bottom: 14px;
} */

.navbar .dropdown-menu #cart-container1,
.navbar .dropdown-menu #cart-container2 {
    margin-bottom: 40px;
}

/* .navbar .dropdown-menu .check-item {
    position: fixed;
    bottom: 36px;
    right: 176px;
    
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    background-color: var(--main-color);
    width: 270px;
    height: 40px;
    border-radius: 9px;
    margin: 0 7px;
    padding: 7px 0;
} */

.navbar .dropdown-menu .check-item {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 9px;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    background-color: var(--main-color);
    width: 100%;
    height: 40px;
    /* border-radius: 9px 9px 0 0; */
    border-radius: 9px;
    padding: 7px 10px;
    margin-top: 75vh;
}

.navbar .dropdown-menu #cart-items1 .cart-item,
.navbar .dropdown-menu #cart-items2 .cart-item {
    background-color: #e7e7e1;
    padding: 6px;
    border-radius: 5px;
    margin-bottom: 5px !important;
}

.navbar .dropdown-menu #cart-items1 .cart-item .item-name,
.navbar .dropdown-menu #cart-items2 .cart-item .item-name {
    margin-bottom: 0;
}

.navbar .dropdown-menu #cart-items1 .cart-item p,
.navbar .dropdown-menu #cart-items2 .cart-item p {
    margin-bottom: 0px;
}

.navbar .dropdown-menu #cart-items1 .cart-item img,
.navbar .dropdown-menu #cart-items2 .cart-item img {
    /* padding-right: 18px; */
    display: flex;
    margin: auto;
    /* margin-top: -10px; */
    text-align: center;
    justify-content: center;
}

.navbar .dropdown-menu .check-item a {
    color: var(--second-color);
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: var(--main-color);
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: var(--main-color);
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        /* font-family: 'Nunito', sans-serif; */
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        /* color: #666666; */
        color: white;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--main-color);
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: var(--main-color);
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: var(--first-bg-color) !important;
    }
    
    .navbar .navbar-brand {
        color: var(--main-color);
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    /* min-height: 400px; */
    height: 60vh !important;
    background: #ffffff;
}

.carousel .owl-stage-outer {
    height: 60vh;
}


.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    margin-top: 50px;
    /* height: 60vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.carousel .carousel-text h1 span {
    color: var(--main-color);
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 35px;
}

.carousel .carousel-btn .btn:last-child {
    margin-left: 10px;
    background: var(--second-color);
    border-color: var(--second-color);
}

.carousel .carousel-btn .btn:last-child:hover {
    color: var(--second-color);
    background: transparent;
}

.owl-prev,
.owl-next {
    background-color: beige;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    /* padding: 0px !important; */
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.special-offers .owl-next {
    position: absolute;
    top: 44%;
    right: 15px;
}

.special-offers .owl-prev {
    position: absolute;
    top: 44%;
    left: 15px;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(60vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(60vh - 70px) !important;
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: var(--main-color);
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: var(--main-color);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    color: var(--second-color);
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        font-weight: 600;
    }
}


/*******************************/
/********* Booking CSS *********/
/*******************************/
.booking {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    background: rgba(0, 0, 0, .04);
}

.booking .booking-content {
    padding: 45px 0 15px 0;
}

.booking .booking-content .section-header {
    margin-bottom: 30px;
}

.booking .booking-form {
    padding: 60px 30px;
    background: var(--main-color);
}

.booking .booking-form .control-group {
    margin-bottom: 15px;
}

.booking .booking-form .input-group-text {
    position: absolute;
    padding: 0;
    border: none;
    background: none;
    top: 15px;
    right: 15px;
    color: #ffffff;
    font-size: 14px;
}

.booking .booking-form .form-control {
    height: 45px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px !important;
    border: 1px solid #ffffff;
    background: transparent;
}

.booking .booking-form select.form-control {
    padding: 0 10px;
}

.booking .booking-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.booking .booking-form .form-control:-ms-input-placeholder,
.booking .booking-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.booking .booking-form .input-group [data-toggle="datetimepicker"] {
    cursor: default;
}

.booking .booking-form .btn.custom-btn {
    width: 100%;
    color: var(--main-color);
    background: #ffffff;
    border: 1px solid #ffffff;
}

.booking .booking-form .btn.custom-btn:hover {
    color: #ffffff;
    background: transparent;
}


/*******************************/
/********** Menu CSS ***********/
/*******************************/
.food {
    position: relative;
    width: 100%;
    padding: 90px 0 60px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 30px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.food .food-item:hover {
    box-shadow: none;
}

.food .food-item i {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: var(--second-color);
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    border: 3px dotted var(--main-color);
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 3px dotted var(--second-color);
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: var(--main-color);
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: var(--second-color);
}


/*******************************/
/*********** Menu CSS **********/
/*******************************/
.menu {
    position: relative;
    padding: 45px 0 15px 0;
}

.menu .menu-tab {
    position: relative;
}

.menu .menu-tab img {
    max-width: 100%;
    border-radius: 15px;
}


.menu .fade:not(.show) {
    opacity: 0;
    display: none;
}

.menu .menu-tab .nav.nav-pills .nav-link {
    color: #ffffff;
    background: var(--main-color);
    border-radius: 5px;
    margin: 0 5px;
}

.menu .menu-tab .nav.nav-pills .nav-link:hover,
.menu .menu-tab .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: var(--second-color);
}

.menu .menu-tab .tab-content {
    padding: 30px 0 0 0;
    background: transparent;
}

.menu .menu-tab .tab-content .container {
    padding: 0;
}

.menu .menu-item {
    position: relative;
    margin-bottom: 30px;
    /* display: flex; */
    /* align-items: center; */
}

.menu .menu-img {
    /* width: 100px; */
    /* height: 100px; */
    /* margin-right: 20px; */
    /* margin: auto; */

    width: 150px;
    height: 150px;
    /* margin-right: 20px; */
    margin: auto;
    /* margin-bottom: -21px; */
}

.menu .menu-img img {
    /* width: 100%; */
    width: 150px;
    height: 150px;
    border-radius: 100px;
}

.menu .menu-text {
    /* width: calc(100% - 100px); */
    text-align: center;
}

.menu .menu-text h3 {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-text h3::after {
    /* position: absolute; */
    /* content: ""; */
    width: 100%;
    height: 0;
    /* top: 13px; */
    /* left: 0; */
    border-top: 2px dotted #cccccc;
    /* z-index: -1; */
}

.menu .menu-text h3 span {
    display: inline-block;
    float: left;
    padding-right: 5px;
    background: #ffffff;
}

.menu .menu-text strong {
    display: inline-block;
    text-align: center;
    margin: auto;
    /* display: flex; */
    font-weight: 900;
    padding-left: 5px;
    color: var(--main-color);
    background: #ffffff;
}

.menu .menu-text p {
    position: relative;
    margin: 5px 0 0 0;
    float: left;
    display: block;
}

@media(max-width: 575.98px) {
    .menu .menu-text p,
    .menu .menu-text h3,
    .menu .menu-text h3 span,
    .menu .menu-text h3 strong {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
    }
    
    .menu .menu-text h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .menu .menu-text h3 span {
        margin-bottom: 3px;
    }
    
    .menu .menu-text h3::after {
        display: none;
    }
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--main-color);
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: var(--main-color);
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: var(--second-color);
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: var(--main-color);
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: var(--second-color);
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--main-color);
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: var(--main-color);
    border-color: var(--main-color);
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-information {
    min-height: 150px;
    margin: 0 0 30px 0;
    padding: 30px 15px 0 15px;
    background: rgba(0, 0, 0, .04);
}

.contact .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50px;
}

.contact .contact-icon i {
    font-size: 20px;
    color: #ffffff;
    display: inline-block;
    animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.contact .contact-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--second-color);
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
    /* color: #454545; */
    color: white;
    } 

.contact .contact-social a {
    margin-right: 10px;
    font-size: 18px;
    color: var(--main-color);
}

.contact .contact-social a:hover {
    color: var(--second-color);
}

.contact .contact-form iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact .contact-form select,
.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 20px;
    background: rgba(0, 0, 0, .04);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-social {
    position: relative;
    margin-bottom: 2px;
    /* color: #454545; */
    color: white;
    } 

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-social h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-social h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--second-color);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    /* color: #454545; */
    color: white;
         transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 10px;
    color: var(--main-color);
}

.footer .footer-link a:hover {
    color: var(--main-color);
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
    color: var(--main-color);
}

.footer .footer-social {
    /* position: relative;
    margin-top: 20px;
    display: flex; */
}

.footer .footer-social a {
    display: inline-block;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    padding: 5px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 35px;
    font-size: 16px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: var(--second-color);
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social .form {
    position: relative;
    width: 100%;
}

.footer .footer-social input {
    height: 60px;
    background: transparent;
    border: 1px solid var(--main-color);
    border-radius: 5px;
}

.footer .footer-social .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
}

.footer .copyright {
    position: relative;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: #ffffff;
}

.footer .copyright p {
    margin: 0;
    display: inline-block;
    /* color: #454545; */
    color: white;
    } 

.footer .copyright p a {
    color: var(--main-color);
}

.footer .copyright p a:hover {
    color: var(--second-color);
}


/* ميديا */
@media (max-width: 767.98px) {
    .navbar .logo {
        /* width: 150px !important; */
    }

    .navbar .dropdown-menu {
        left: -192px !important;
        right: -112px;
        top: 50px;
        margin: auto;
        height: calc(100vh - 120px);
    }

    .navbar .dropdown-menu .check-item {
        /* right: 255px !important; */
    }


    .carousel .carousel-text p {
        padding: 0 70px;
    }

    .owl-prev,
    .owl-next {
        padding: 4px !important;
    }

    .book-an-appointment p {
        font-size: 15px !important;
    }

    .book-an-appointment h2 {
        font-size: 17px !important;
    }

    .footer p {
        font-size: 12px;
    }
}