/* apiary */
:root {
  --swifty-header-height: 4.41rem;
}

body {
  padding-left: 222px;
  transition: all 0.5s ease 0s;
  font-family: "Adamina", serif;
}

.verticale-header {
  width: 222px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
  transition: all 0.5s ease 0s;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
}

.inner-header {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}

header .header-logo {
  padding: 24px 27px;
  display: flex;
  justify-content: center;
  width: 100%;
}

header .logo-wrapper {
  transition: all 0.5s ease 0s;
  width: 12.5rem;
  text-align: center;
  margin: 0 auto;
}

.header-logo .logo-wrapper a.logo img {
  max-width: 100%;
  max-height: 80px;
  margin: 0 auto;
}

header .logo-wrapper .sticky-logo {
  display: none;
}

header .main-menu {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 60px 16px;
  gap: 5px;
  position: relative;
}

.header-menu {
  width: 100%;
}

.top-header {
  display: flex;
  align-items: center;
  position: fixed;
  width: calc(100% - 220px);
  z-index: 999;
  height: var(--swifty-header-height);
  min-height: var(--swifty-header-height);
}

.header-cta {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0px 24px;
  gap: 12px;
}

.header-btn {
  z-index: 9;
  position: relative;
}

.top-header .header-cta .header-btn {
  margin: 0;
  box-shadow: none;
  min-width: unset;
  padding: 1rem;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-size: 0.8rem;
  line-height: 1.2;
  border-radius: 4px;
  margin-bottom: 0;
}

.header-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 16px;
  text-align: center;
  position: relative;
}

.header-contact-wrap p.contact-address,
.header-contact-wrap p.contact-phone,
.header-contact-wrap p.contact-email {
  font-size: 0.75rem;
  font-weight: 400;
  word-break: break-all;
}

.header-contact-wrap::after {
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.122);
  width: calc(100% - 32px);
  position: absolute;
  top: 0;
  left: 16px;
}

.header-contact-wrap .contact-menu-icon svg {
  max-width: 30px;
}

.header-contact-wrap .contact-menu-icon .mob-menu-icon .swi {
  font-size: 1.3rem;
}

.header-social-wrap {
  display: flex;
  width: 100%;
}

.header-social-wrap .social-bar {
  padding: 0;
  width: 100%;
}

.header-social-wrap ul.social-links {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 21px;
  flex-flow: wrap;
}

.header-social-wrap ul.social-links li.social-icon {
  display: inline-block;
  position: relative;

}

.header-social-wrap ul.social-links li.social-icon a {
  position: relative;
}

.header-social-wrap ul.social-links li.social-icon .swi {
  font-size: 0.95rem;
}

.header ul.main-menu li.menu-item {
  position: relative;
  padding: 10px 0px;
}

ul.main-menu li.menu-item .menu-item-link {
  font-size: 1rem;
}

.verticale-header ul.main-menu ul.sub-menu {
  padding-top: 10px !important;
  overflow: visible !important;
}

.verticale-header ul.main-menu ul.sub-menu li.menu-item:last-child::after {
  content: "";
  width: 20px;
  border-bottom: 1px solid;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
}

.verticale-header ul.main-menu ul.sub-menu li.menu-item ul.sub-menu li.menu-item:last-child::after {
  content: unset;
}

.verticale-header ul.main-menu ul.sub-menu li.menu-item a.menu-item-link {
  font-size: 0.95rem;
}

header.bg-default_theme ul.main-menu li.menu-item .menu-item-link,
header.bg-default_theme:not(.collapsed) .menu-trigger span {
  color: #000000;
}

header.bg-default_theme .header-contact-wrap a {
  color: #000000;
}

header.bg-default_theme .header-social-wrap ul.social-links li.social-icon a {
  color: #000000;
}

.verticale-header .header-contact-wrap a.contact-phone-wrap {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.inner-top-header {
  width: 100%;
  display: flex;
  justify-content: end;
  padding: .625rem 3.375rem;
}

.inner-top-header .contact-phone-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

/* burger menu css */
.menu-trigger {
  height: 100%;
  display: none;
  align-items: center;
  width: 2.187rem !important;
  position: relative;
  cursor: pointer;
  text-align: left;
}

.inner-top-header .menu-trigger {
  display: flex;
}

.menu-trigger span {
  position: absolute;
  width: 2.187rem;
  height: 0;
  right: 0;
  border-bottom: 3px solid;
  top: 50%;
  transition: all 0.5s ease 0s;
  transform: translateY(-50%) scale(-1, 1);
}

.menu-trigger span:first-child {
  top: calc(50% - 10px);
}

.menu-trigger span:last-child {
  top: calc(50% + 10px);
  left: 0;
}

.menu-trigger span:first-child,
.menu-trigger span:last-child {
  width: 1.5rem;
}

.menu-trigger:hover span {
  width: 2.187rem;
}

.main {
  padding-top: var(--swifty-header-height);
}

section.hero-banner,
section.hero-banner.video-banner {
  height: calc(100vh - var(--swifty-header-height));
  min-height: calc(100vh - var(--swifty-header-height));
}

section.hero-banner .hero-container,
section.hero-banner .slider,
section.hero-banner .slick-list,
section.hero-banner .slick-track,
section.hero-banner .slick-slide,
section.hero-banner .slide-outer,
section.hero-banner .slide-bg,
section.hero-banner .slide-bg img,
section.hero-banner .video-wrapper {
  height: 100%;
  min-height: 100%;
}

/* end of burger menu css */
@media screen and (min-width: 993px) {
  .inner-header {
    padding: 0;
  }

  .header-social-wrap ul.social-links {
    padding: 0 16px;
  }
}

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

  .inner-header {
    flex-flow: wrap;
    display: flex;
  }

  .top-header,
  header .header-menu,
  header .contact-email-wrap,
  .contact-address-wrap,
  .header-contact-wrap .contact-menu-icon {
    display: none;
  }

  .verticale-header {
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    overflow-y: unset;
    overflow-x: unset;
    height: var(--swifty-header-height);
    min-height: var(--swifty-header-height);
    max-height: var(--swifty-header-height);
  }

  body {
    padding-left: 0;
  }

  header .header-logo {
    max-width: 9.375rem;
    padding: 0;
  }

  header .logo-wrapper {
    padding: 10px 0px;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-inner-wrap .social-bar {
    display: block;
  }

  header .hamburger-menu {
    display: flex;
  }

  .header-social-wrap {
    display: none;
  }

  .header .menu-trigger {
    display: flex;
  }

  .header .header-contact-wrap {
    padding: 0 !important;
    margin-left: auto;
    margin-right: 28px;
  }

  .header-contact-wrap p {
    margin-bottom: 0;
  }

  header .inner-header {
    align-items: center;
  }

  header .header-logo {
    padding: 0;
    height: 100%;
    align-items: center;
  }

  .header-logo .logo-wrapper a.logo img {
    height: auto;
    object-fit: contain;
    object-position: left center;
    max-height: 3.3334rem;
  }

  .header-contact-wrap::after {
    display: none;
  }

  .header-logo .logo-wrapper a.logo img {
    margin-right: auto;
    margin-left: unset;
  }

  .verticale-header .header-contact-wrap a.contact-phone-wrap,
  .verticale-header .header-contact-wrap .contact-menu-icon {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .verticale-header .header-contact-wrap .contact-menu-icon .swi {
    font-size: .9rem;
  }
}

@media screen and (max-width: 767px) {
  .header-contact-wrap p.contact-phone {
    font-size: 1.167rem;
  }

  header .header-logo {
    padding: 0;
  }

  section.hero-banner.content-hero,
  section.hero-banner.video-banner {
    height: calc(100vh - var(--swifty-header-height)) !important;
  }
}

@media (max-height: 699px) {
  header .main-menu {
    padding: 15px;
  }

  header .main-menu {
    gap: 0;
  }
}

@media (min-height: 600px) {
  .header-social-wrap {
    position: absolute;
    bottom: 14px;
    left: 0;
    max-width: 222px;
  }

  .header-social-wrap ul.social-links {
    padding: 0 16px;
  }
}