/* Acacia css */
:root {
  --swifty-header-height: 4.6rem;
}
body:has(header:not(.bg-default_theme)) .main{
padding-top: var(--swifty-header-height);
}
body header {
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  height: var(--swifty-header-height);
  transition: all 0.5s ease 0s;
}
header.bg-default_theme{
  background-color: transparent;
}
header.bg-default_theme:not(.collapsed) ul.main-menu li.menu-item .menu-item-link,
header.bg-default_theme:not(.collapsed) .menu-trigger span {
    color: #fff;
}

header.bg-default_theme::before{
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.358);
   backdrop-filter: blur(120px);
  -webkit-backdrop-filter: blur(120px);
}
header.collapsed.bg-sticky-default_theme ul.main-menu li.menu-item .menu-item-link,
header.collapsed.bg-sticky-default_theme .menu-trigger span, header.collapsed.bg-sticky-default_theme .contact-heading{
color: #111111;
}
header.bg-default_theme.collapsed::before{
  display: none;
}
header.new-section .header-container{
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

header .inner-header {
  justify-content: space-between;
  min-height: 3.889rem;
  margin: 0 auto;
  height: 100%;
}
header .header-logo {
  display: flex;
    padding: 12px 32px;
    width: 25%;
    max-width: 435px;
}
header .logo-wrapper {
  transition: all 0.5s ease 0s;
  width: 11.112rem;
  justify-content: left;
  display: flex;
  vertical-align: top;
  position: relative;
  text-align: left;
}
.header-logo .logo-wrapper a.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.5s ease 0s;
}
.header-logo .logo-wrapper a.logo img {
  width: 100%;
  transition: all .5s ease 0s;
  height: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
 /*  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor; */
  max-height: 3.3334rem;
}
.header-logo .logo-wrapper a.sticky-logo img{
  display: none;
  transition: all 0.5s ease 0s;
}
header.collapsed .logo-wrapper a.main-logo {
  display: none;
  transition: all 0.5s ease 0s;
}
header.collapsed .logo-wrapper a.sticky-logo img{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .header-phone-cta-wrap {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content:center;
  margin: 0 auto;
}
header .header-menu {
  justify-content: center;
  display: flex;
  align-items: center;
  order: 1;
  padding-top: .6667rem;
  padding-bottom: .6667rem;
}
header .header-navbar .main-menu {
  display: flex;
  gap: 22px;
}
header ul.main-menu li.menu-item .menu-item-link {
  padding: .556rem;
}
header .header-navbar .main-menu .menu-item a:hover,
header .header-navbar .main-menu .menu-item a.active{
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid;
}
header .header-contact {
  align-items: center;
  display: flex;
  padding-right: 1.334rem;
  padding-top: .6667rem;
  padding-bottom: .6667rem;
}
header .header-cta {
  gap: 10px;
  display: flex;
   padding-top: .6667rem;
  padding-bottom: .6667rem;
  align-items: center;
}
header .header-cta .header-btn {
  margin: 0;
  box-shadow: none;
  min-width: unset;
  padding: .6667rem .8889rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 1rem;
  line-height: 1;
  border-radius: 4px;
}
header .hamburger-menu {
  order: 1;
  display: flex;
  align-items: center;
  padding-left: 3.334rem;
  position: relative;
  padding-top: .6667rem;
  padding-bottom: .6667rem;
  padding-right: 1.778rem;
}
/* burger menu css */
header .menu-trigger {
  height: 2.778rem;
  display: flex;
  align-items: center;
  width:  2.778rem;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
header .menu-trigger span {
     font-size: 1.4rem;
}

/* end of burger menu css */

header .phone-wrap{
    display: flex;
}
header .header-contact .contact-number{
  margin-bottom: 0;
  line-height: 1.4;
  white-space: nowrap;
  /* color: #EEB470; */
}

header .calling-icon{
  height: 1.667rem;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  border: .167rem solid;
  width: 1.667rem;
  text-align: center;
  justify-content: center;
  border-radius: 30px;
  margin-top: auto;
  margin-right: 10px;
  align-items: center;
  /* color: #EEB470; */
}


header .calling-icon i.swi{
  font-size: .9rem;
}

header .calling-text{
  text-align: right;
}
header .contact-heading{
    text-transform: uppercase;
    font-size: .8rem;
    line-height: 1.2;
}
header .contact-number{
    font-size: 1.25rem;
    font-weight: 600;
}
header .divider{
  display: block;
    position: relative;
    padding-left: 20px;
}
header .divider::after{
  padding-left: 21px;
    font-size: 2rem;
    font-weight: 100;
    color: #CCCCCC;
    content: "";
    height: 28px;
    border-left: 1px solid #CCCCCC;
    position: absolute;
    left: 20px;
    top: -13px;
}
header .hamburger-menu::after {
  content: "";
  height: 28px;
  border-left: 1px solid #CCCCCC;
  position: absolute;
  left: 34px;
}

header.collapsed .header-logo{
  background-color: transparent;
}
/* body:has(header:not(.bg-default_theme)) section.hero-banner {
  margin-top: 0;
  padding-top: var(--swifty-header-height);
  min-height: 100vh;
} */

@media screen and (min-width: 768px){
body:has(header:not(.bg-default_theme)) section.hero-banner.video-banner, body:has(header:not(.bg-default_theme)) section.hero-banner,
body:has(header:not(.bg-default_theme)) section.hero-banner .hero-container,
body:has(header:not(.bg-default_theme)) section.hero-banner .slider,
body:has(header:not(.bg-default_theme)) section.hero-banner .slick-list,
body:has(header:not(.bg-default_theme)) section.hero-banner .slick-track,
body:has(header:not(.bg-default_theme)) section.hero-banner .slick-slide,
body:has(header:not(.bg-default_theme)) section.hero-banner .slide-outer,
body:has(header:not(.bg-default_theme)) section.hero-banner .slide-bg,
body:has(header:not(.bg-default_theme)) section.hero-banner .slide-bg img {
  height: calc(100vh - var(--swifty-header-height));
  min-height: calc(100vh - var(--swifty-header-height));
}

body:has(header:not(.bg-default_theme)) section.hero-banner .slide-flex-wrapper .container,
body:has(header:not(.bg-default_theme)) section .video-wrapper {
  height: calc(100vh - var(--swifty-header-height));
  min-height: calc(100vh - var(--swifty-header-height));
}

/* transparent header stays overlay */
body:has(header.bg-default_theme) section.hero-banner {
  padding-top: 0;
  min-height: 100vh;
}
 
}

@media screen and (max-width: 1680px){

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

@media screen and (max-width: 1024px){

header .hamburger-menu::after{
  display: none;
}
  header .header-contact{
    padding-right: 10px;
  }
  header .hamburger-menu{
    padding:0px 20px;
  }
  header .header-logo{
    width: 35%;
   }
  
}

@media screen and (max-width: 992px) {
  
  header .hamburger-menu::after{
    display: none;
  }
  header .header-container{
    padding-right: 0;
  }
   header .header-logo{
    width: 45%;
    max-width: 360px;
    height: 100%;
    align-items: center;
   }
}
@media screen and (max-width: 767px) {
  header{
    height: auto;
  }
   header .header-logo{
    background: transparent !important;
    width: auto;
    padding: 0px;
  }
  header .inner-header{
    justify-content: space-between;
    padding: 12px;
  }
  .header-logo .logo-wrapper a.logo img{
    max-width: 150px;
  }
  header .logo-wrapper{
    width: auto;
  }
  header .header-contact .contact-number{
    font-size: 1.167rem;
  }
   header .header-menu, header .header-cta{
        display: none;
    }
    header .header-phone-cta-wrap{
      margin-left: auto;
      margin-right: 0;
    }
    header .hamburger-menu {
        padding: 0px 0px 0 10px;
    }
    header .menu-trigger{
      gap: 3.3px;
    }
}
   
@media screen and (max-width: 321px) {
header .logo-wrapper{
      max-width: 120px;
    }
}