
/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
    - Content width
  2.4 Buttons
    - Primary Buttons
    - Outline Buttons

3. CONTENT ELEMENTS
  - Dropdown
  - Form
  - Swiper
  - Model

4. SITE STRUCTURE
  4.1 Header
  4.2 Billboard Section
  4.3 Products Section
  4.4 About Section
  4.5 Testimonial Section
  4.6 Service Section
  4.7 Feature Section
    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color: #ccb885;
  --black-color: #0d1d2d;
  --light-black-color: #343536;
  --dark-color: #0d1d2d;
  --body-color: #5A5A5A;
  --primary-color: #ccb885;
  --primary-color-200: #E8F0F1;
  --primary-color-400: #c4e9ed;
  --gray-color: #777F81;

  --bs-dark-rgb: 13,29,45;
  --bs-body-color-rgb: 90, 90, 90;

  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);

  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-primary-rgb: 204, 184, 133;
  --light-color: #fdfdfd;
  --swiper-theme-color: #111 !important;
  --cadet-blue-color: #9AB4B7;
}

/* Fonts */
:root {
  --heading-font: "Zilla Slab", serif;
  --body-font: "Jost", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 164%;
  letter-spacing: 0.12px;
  color: var(--body-color);
  margin: 0;
}

p {
  color: var(--body-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  color: var(--primary-color);
}

.text-light{
  color: var(--light-color) !important;
}
.text-primary{
  color: var(--primary-color) !important;
}
.text-black{
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-gray{
  background-color: var(--bs-gray-100) !important;
}
.bg-accent-gradient{
  background: linear-gradient(90deg, #18A7E4 0%, #1BADEC 0.01%, #0A9CDB 100%);
}
.bg-primary-200 {
  background-color: var(--primary-color-200) !important;
}
.bg-primary-dim {
  background-color: var(--bs-primary-rgb) !important;
}

/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 4.125em;
  padding-bottom: 4.125em;
}
.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}
.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}
.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}
.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--heading-font);
  font-weight: 300;
  letter-spacing: 0.34px;
  line-height: 115%;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 1.9rem;
  --bs-btn-padding-y: 0.8rem;
  --bs-btn-font-family: var(--heading-font);
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #af805a;
  --bs-btn-hover-border-color: #af805a;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}


/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  font-weight: 500;
  font-size: 17px;
  color: var(--dark-color);
  font-family: var(--heading-font);
}
.dropdown-item.active, .dropdown-item:hover, .dropdown-item:active{
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

/* Form
------------------------------------------------------------- */
.form-check-input:checked {
  background-color: var(--accent-color);
  box-shadow: none;
}
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}
.form-control:focus, .form-select:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--body-color);
}
input, select, textarea {
  outline: 0;
  box-shadow: none;
}
select:focus {
  box-shadow: none;
}

/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 6px;
}
.swiper-pagination-bullet{
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active{
  background: var(--primary-color);
}

/* Modal
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}
.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}

/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/

a.nav-link{
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
  color: var(--light-color);
  font-family: var(--heading-font);
}
a.nav-link:focus{
  color: var(--light-color);
}
a.nav-link.active,
a.nav-link:hover{
  color: var(--primary-color)!important;
  outline: none;
}


.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;

}

#primary-header .dropdown .search::after{
  content: none;
}
#primary-header .search-dropdown .dropdown-menu{
  width: 260px;
}
#primary-header .search-dropdown .dropdown-menu input{
  min-width: 100%;
}
#primary-header .search-dropdown .dropdown-menu button{
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}


@media only screen and (max-width: 990px) {
  a.nav-link{
font-size: 2rem;
padding: 10px 0 10px 0;
  }
}

/* 4.2 Billboard Section
/*----------------------------------------------*/
section#billboard .banner-content{
  width: 40%;
  background: rgba(48, 44, 41, 0.90);
  border: 1px solid var(--accent-color);
  outline: 0.5rem solid rgba(48, 44, 41, 0.90);
}

@media only screen and (max-width: 700px) {
  section#billboard .banner-content{
    width: 90%;
  }
}

/* 4.3 Products Section
/*----------------------------------------------*/
.product-item img.post-image{
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
transition: all 0.5s ease-in-out;
}

.product-item:hover img.post-image{
opacity: 0.7;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}

.product-description{
  bottom: -125px;
  transition: all 0.5s ease-in-out;
}

.product-item:hover .product-description{
bottom: 10px;
}

.product-paragraph{
  font-size: 1rem;
}

@media only screen and (min-width:770px) and (max-width: 1400px) {
  .product-description{
    bottom: -180px;
  }
}

/* 4.4 About Us 
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0%   {transform: scale(.8);}
  100% {transform: scale(1.1);}
}

/* 4.5 Testimonial
/*----------------------------------------------*/
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}


/* 4.6 Our Services
/*----------------------------------------------*/
section#services .banner-content{
  width: 60%;
  background: rgba(48, 44, 41, 0.90);
  border: 1px solid var(--accent-color);
  outline: 0.5rem solid rgba(48, 44, 41, 0.90);
}

/* 4.7 Feature Brand
/*----------------------------------------------*/
img.brand-image{
  filter: saturate(0);
  transition: all 0.3s ease-in;
}
img.brand-image:hover{
  filter: saturate(1);
}


/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/

/*--------------------------------------------------------------
5.1 About page 
--------------------------------------------------------------*/

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
}


/*--------------------------------------------------------------
  5.2 Blog page 
  --------------------------------------------------------------*/
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/*--------------------------------------------------------------
 5.3 Pricing page 
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--primary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 300px;
}


/*--------------------------------------------------------------
 5.4 reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}



/*--------------------------------------------------------------
5.5 faqs page 
--------------------------------------------------------------*/

/* accordian style override  */

.accordion {
  --bs-accordion-border-color: var(--primary-color);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23d06051&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23d06051&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-header {
  margin-bottom: 0;
  border-top: 1px solid var(--primary-color);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: none;
}



@media (min-width: 1025px) and (max-width: 1199.98px) {

  .navbar-nav .nav-item {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .navbar-nav .nav-item a.nav-link{
    font-size: 18px;
    padding: 10px 0 10px 0;
  }

}



@media only screen and (min-width:1025px) {

    .hamburger,
    .kebab-toggler,
    .social-menu {
        display: none;
    }

    .mobile-show {
      display: none;
    }

    .mobile-h {
      display: none;
    }

}



@media only screen and (max-width:1024.98px) {
  .header-top {
    display: none;
  }

  .dropdown-toggle::after {
    display: none;
  }

  .pbm {
    margin-bottom: 18px;
  }

   .mobile-show {
      display: block;
    }

    .navbar {
        min-height: 100px;
    }

    .navbar .navbar-brand {
        position: relative;
        height: 100%;
    }

    .navbar .navbar-brand img {
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        max-width: 165px;
    }

    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: .15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        top: 48%;
        right: 15px;
        z-index: 999;
        transform: translateY(-50%);
        margin-top: 5px;
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 32px;
        height: 3px;
        background-color: #ccb885;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -9px;
    }

    .hamburger-inner::after {
        bottom: -9px;
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: .13s;
        transition-delay: .13s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top .2s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity .1s linear;
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top .12s .2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform .13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: .22s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top .2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity .1s .22s linear;
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top .1s .16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform .13s .25s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding: 20px;
        background-color: #0d1d2d;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border: 0;
        transform: translateY(100%) perspective(1px);
        transition: height .8s ease-in-out;
        overflow-y: scroll;
        border: 0;
        border-radius: 0;
        text-align: center;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 99px);
        opacity: 1;
        transform: translateY(0) perspective(1px);
        visibility: visible;
        opacity: 1;
        padding-top: 30px !important;
        display: block !important;
    }

    .slide-out-nav .navbar-nav {
        width: 100%;
        display: block;
    }

    .slide-out-nav .navbar-nav .nav-item {
        display: block;
        text-align: center;
        margin: 0;
        border: none;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .slide-out-nav .navbar-nav .nav-item .nav-link {
        font-size: 21px;
        padding: 12px 15px !important; 
        color: #ccb885;

    }

    .slide-out-nav .navbar-nav .nav-item.dropdown .dropdown-menu {
      position: relative;
      display: block;
      padding-top: 12px;
      padding-bottom: 12px;
      text-align: center;
    }

     .slide-out-nav .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
      font-size: 18px;
        padding: 6px 15px !important;
        word-wrap: break-word;
        white-space: break-spaces;
    }

    .navbar .navbar-nav .nav-link:focus,
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #0d1d2d;
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset;
    }


}


.header-top .info li {
  font-size: 16px;
}

#mapid {
   width: 100%; 
   height: 400px; 
   position: relative;
   z-index: 1;
} 

.partner-logo img {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}





@media (min-width: 1400px) and (max-width: 1499.98px) {
    .header-top .info li {
      font-size: 12px;
    }

}

@media (min-width: 1500px) and (max-width: 1599.98px) {
    .header-top .info li {
      font-size: 13px;
    }

}

@media (min-width: 1600px) and (max-width: 1699.98px) {
    .header-top .info li {
      font-size: 14px;
    }

}

@media (min-width: 1025px) and (max-width: 1399.98px) {
  .header-top .info li {
    display: none;
  }

}
@media (max-width: 991.98px) {
  .copyright {
    display: block !important;
  }

 /* .copyright p:first-child {
    margin-bottom: 0;
  }*/

  .copyright-link {
    margin-bottom: 0;
    padding-bottom: 16px;
  }


}

@media (max-width: 767.98px) {

    #mapid {
        height: 480px;
    }

}


@media (max-width: 575px) {
    #mapid {
        height: 420px;
    }
   
}

@media (max-width: 483px) {
  .tel-nav-item, .mail-nav-item {
    display: .block;
  }
   
}
