/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --zefxa-font: "DM Sans", sans-serif;
  --zefxa-font-two: "Manrope", sans-serif;
  --zefxa-font-three: 'reeyregular';
  --zefxa-gray: #6c6b6f;
  --zefxa-gray-rgb: 108, 107, 111;
  --zefxa-white: #ffffff;
  --zefxa-white-rgb: 255, 255, 255;
  --zefxa-base: #f50963;
  --zefxa-base-rgb: 245, 9, 99;
  --zefxa-black: #1c1b1f;
  --zefxa-black-rgb: 28, 27, 31;
  --zefxa-extra: #f4f5f8;
  --zefxa-extra-rgb: 244, 245, 248;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--zefxa-font);
  color: var(--zefxa-gray);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--zefxa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--zefxa-font-two);
  color: white;
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 30px;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--zefxa-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--zefxa-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--zefxa-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--zefxa-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}


.thm-btn {
  position: relative;
  display: inline-flex;
  -webkit-appearance: none;
  outline: none !important;
  background-color: #3B3FA4;
  color: var(--zefxa-white);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 29px 11px;
  border-radius: 0;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
  justify-content: center;
  z-index: 1;
}

.thm-btn::before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 260%;
  content: "";
  top: 132%;
  left: 50%;
  background-color: var(--zefxa-black);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}

.thm-btn:hover:before {
  top: -60%;
}

.thm-btn:hover {
  color: var(--zefxa-white);
}

.section-title {
  position: relative;
  display: block;
  margin-top: -4px;
  margin-bottom: 59px;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.section-title__tagline-shape {
  position: relative;
  display: block;
  max-width: 16px;
  width: 100%;
}

.section-title__tagline-shape img {
  width: 100%;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 17px;
  color: var(--zefxa-base);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.section-title__title {
  margin: 0;
  color: var(--zefxa-black);
  font-size: 45px;
  line-height: 55px;
  font-weight: 600;
  margin-top: 7px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--zefxa-black);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--zefxa-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--zefxa-black);
  color: var(--zefxa-white);
  cursor: pointer;
}



/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #3b3fa4;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: var(--zefxa-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.scroll-to-top:hover {
  background-color: var(--zefxa-black);
}

.scroll-to-top:hover i {
  color: #fff;
}


/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--zefxa-base);
  border-color: var(--zefxa-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--zefxa-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--zefxa-white);
  color: var(--zefxa-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--zefxa-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:after {
  background-color: var(--zefxa-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn span {
  background-color: var(--zefxa-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}




/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  background-color: #3B3FA4;
}

.main-menu__top .container {
  max-width: 1320px;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 6px 0;
}

.main-menu__top-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--zefxa-white);
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--zefxa-base);
}

.main-menu__social a+a {
  margin-left: 30px;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 40px;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 14px;
  color: var(--zefxa-white);
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}



.main-menu__contact-list li .text p a {
  color: white;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: white;
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-text {
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  background-color: white;
  z-index: 1;
}

.main-menu__wrapper .container {
  max-width: 1320px;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu__left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
}

.main-menu__logo {
  position: relative;
  display: block;
  padding: 20.5px 0;
  z-index: 1;
}

.main-menu__logo a {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  padding-left: 30px;
}

.main-menu__right:before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background-color: rgba(var(--zefxa-white-rgb), .10);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.main-menu__btn {}

.main-menu__cart-search-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #3B3FA4;
}

.main-menu__search:hover {
  color: var(--zefxa-base);
}






.stricky-header.main-menu {
  background-color: var(--zefxa-black);
}



.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--zefxa-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--zefxa-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--zefxa-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--zefxa-white);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--zefxa-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--zefxa-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--zefxa-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--zefxa-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--zefxa-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--zefxa-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--zefxa-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--zefxa-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--zefxa-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--zefxa-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--zefxa-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--zefxa-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--zefxa-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/* nav end */


/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--zefxa-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--zefxa-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:before {
  background-color: var(--zefxa-black);
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--zefxa-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--zefxa-white);
}


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--zefxa-black);
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}



.main-slider__shape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 5;
}


.main-slider .container {
  position: relative;
  padding-top: 200px;
  padding-bottom: 50px;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 15;
}

.main-slider__title {
  position: relative;
  font-size: 70px;
  color: var(--zefxa-white);
  font-weight: 700;
  line-height: 75px;
  text-transform: capitalize;
  font-family: var(--zefxa-font-two);
  opacity: 0;
}
.main-slider__title span {
  color: #fff;
}

.main-slider .swiper-slide-active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
}


.main-slider__text {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 32px;
  margin-top: 32px;
  margin-bottom: 42px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
  transform: perspective(400px) rotateY(0deg) translateY(120px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider__btn:hover {
  color: var(--zefxa-black);
}

.main-slider__btn::before {
  background-color: var(--zefxa-white);
}

.main-slider .swiper-slide-active .main-slider__btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}



/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-one__big-text {
  font-size: 100px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f4f1ee;
  transform: rotate(90deg);
  position: absolute;
  bottom: 307px;
  left: -73px;
}

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-one__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--zefxa-black);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img::before {
  opacity: .50;
}

.services-one__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-one__content-wrap {
  position: relative;
  display: block;
}

.services-one__content {
  position: relative;
  display: block;
  margin-top: -40px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #dadcdd;
  padding: 43px 28px 25px;
  padding-right: 20px;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  z-index: 1;
}

.services-one__content::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: var(--zefxa-white);
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  z-index: -1;
}

.services-one__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  top: -15px;
  left: 30px;
  background-color: #3D42A8;
  z-index: 2;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--zefxa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
}


.services-one__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 10px;
  margin-bottom: 11px;
}

.services-one__title a {
  color: var(--zefxa-black);
}

.services-one__title a:hover {
  color: var(--zefxa-base);
}

/*--------------------------------------------------------------
# About One    
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 50px 0 50px;
  z-index: 1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 40px;
  margin-left: -375px;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img img {
  width: 100%;
}

.about-one__right {
  position: relative;
  display: block;
}

.about-one__right .section-title {
  margin-bottom: 22px;
}

.about-one__big-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  font-family: var(--zefxa-font-two);
  color: var(--zefxa-base);
}

.about-one__text {
  margin-top: 21px;
  margin-bottom: 25px;
}

.about-one__points {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-one__points li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -43px;
  width: 3px;
  height: 94px;
  background-color: var(--zefxa-base);
}

.about-one__points li:first-child::before {
  display: none;
}

.about-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: #3D42A8;
  border-radius: 50%;
}

.about-one__points li .icon>span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--zefxa-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-one__points li:hover .icon>span {
  transform: scale(0.9);
}

.about-one__points li h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.about-one__btn-box {
  position: relative;
  display: block;
  margin-top: 41px;
}

/*--------------------------------------------------------------
# Contact One  
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 90px 0 90px;
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.contact-one__left {
  position: relative;
  display: block;
  margin-left: -30px;
  z-index: 1;
}

.contact-one__from-shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.contact-one__from-shape-1 img {
  width: auto;
  opacity: .40;
}

.contact-one__form {
  position: relative;
  display: block;
  background-color: #4e535b;
  padding: 30px 30px 30px;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--zefxa-white);
  padding-left: 20px;
  padding-right: 55px;
  outline: none;
  font-size: 14px;
  color: var(--zefxa-gray);
  display: block;
  font-weight: 500;
  border-radius: 0;
}

.contact-one__input-box-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.contact-one__input-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--zefxa-base);
}

.contact-one__input-box .select-box {
  width: 100%;
}

.contact-one__input-box .nice-select {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--zefxa-white);
  padding-left: 20px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--zefxa-gray);
  display: block;
  font-weight: 500;
  border-radius: 0px;
  line-height: 60px;
  float: none;
}

.contact-one__input-box .nice-select:after {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--zefxa-base);
  border-right: 2px solid var(--zefxa-base);
  margin-top: 0px;
  z-index: 10;
}

.contact-one__btn-box {
  position: relative;
  display: block;
}

.contact-one__btn {
  border: none;
  width: 100%;
  padding: 15px 29px 15px;
}

.contact-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
  text-align: center;
  margin-top: 104px;
}

.contact-one__video-link {
  position: relative;
  display: block;
}

.contact-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  color: var(--zefxa-white);
  background-color: transparent;
  border: 2px solid var(--zefxa-white);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
}

.contact-one__video-icon:hover {
  background-color: var(--zefxa-white);
  color: var(--zefxa-base);
}

.contact-one__video-link .ripple,
.contact-one__video-icon .ripple:before,
.contact-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.contact-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.contact-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.contact-one__video-text {
  position: relative;
  display: block;
  font-size: 50px;
  color: var(--zefxa-white);
  line-height: 65px;
  font-weight: 600;
  margin-top: 39px;
  text-align: left;
}



/*--------------------------------------------------------------
# CTA One    
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: var(--zefxa-black);
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 100;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 0 101px;
}

.cta-one__title {
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
  color: var(--zefxa-white);
}

.cta-one__btn-box {
  position: relative;
  display: block;
}

.cta-one__btn {
  padding: 11px 46px 11px;
}

.cta-one__btn::before {
  background-color: var(--zefxa-white);
}

.cta-one__btn:hover {
  color: var(--zefxa-base);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: white;
  overflow: hidden;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 112px 0 58px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.footer-widget__title {
  font-size: 24px;
  color: #000;
  line-height: 34px;
  font-weight: 600;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: -30px;
  margin-top: 8px;
}

.footer-widget__logo {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.footer-widget__about-text {
  font-weight: 400;
  color: #000;
}

.site-footer__social-box {
  position: relative;
  display: block;
}

.site-footer__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.site-footer__social-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
  margin-top: 18px;
  margin-bottom: 23px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--zefxa-white);
  background-color: #3b3fa4;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: #fff;
  background-color: transparent;
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--zefxa-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 10px;
}

.footer-widget__link {
  position: relative;
  display: block;
  margin-left: 60px;
}

.footer-widget__link-list {
  position: relative;
  display: block;
}

.footer-widget__link-list li+li {
  margin-top: 10px;
}

.footer-widget__link-list li a {
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__link-list li a:hover {
  color: var(--zefxa-base);
}

.footer-widget__newsletter {
  position: relative;
  display: block;
  margin-left: -20px;
  margin-right: 40px;
}

.footer-widget__newsletter-text {
  font-weight: 400;
  color: #000;
  margin-bottom: 18px;
}

.footer-widget__newsletter-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
  height: 44px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--zefxa-white-rgb), 0.10);
  outline: none;
  font-size: 14px;
  color: var(--zefxa-gray);
  font-weight: 400;
  padding-right: 70px;
  padding-left: 30px;
  border-radius: 5px;
}



.site-footer__bottom {
  position: relative;
  display: block;
  background-color: #3b3fa4;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 15px 0 17px;
  border-top: 2px solid rgba(var(--zefxa-white-rgb), .10);
}

.site-footer__bottom-text {
  color: #FFF;
  font-weight: 400;
}

.site-footer__bottom-text a {
  color: #878c8f;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--zefxa-white);
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 328px 0px 193px;
  overflow: hidden;
  background-color: var(--zefxa-black);
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .12;
  z-index: -1;
}

.page-header__shape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}

.page-header__shape-1 {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}

.page-header__shape-1 img {
  width: auto;
}

.page-header__shape-2 {
  position: absolute;
  top: -50px;
  right: 0;
  opacity: .60;
  z-index: -1;
}

.page-header__shape-2 img {
  width: auto;
}

.page-header__shape-3 {
  position: absolute;
  bottom: 0;
  right: -30px;
  z-index: -1;
}

.page-header__shape-3 img {
  width: auto;
}

.page-header__inner {
  position: relative;
  display: block;
}

.page-header__inner h2 {
  font-size: 90px;
  font-weight: 700;
  line-height: 95px;
  color: var(--zefxa-white);
  margin-top: 10px;
}

.thm-breadcrumb__box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
}

.thm-breadcrumb {
  position: relative;
  display: inline-block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--zefxa-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--zefxa-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--zefxa-base);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar {
  position: relative;
  display: block;
}

.sidebar__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 22px;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
  display: block;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: var(--zefxa-base);
  font-size: 24px;
  font-weight: 600;
  height: 84px;
  width: 100%;
  padding-left: 40px;
  padding-right: 70px;
  border: none;
  color: var(--zefxa-white);
  font-family: var(--zefxa-font-two);
  border-radius: 8px;
}

.sidebar__search-form button[type="submit"] {
  color: var(--zefxa-white);
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 40px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  transform: translateY(-50%);
}

.sidebar__post {
  position: relative;
  display: block;
  background-color: var(--zefxa-extra);
  padding: 31px 40px 40px;
  border-radius: 8px;
}

.sidebar__post-list {
  position: relative;
  display: block;
}

.sidebar__post-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar__post-list li+li {
  margin-top: 30px;
}

.sidebar__post-image {
  position: relative;
  display: block;
  max-width: 60px;
  width: 100%;
}

.sidebar__post-image>img {
  width: 100%;
  border-radius: 50%;
}

.sidebar__post-content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.sidebar__post-content>h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.sidebar__post-content>h3>a {
  color: var(--zefxa-gray);
}

.sidebar__post-content>h3>a:hover {
  color: var(--zefxa-black);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--zefxa-extra);
  padding: 31px 40px 40px;
  border-radius: 8px;
}

.sidebar__category-list {
  position: relative;
  display: block;
}

.sidebar__category-list li {
  position: relative;
  display: block;
}

.sidebar__category-list li+li {
  margin-top: 18px;
}

.sidebar__category-list li>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--zefxa-gray);
}

.sidebar__category-list li>a:hover {
  color: var(--zefxa-black);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: var(--zefxa-extra);
  padding: 31px 40px 40px;
  border-radius: 8px;
  padding-right: 80px;
}

.sidebar__tags-list {
  position: relative;
  display: block;
}

.sidebar__tags-list>a {
  position: relative;
  display: inline-block;
  color: var(--zefxa-gray);
}

.sidebar__tags-list>a:hover {
  color: var(--zefxa-black);
}

.sidebar__comments {
  position: relative;
  display: block;
  background-color: var(--zefxa-extra);
  padding: 31px 40px 40px;
  border-radius: 8px;
}

.sidebar__comments-list {
  position: relative;
  display: block;
}

.sidebar__comments-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sidebar__comments-list li+li {
  margin-top: 19px;
}

.sidebar__comments-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 45px;
  width: 100%;
  height: 45px;
  background-color: var(--zefxa-black);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__comments-list li:hover .icon {
  background-color: var(--zefxa-base);
}

.sidebar__comments-list li .icon>span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--zefxa-white);
}

.sidebar__comments-list li>p>span {
  color: var(--zefxa-black);
}








/*--------------------------------------------------------------
# The End    
--------------------------------------------------------------*/