/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --zeinet-font: "Outfit", sans-serif;
  --zeinet-reey-font: "reeyregular";
  --zeinet-gray: #818487;
  --zeinet-gray-rgb: 129, 135, 132;
  --zeinet-white: #ffffff;
  --zeinet-white-rgb: 255, 255, 255;
  --zeinet-base: #211470;
  --zeinet-base-rgb: 254, 144, 67;
  --zeinet-black: #30353a;
  --zeinet-black-rgb: 48, 53, 58;
  --zeinet-primary: #089fac;
  --zeinet-primary-rgb: 8, 159, 172;
  --zeinet-extra: #f7f5f1;
  --zeinet-extra-rgb: 247, 245, 241;
  --zeinet-bdr-color: #e6e1d8;
  --zeinet-bdr-color-rgb: 230, 225, 216;
  --zeinet-letter-spacing: -0.04em;
  --zeinet-letter-spacing-two: -0.02em;
}

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

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

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

body.locked {
  overflow: hidden;
}

a {
  color: var(--zeinet-gray);
}

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 {
  color: var(--zeinet-black);
  margin: 0;
  letter-spacing: var(--zeinet-letter-spacing);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  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(--zeinet-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(--zeinet-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(--zeinet-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

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

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

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 25px;
  padding: 10px 50px 10px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  content: "";
  background-color: var(--zeinet-black);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

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

.thm-btn:hover:before {
  height: 380%;
}

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

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: var(--zeinet-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 20px;
  z-index: 1;
}

.section-title__tagline:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 10px;
  width: 2px;
  background-color: var(--zeinet-base);
  transform: rotate(15deg);
}

.section-title__tagline:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 10px;
  width: 2px;
  background-color: var(--zeinet-base);
  transform: rotate(15deg);
}

.section-title__title {
  margin: 0;
  color: var(--zeinet-black);
  font-size: 49px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 5px;
}

.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;
  border-radius: 0;
}

.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(--zeinet-primary);
  color: #fff;
}

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

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

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  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;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--zeinet-primary);
  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%;
  cursor: pointer;
}

.scroll-to-top i {
  color: var(--zeinet-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--zeinet-base);
}

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

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

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

.main-menu__wrapper {
  display: block;
  padding-left: 40px;
  padding-right: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-menu__left {
  position: relative;
  display: block;
  float: left;
  max-width: 170px;
  width: 100%;
}

.main-menu__logo {
  display: block;
  padding: 36.5px 0;
}

.main-menu__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-menu__right {
  display: block;
  float: right;
  max-width: 920px;
  width: 100%;
}

.main-menu__right-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 1;
}

.main-menu__right-top:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: -40px;
  content: "";
  background-color: #fe9043;
  z-index: -1;
}

.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: 27px;
}

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

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

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

.main-menu__contact-list li .text p {
  font-size: 13px;
  font-weight: 500;
  color: var(--zeinet-white);
}

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

.main-menu__contact-list li .text p a:hover {
  color: var(--zeinet-black);
}

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

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--zeinet-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__social a:hover {
  color: var(--zeinet-black);
}

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

.main-menu__right-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__main-menu-content-box {
  display: block;
}

.main-menu__search-help-line {
  display: flex;
  align-items: center;
}

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

.main-menu__search-box .main-menu__search+.main-menu__search {
  margin-left: 20px;
}

.main-menu__search-box:before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -20px;
  width: 1px;
  background-color: var(--zeinet-bdr-color);
}

.main-menu__search {
  font-size: 24px;
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.main-menu__help-line {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--zeinet-extra);
  border-radius: 50%;
  font-size: 24px;
  color: var(--zeinet-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__help-line-icon:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.main-menu__help-line-content {
  margin-left: 10px;
}

.main-menu__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.main-menu__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu__help-line-number a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__help-line-number a:hover {
  color: var(--zeinet-base);
}

.stricky-header.main-menu {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.stricky-header .main-menu__wrapper {
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.stricky-header .main-menu__right-top {
  padding-right: 40px;
}

.stricky-header .main-menu__right-top:before {
  display: none;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 23px;
  padding-bottom: 23px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 45px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--zeinet-gray);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 700;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--zeinet-black);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 340px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 20px 20px 20px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--zeinet-gray);
  letter-spacing: 0;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--zeinet-white);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--zeinet-extra);
  color: var(--zeinet-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  font-size: 14px;
  color: var(--zeinet-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.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(--zeinet-base);
  cursor: pointer;
}

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

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

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: white;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--zeinet-black);
}

@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(--zeinet-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__content .logo-box img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--zeinet-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(--zeinet-font, "Rubik", sans-serif);
  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(--zeinet-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(--zeinet-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(--zeinet-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(--zeinet-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(--zeinet-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

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

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

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

.mobile-nav__contact li {
  color: var(--zeinet-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(--zeinet-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--zeinet-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;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.mobile-nav__container .home-showcase {
  margin: 0;
}

.home-showcase__inner {
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--zeinet-base);
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover>img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 10px 20px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--zeinet-black);
  margin-top: 17px;
  font-family: var(--zeinet-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--zeinet-white, #ffffff);
}

.stricky-header .megamenu-left .container {
  margin: 0;
  margin-left: -35px;
}

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

.main-header-two:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: rgba(var(--zeinet-white-rgb), 0.1);
}

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

/* .stricky-header.main-menu-two .main-menu__list > li > a{
  color: black !important;
} */

.main-menu-two__wrapper {
  position: relative;
  display: block;
  padding: 0 60px 0;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: block;
}

.main-menu-two__left {
  position: relative;
  display: block;
  float: left;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 4px 0;
}

.main-menu-two__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-menu-two__right {
  display: block;
  float: right;
}

.main-menu-two__right-inner {
  display: flex;
  align-items: center;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__main-menu-content-box {
  position: relative;
  display: block;
  margin-left: 60px;
  padding: 20px 0;
}

.main-menu-two__search-help-line-btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box .main-menu-two__search+.main-menu-two__search {
  margin-left: 20px;
}

.main-menu-two__search-box:before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: rgba(var(--zeinet-white-rgb), 0.1);
}

.main-menu-two__search {
  font-size: 24px;
  color: var(--zeinet-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--zeinet-base);
}

.main-menu-two__help-line {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 30px;
}

.main-menu-two__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: rgba(var(--zeinet-white-rgb), 0.1);
  border-radius: 50%;
  font-size: 24px;
  color: white;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__help-line-icon:hover {
  background-color: rgba(var(--zeinet-white-rgb), 1);
  color: var(--zeinet-base);
}

.main-menu-two__help-line-content {
  margin-left: 10px;
}

.main-menu-two__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 13px;
}

.main-menu-two__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu-two__help-line-number a {
  color: var(--zeinet-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__help-line-number a:hover {
  color: var(--zeinet-base);
}

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

.main-menu-two__btn:hover {
  color: var(--zeinet-base);
}

.main-menu-two__btn::before {
  background-color: var(--zeinet-white);
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--zeinet-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--zeinet-white);
}

.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 35px;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 999;
}

.stricky-header.main-menu-three {
  background-color: var(--zeinet-white);
}

.main-header-three__top {
  position: relative;
  display: block;
  background-color: #272b30;
  z-index: 1;
}

.main-header-three__top:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 255px;
  content: "";
  background-color: var(--zeinet-black);
  z-index: -1;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 60px 4px;
}

.main-header-three__top-left {
  position: relative;
  display: block;
}

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

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

.main-menu-three__contact-list li+li {
  margin-left: 25px;
}

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

.main-menu-three__contact-list li .icon i {
  font-size: 14px;
  color: var(--zeinet-base);
}

.main-menu-three__contact-list li .text {
  margin-left: 5px;
}

.main-menu-three__contact-list li .text p {
  font-size: 13px;
  color: #a4a9ae;
}

.main-menu-three__contact-list li .text p a {
  color: #a4a9ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--zeinet-base);
}

.main-header-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-menu-box {
  position: relative;
  display: block;
}

.main-header-three__top-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__top-menu li+li {
  margin-left: 25px;
}

.main-header-three__top-menu li a {
  font-size: 13px;
  color: #a4a9ae;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__top-menu li a:hover {
  color: var(--zeinet-base);
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 120px;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--zeinet-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__social a:hover {
  color: var(--zeinet-base);
}

.main-menu-three__social a+a {
  margin-left: 25px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  padding: 0 60px 0;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: block;
}

.main-menu-three__left {
  position: relative;
  display: block;
  float: left;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 34px 0;
}

.main-menu-three__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.main-menu-three__right {
  display: block;
  float: right;
}

.main-menu-three__right-inner {
  display: flex;
  align-items: center;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__main-menu-content-box {
  position: relative;
  display: block;
  margin-left: 180px;
  padding: 33px 0;
}

.main-menu-three__search-help-line-btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box .main-menu-three__search+.main-menu-three__search {
  margin-left: 20px;
}

.main-menu-three__search-box:before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: -20px;
  width: 1px;
  background-color: var(--zeinet-bdr-color);
}

.main-menu-three__search {
  font-size: 24px;
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--zeinet-base);
}

.main-menu-three__help-line {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-right: 30px;
}

.main-menu-three__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--zeinet-extra);
  border-radius: 50%;
  font-size: 24px;
  color: var(--zeinet-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__help-line-icon:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.main-menu-three__help-line-content {
  margin-left: 10px;
}

.main-menu-three__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.main-menu-three__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu-three__help-line-number a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__help-line-number a:hover {
  color: var(--zeinet-base);
}

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

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--zeinet-gray);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--zeinet-black);
}

.main-menu-three .main-menu__list>li,
.stricky-header.main-menu-three .main-menu__list>li {
  padding-top: 43px;
  padding-bottom: 43px;
}

/*--------------------------------------------------------------
# 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: #000000;
  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: 10px;
  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(--zeinet-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--zeinet-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:before {
  width: 150%;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--zeinet-black);
}

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

.main-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider .image-layer:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, 0.5);
  z-index: -1;
}

.main-slider-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-border-two {
  left: 14.29%;
}

.main-slider-border-three {
  left: 28.59%;
}

.main-slider-border-four {
  left: 42.88%;
}

.main-slider-border-five {
  left: 57.17%;
}

.main-slider-border-six {
  left: 71.46%;
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: left;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 20px;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__sub-title:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 2px;
  background-color: var(--zeinet-white);
  transform: rotate(15deg);
}

.main-slider__sub-title:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 15px;
  width: 2px;
  background-color: var(--zeinet-white);
  transform: rotate(15deg);
}

.main-slider__title {
  position: relative;
  font-size: 80px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 90px;
  letter-spacing: -0.04em;
  margin-top: 5px;
  margin-bottom: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__text {
  color: var(--zeinet-white);
  padding-bottom: 31px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .main-slider__text {
  visibility: visible;
  opacity: 0.5;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:hover {
  color: var(--zeinet-base);
}

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

.main-slider__bottom {
  position: absolute;
  bottom: -43px;
  left: 190px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(220px);
  transform: translateX(220px);
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .main-slider__bottom {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__bottom-text {
  font-size: 18px;
  color: var(--zeinet-white);
  font-family: var(--zeinet-reey-font);
  line-height: 28px;
}

.main-slider__icon {
  position: absolute;
  bottom: -10px;
  left: -46px;
}

.main-slider__icon img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__nav {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--zeinet-white-rgb), 0.2);
  border: 2px solid rgba(var(--zeinet-white-rgb), 0.2);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--zeinet-white-rgb), 1);
  border: 2px solid rgba(var(--zeinet-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--zeinet-black);
}

.main-slider-two .container {
  position: relative;
  padding-top: 240px;
  padding-bottom: 130px;
  z-index: 30;
}

.image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-two:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, 0.4);
}

.main-slider-two-shape-1 {
  position: absolute;
  top: 0px;
  right: 159px;
  mix-blend-mode: soft-light;
  opacity: 0.9;
  z-index: 1;
}

.main-slider-two-shape-1 img {
  width: auto;
}

.main-slider-two-shape-2 {
  position: absolute;
  top: 0;
  right: -1px;
  opacity: 0.4;
  mix-blend-mode: overlay;
  z-index: 1;
}

.main-slider-two-shape-2 img {
  width: auto;
}

.main-slider-two-border {
  position: absolute;
  top: 116px;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-two-border-two {
  left: 14.29%;
}

.main-slider-two-border-three {
  left: 28.59%;
}

.main-slider-two-border-four {
  left: 42.88%;
}

.main-slider-two-border-five {
  left: 57.17%;
}

.main-slider-two-border-six {
  left: 71.46%;
}

.main-slider-two__content {
  position: relative;
  display: block;
  margin-right: -30px;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__sub-title-box span {
  font-size: 12px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 12px;
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 1;
}

.main-slider-two__sub-title-box span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--zeinet-white-rgb), 0.2);
  z-index: -1;
}

.main-slider-two__sub-title-box span+span {
  margin-left: 10px;
}

.main-slider-two__title-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title {
  position: relative;
  font-size: 70px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 80px;
  letter-spacing: -0.04em;
}

.main-slider-two__text-1 {
  font-size: 14px;
  color: var(--zeinet-white);
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 21px;
}

.main-slider-two__text-1 i {
  color: var(--zeinet-base);
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.main-slider-two__text-2 {
  color: var(--zeinet-white);
  opacity: 0.4;
}

.main-slider-two__list {
  position: relative;
  display: block;
  margin-top: 22px;
  margin-bottom: 41px;
}

.main-slider-two__list li {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider-two__list li+li {
  margin-top: 8px;
}

.main-slider-two__list li .left {
  position: relative;
  display: block;
  float: left;
  max-width: 50px;
  width: 100%;
}

.main-slider-two__list li .right {
  position: relative;
  display: block;
  float: left;
  margin-left: 30px;
}

.main-slider-two__list li .left p {
  color: var(--zeinet-white);
  font-weight: 800;
  opacity: 0.4;
}

.main-slider-two__list li .right h5 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--zeinet-white);
  line-height: 30px;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn:hover {
  color: var(--zeinet-base);
}

.main-slider-two__btn:before {
  background-color: var(--zeinet-white);
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title-box,
.main-slider-two .swiper-slide-active .main-slider-two__title-box,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two__video-box {
  position: relative;
  display: block;
  margin-top: 109px;
}

.main-slider-two__video-link {
  position: relative;
  display: block;
  float: right;
  z-index: 3;
}

.main-slider-two__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: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 25px;
  color: var(--zeinet-black);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  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;
  z-index: 1;
}

.main-slider-two__video-icon:hover {
  background-color: var(--zeinet-white);
  color: var(--zeinet-white);
}

.main-slider-two__video-icon:before {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  content: "";
  border-radius: 50%;
  background-color: var(--zeinet-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;
  z-index: -1;
}

.main-slider-two__video-icon:hover:before {
  background-color: var(--zeinet-base);
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-two__video-text-box {
  position: absolute;
  bottom: -55px;
  left: -169px;
}

.main-slider-two__video-text {
  font-size: 24px;
  color: var(--zeinet-white);
  line-height: 34px;
  font-family: var(--zeinet-reey-font);
}

.main-slider-two__video-arrow {
  position: absolute;
  bottom: 5px;
  right: -43px;
}

.main-slider-two__video-arrow img {
  width: auto;
}

.main-slider-two__nav {
  position: absolute;
  top: 51%;
  left: 45px;
  z-index: 100;
  transform: translateY(-50%) translateX(0%);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--zeinet-white-rgb), 0.2);
  border: 2px solid rgba(var(--zeinet-white-rgb), 0.2);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider-two__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: rgba(var(--zeinet-white-rgb), 1);
  border: 2px solid rgba(var(--zeinet-white-rgb), 1);
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--zeinet-black);
}

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

.image-layer-three {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-three:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgb(39 43 48 / 69%);
}

.main-slider-three__content {
  position: relative;
  display: block;
  text-align: center;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 20px;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

/* .main-slider-three__sub-title:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 2px;
  background-color: var(--zeinet-white);
  transform: rotate(15deg);
}

.main-slider-three__sub-title:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 15px;
  width: 2px;
  background-color: var(--zeinet-white);
  transform: rotate(15deg);
} */

.main-slider-three__title {
  position: relative;
  font-size: 40px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 90px;
  letter-spacing: -0.04em;
  margin-top: 7px;
  margin-bottom: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.main-slider-three__title span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  right: 0;
  height: 19px;
  width: 211px;
  background-image: url(../images/shapes/main-slider-three-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.main-slider-three__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn:hover {
  color: var(--zeinet-base);
}

.main-slider-three__btn:before {
  background-color: var(--zeinet-white);
}

.main-slider-three__shape-1 {
  position: absolute;
  top: -7px;
  right: 194px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(120px);
  transform: translateX(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__shape-1 img {
  width: auto;
}

.main-slider-three .swiper-slide-active .main-slider-three__shape-1 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
  line-height: 0;
}

.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--zeinet-white-rgb), 0.2);
  border: 2px solid rgba(var(--zeinet-white-rgb), 0.2);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color: rgba(var(--zeinet-white-rgb), 1);
  border: 2px solid rgba(var(--zeinet-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 60px 0 90px;
}

.feature-one__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.feature-one__single:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.feature-one__single-content-box {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding-left: 50px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 80px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-content-box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--zeinet-black);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

.feature-one__single:hover .feature-one__single-content-box:before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.feature-one-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: perspective(380px) translateX(100%);
  transform-origin: right;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one-shape {
  transform: perspective(380px) translateX(0);
  transition: all 900ms ease;
  transition-delay: 0.3s;
}

.feature-one-shape img {
  width: 200px;
  opacity: 0.08;
}

.feature-one__single-inner {
  position: relative;
  display: block;
  padding-left: 185px;
}

.feature-one__content {
  position: absolute;
  top: 13px;
  left: 0;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 15px;
}

.feature-one__title a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--zeinet-white);
}

.feature-one__text {
  font-size: 15px;
  line-height: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__text {
  color: #a4a9ae;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
  height: 104px;
  width: 104px;
  z-index: 1;
}

.feature-one__icon:before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: #272b30;
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  z-index: -1;
}

.feature-one__single:hover .feature-one__icon:before {
  transform: scale(1);
  opacity: 1;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--zeinet-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

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

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

.about-one__left {
  position: relative;
  display: block;
  margin-right: 250px;
}

.about-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

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

.about-one__img-1:after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}

.about-one__img-box:hover .about-one__img-1:after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

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

.about-one__img-2 {
  position: absolute;
  right: -220px;
  bottom: -120px;
  overflow: hidden;
  z-index: 2;
}

.about-one__img-2 img {
  width: auto;
}

.about-one__img-2:after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}

.about-one__img-box:hover .about-one__img-2:after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-one-shape {
  position: absolute;
  top: 90px;
  left: 130px;
  background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  width: 230px;
  height: 387px;
  z-index: -1;
}

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

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

.about-one__text-1 {
  font-size: 18px;
  color: var(--zeinet-primary);
  font-weight: 700;
  line-height: 30px;
}

.about-one__text-2 {
  padding-top: 34px;
  padding-bottom: 29px;
}

.about-one__points {
  position: relative;
  display: inline-block;
  margin-bottom: 41px;
}

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

.about-one__points li .icon {
  width: 15px;
  height: 15px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--zeinet-base);
  border-radius: 50%;
  font-size: 9px;
  justify-content: center;
  color: var(--zeinet-white);
}

.about-one__points li .text {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
}

.about-one__points li .text p {
  color: var(--zeinet-black);
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 120px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.why-choose-one-shape-1 img {
  width: auto;
}

.why-choose-one-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
}

.why-choose-one-shape-2 img {
  width: auto;
}

.why-choose-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 0;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-top: 21px;
  margin-left: 70px;
}

.why-choose-one__bottom {
  position: relative;
  display: block;
}

.why-choose-one__list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -3px;
  margin-left: -3px;
}

.why-choose-one__single {
  position: relative;
  width: 100%;
  padding-right: 3px;
  padding-left: 3px;
  -ms-flex: 0 0 16.6666667%;
  flex: 0 0 16.6666667%;
  max-width: 16.6666667%;
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
  padding: 35px 0 32px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__single:hover .why-choose-one__content {
  transform: translateY(-10px);
}

.why-choose-one__icon {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.why-choose-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--zeinet-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__single:hover .why-choose-one__icon span {
  transform: rotateY(360deg) scale(1.2);
  color: var(--zeinet-primary);
}

.why-choose-one__title {
  font-size: 18px;
  color: var(--zeinet-black);
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

/*--------------------------------------------------------------
# Save Money
--------------------------------------------------------------*/
.save-money {
  position: relative;
  display: block;
  background-color: var(--zeinet-black);
  padding: 120px 0 120px;
  z-index: 1;
}

.save-money-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 68%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
}

.save-money-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: 0;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(48, 53, 58) 0%, rgba(48, 53, 58, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(48, 53, 58) 0%, rgba(48, 53, 58, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(48, 53, 58) 0%, rgba(48, 53, 58, 0) 100%);
}

.save-money-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  mix-blend-mode: color-burn;
  opacity: 0.45;
  z-index: -1;
}

.save-money__left {
  position: relative;
  display: block;
  margin-right: 60px;
}

.save-money__left .section-title {
  margin-bottom: 29px;
}

.save-money__left .section-title__title {
  color: var(--zeinet-white);
}

.save-money__text {
  color: #a4a9ae;
  font-weight: 600;
}

.save-money__bundal {
  position: relative;
  display: flex;
  margin-top: 36px;
  margin-bottom: 42px;
}

.save-money__btn:hover {
  color: var(--zeinet-base);
}

.save-money__btn::before {
  background-color: var(--zeinet-white);
}

.save-money__bundal-icon {
  position: relative;
  display: block;
}

.save-money__bundal-icon span {
  position: relative;
  display: inline-block;
  color: var(--zeinet-base);
  font-size: 64px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.save-money__bundal-icon:hover span {
  transform: scale(0.9);
}

.save-money__bundal-content {
  margin-left: 14px;
}

.save-money__bundal-price {
  font-size: 40px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 40px;
}

.save-money__bundal-price sup {
  top: -10px;
  left: 5px;
  font-size: 0.6em;
}

.save-money__bundal-price span {
  font-size: 16px;
  color: #a4a9ae;
  font-weight: 500;
  letter-spacing: 0;
}

.save-money__bundal-text {
  font-weight: 600;
  color: #08939f;
  line-height: 16px;
}

.save-money__right {
  position: relative;
  display: block;
  margin-right: 30px;
  margin-top: 150px;
}

.save-money__video-link {
  position: relative;
  display: block;
  float: right;
  z-index: 3;
}

.save-money__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: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 25px;
  color: var(--zeinet-white);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  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;
  z-index: 1;
}

.save-money__video-icon:hover {
  background-color: var(--zeinet-white);
  color: var(--zeinet-white);
}

.save-money__video-icon:before {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  content: "";
  border-radius: 50%;
  background-color: #08939f;
  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;
  z-index: -1;
}

.save-money__video-icon:hover:before {
  background-color: var(--zeinet-base);
}

.save-money__video-link .ripple,
.save-money__video-icon .ripple:before,
.save-money__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

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

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

.save-money__video-text-box {
  position: absolute;
  bottom: -55px;
  left: -189px;
}

.save-money__video-text {
  font-size: 24px;
  color: var(--zeinet-white);
  line-height: 34px;
  font-family: var(--zeinet-reey-font);
}

.save-money__video-arrow {
  position: absolute;
  bottom: 5px;
  right: -43px;
}

.save-money__video-arrow img {
  width: auto;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  background-color: var(--zeinet-base);
  padding: 80px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.brand-one-shape-1 {
  position: absolute;
  top: -36px;
  left: 0;
  opacity: 0.2;
  z-index: -1;
}

.brand-one-shape-1 img {
  width: auto;
}

.brand-one-shape-2 {
  position: absolute;
  top: -20px;
  right: 0;
  opacity: 0.2;
  z-index: -1;
}

.brand-one-shape-2 img {
  width: auto;
}

.brand-one .swiper-slide {
  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;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.4;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Plans One
--------------------------------------------------------------*/
.plans-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.plans-one__single {
  position: relative;
  display: block;
  border: 1px solid var(--zeinet-bdr-color);
  padding: 45px 15px 15px;
  margin-bottom: 30px;
}

.plans-one__top {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 54px;
}

.plans-one__sub-title {
  font-size: 14px;
  color: var(--zeinet-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 20px;
}

.plans-one__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 31px;
}

.plans-one__bottom {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 70px 50px 50px;
}

.plans-one__list {
  position: relative;
  display: block;
}

.plans-one__list li {
  position: relative;
  display: flex;
  align-items: center;
}

.plans-one__list li+li {
  margin-top: 9px;
}

.plans-one__list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.plans-one__list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #08939f;
}

.plans-one__list li .text {
  margin-left: 10px;
}

.plans-one__price-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid var(--zeinet-bdr-color);
  padding-top: 26px;
  margin-top: 40px;
}

.plans-one__price-inner {
  position: relative;
  display: inline-block;
  margin-bottom: 23px;
}

.plans-one__price {
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
}

.plans-one__price-dolar {
  font-size: 36px;
  top: -17px;
  left: 10px;
}

.plans-one__price-last-text {
  font-size: 36px;
  top: -17px;
  right: 9px;
}

.plans-one__price-time {
  position: absolute;
  bottom: -3px;
  right: -3px;
}

.plans-one__icon-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  left: 0;
  right: 0;
}

.plans-one__icon-box i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  height: 60px;
  width: 60px;
  font-size: 30px;
  color: #08939f;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.plans-one__icon-box i+i {
  margin-left: 10px;
}

.plans-one__icon-box i:hover {
  color: var(--zeinet-white);
  background-color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-one-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 46%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.12;
  z-index: -1;
}

.testimonial-one__left {
  position: relative;
  display: block;
  z-index: 5;
}

.testimonial-one__right {
  position: relative;
  display: block;
  margin-top: 32px;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
}

.testimonial-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 55px 50px 45px;
  border: 2px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__content {
  border: 2px solid var(--zeinet-base);
}

.testimonial-one__shape-1 {
  position: absolute;
  bottom: -10px;
  left: 60px;
  height: 10px;
  width: 48px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.testimonial-one__shape-2 {
  position: absolute;
  bottom: -12px;
  left: 60px;
  height: 12px;
  width: 51px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__shape-2 {
  opacity: 1;
}

.testimonial-one__quote {
  position: absolute;
  top: -34px;
  left: 50px;
  height: 67px;
  width: 67px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote {
  background-color: var(--zeinet-base);
}

.testimonial-one__quote span {
  font-size: 25px;
  color: var(--zeinet-base);
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote span {
  color: var(--zeinet-white);
}

.testimonial-one__text {
  font-size: 18px;
  line-height: 34px;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-left: 47px;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  width: 77px;
}

.testimonial-one__client-img img {
  border-radius: 50%;
}

.testimonial-one__client-content {
  margin-left: 20px;
}

.testimonial-one__client-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 25px;
}

.testimonial-one__client-sub-title {
  line-height: 22px;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-one__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 119px;
  left: -400px;
  margin: 0;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# All Time Hit
--------------------------------------------------------------*/
.all-time-hit {
  position: relative;
  display: block;
  background-color: var(--zeinet-black);
  padding: 120px 0 90px;
  z-index: 1;
}

.all-time-hit-bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  z-index: -1;
}

.all-time-hit .container {
  max-width: 1500px;
}

.all-time-hit .section-title__title {
  color: var(--zeinet-white);
}

.all-time-hit__list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.all-time-hit__single {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 30px;
}

.all-time-hit__inner {
  position: relative;
  display: block;
}

.all-time-hit__img {
  position: relative;
  display: block;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.all-time-hit__single:hover .all-time-hit__img {
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.3);
}

.all-time-hit__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -webkit-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -ms-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
}

.all-time-hit__img img {
  width: 100%;
}

.all-time-hit-shape {
  position: absolute;
  top: -5px;
  bottom: -5px;
  right: -5px;
  left: -5px;
  background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.all-time-hit__single:hover .all-time-hit-shape {
  transform: scaleY(1);
}

.all-time-hit__video-link {
  position: absolute;
  top: 30px;
  right: 30px;
}

.all-time-hit__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: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  border-radius: 50%;
  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;
  z-index: 1;
}

.all-time-hit__video-icon:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.all-time-hit__video-link .ripple,
.all-time-hit__video-icon .ripple:before,
.all-time-hit__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-black-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-black-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-black-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-black-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.all-time-hit__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.all-time-hit__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.all-time-hit__content {
  position: absolute;
  bottom: 33px;
  left: 40px;
}

.all-time-hit__title {
  font-size: 20px;
  color: var(--zeinet-white);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 4px;
}

.all-time-hit__title a {
  color: inherit;
  transition: all 500ms ease;
}

.all-time-hit__title a:hover {
  color: var(--zeinet-base);
}

.all-time-hit__text {
  font-size: 13px;
  color: #9da6b9;
  letter-spacing: 0.1em;
  line-height: 23px;
  font-weight: 600;
}

.all-time-hit__text i {
  color: var(--zeinet-base);
  padding-left: 9px;
}

.all-time-hit__text span {
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Live Sports
--------------------------------------------------------------*/
.live-sports {
  position: relative;
  display: block;
  z-index: 1;
}

.live-sports-shape-1 {
  position: absolute;
  top: 55px;
  right: -50px;
  opacity: 0.08;
  z-index: -1;
}

.live-sports-shape-1 img {
  width: auto;
}

.live-sports__wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.live-sports__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  min-height: 675px;
}

.live-sports__left:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 435px;
  background-color: var(--zeinet-primary);
  transform: translateY(-50%);
}

.live-sports__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.live-sports__toggle {
  position: absolute;
  top: 70px;
  right: 100px;
  height: 172px;
  width: 172px;
  background-color: var(--zeinet-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 20px 20px 0px rgba(21, 29, 42, 0.1);
  animation: fa-spin 5s ease infinite;
}

.live-sports__toggle:before {
  position: absolute;
  bottom: 0;
  right: 37px;
  content: "";
  height: 10px;
  width: 20px;
  background-repeat: no-repeat;
  background-image: url(../images/shapes/live-sports-toggle-shape.png);
  transform: rotate(-28deg);
}

.live-sports__toggle p {
  font-size: 24px;
  color: var(--zeinet-white);
  line-height: 39px;
  font-family: var(--zeinet-reey-font);
  position: relative;
  top: 8px;
}

.live-sports__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  padding-left: 125px;
  padding-top: 120px;
}

.live-sports__content {
  position: relative;
  display: block;
  max-width: 545px;
  width: 100%;
}

.live-sports__right .section-title {
  margin-bottom: 29px;
}

.live-sports__text {
  padding-bottom: 34px;
}

.live-sports__bottom {
  position: relative;
  display: block;
}

.live-sports__points {
  position: relative;
  display: block;
}

.live-sports__points li {
  position: relative;
  display: flex;
}

.live-sports__points li+li {
  margin-top: 34px;
}

.live-sports__points li .icon {
  position: relative;
  display: block;
}

.live-sports__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--zeinet-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.live-sports__points li:hover .icon span {
  transform: scale(0.9);
}

.live-sports__points li .content {
  margin-left: 35px;
}

.live-sports__points li .content h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  margin-bottom: 6px;
}

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

.news-one:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 525px;
  content: "";
  background-color: var(--zeinet-extra);
  z-index: -1;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

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

.news-one__img-box>a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--zeinet-base);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.news-one__single:hover .news-one__img-box>a {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.news-one__img-box>a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.5);
  z-index: -1;
}

.news-one__img-box img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__img-box img {
  transform: scale(1.05);
}

.news-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 21px 40px 0;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.news-one__single:hover .news-one__content-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.news-one__content {
  position: relative;
  display: block;
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-one__meta li+li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--zeinet-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--zeinet-primary);
}

.news-one__meta li a i {
  color: var(--zeinet-primary);
  padding-right: 5px;
}

.news-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 29px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 25px;
}

.news-one__title a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--zeinet-base);
}

.news-one__bottom {
  position: relative;
  display: block;
  text-align: center;
}

.news-one__read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--zeinet-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--zeinet-bdr-color);
  padding: 10px 0px 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__read-more:hover {
  color: var(--zeinet-base);
}

.news-one__date {
  position: absolute;
  top: -34px;
  left: 0;
  background-color: var(--zeinet-base);
  padding: 12px 20px 12px;
}

.news-one__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--zeinet-white);
  line-height: 10px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Service Available
--------------------------------------------------------------*/
.service-available {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.service-available__inne {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1aa1ae;
  padding: 77px 60px 77px;
  overflow: hidden;
  z-index: 1;
}

.service-available__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.service-available__shape-1 img {
  width: auto;
}

.service-available__shape-2 {
  position: absolute;
  top: 0;
  right: 138px;
  bottom: 0;
  mix-blend-mode: color-dodge;
  opacity: 0.9;
  z-index: -1;
}

.service-available__shape-2 img {
  width: auto;
}

.service-available__shape-3 {
  position: absolute;
  top: 0;
  right: 62px;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  z-index: -1;
}

.service-available__shape-3 img {
  width: auto;
}

.service-available__shape-4 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
}

.service-available__shape-4 img {
  width: auto;
}

.service-available__left {
  position: relative;
  display: block;
}

.service-available__title {
  font-size: 30px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 38px;
}

.service-available__right {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.service-available__form {
  position: relative;
  display: block;
}

.service-available__input-box {
  position: relative;
  display: block;
}

.service-available__input-box input[type=text] {
  height: 80px;
  width: 100%;
  max-width: 600px;
  background-color: #15909c;
  border: 1px solid #31abb6;
  border-radius: 40px;
  font-size: 16px;
  color: var(--zeinet-white);
  padding-left: 40px;
  padding-right: 245px;
  outline: none;
}

.service-available__btn {
  position: absolute;
  top: 50%;
  right: 15px;
  border: 0;
  background-color: var(--zeinet-white);
  color: var(--zeinet-black);
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--zeinet-black);
  z-index: 1;
}

.site-footer-shape-bg {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.09;
  z-index: -1;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-name: shapeMover;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--zeinet-white);
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 27px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 117px 0 111px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: -6px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
}

.footer-widget__about-text {
  color: var(--zeinet-white);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

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

.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(--zeinet-white);
  background-color: #272b30;
  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: var(--zeinet-base);
  background-color: var(--zeinet-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--zeinet-white);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.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__links {
  position: relative;
  display: block;
}

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

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

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #a4a9ae;
  font-weight: 500;
  letter-spacing: var(--zeinet-letter-spacing-two);
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  padding-left: 15px;
  color: var(--zeinet-base);
}

.footer-widget__links-list li a:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  opacity: 0;
  height: 10px;
  width: 2px;
  background-color: var(--zeinet-base);
  transform: rotate(15deg);
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover:before {
  opacity: 1;
}

.footer-widget__links-list li a:after {
  position: absolute;
  top: 9px;
  left: 4px;
  content: "";
  opacity: 0;
  height: 10px;
  width: 2px;
  background-color: var(--zeinet-base);
  transform: rotate(15deg);
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover:after {
  opacity: 1;
}

.footer-widget__meet-us {
  position: relative;
  display: block;
}

.ooter-widget__meet-us-text {
  color: #a3a8ad;
  font-size: 15px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.footer-widget__contact {
  position: relative;
  display: block;
}

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

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

.footer-widget__contact-list li .text {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .text p {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: var(--zeinet-letter-spacing);
}

.footer-widget__contact-list li .text p a {
  position: relative;
  display: inline-block;
  color: var(--zeinet-primary);
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #216b74;
}

.footer-widget__contact-list li:last-child .text p a {
  color: var(--zeinet-white);
}

.footer-widget__contact-list li:last-child .text p a:before {
  display: none;
}

.footer-widget__contact-list li:hover .text p a {
  color: var(--zeinet-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 32px 0;
  background-color: rgb(48, 53, 58);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-text {
  font-size: 15px;
  color: #a3a8ad;
  font-weight: 500;
}

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

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

/*--------------------------------------------------------------
# All Time HIt Two
--------------------------------------------------------------*/
.all-time-hit--two {
  background-color: var(--zeinet-white);
}

.all-time-hit--two .section-title__title {
  color: var(--zeinet-black);
}

/*--------------------------------------------------------------
# featured-one
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0 133px;
  background-color: #f7f5f1;
  overflow: hidden;
  z-index: 1;
}

.feature-two-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.feature-two-shape-1 img {
  width: auto;
}

.feature-two-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  z-index: -1;
}

.feature-two-shape-2 img {
  width: auto;
}

.feature-two__inner {
  position: relative;
  display: block;
}

.feature-two__inner .section-title {
  position: absolute;
  top: -12px;
  left: 0;
  margin: 0;
}

.feature-two__carousel {
  position: relative;
  display: block;
}

.feature-two__single {
  position: relative;
  display: block;
}

.feature-two__left {
  position: relative;
  display: block;
  margin-right: 100px;
  margin-top: 152px;
}

.feature-two__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--zeinet-black);
  line-height: 28px;
  padding-bottom: 24px;
}

.feature-two__text i {
  color: var(--zeinet-base);
  padding-left: 25px;
  padding-right: 5px;
}

.feature-two__text-two {
  line-height: 27px;
}

.feature-two__right {
  position: relative;
  display: block;
  margin-left: 15px;
}

.feature-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.feature-two__img img {
  width: 100%;
}

.feature-two__bg-img {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 555px;
  height: 348px;
  background-image: -moz-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  transform: translateY(-50%);
  z-index: -1;
}

.feature-two__video-link {
  position: absolute;
  bottom: 0;
  right: 0;
}

.feature-two__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: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--zeinet-white);
  background-color: var(--zeinet-primary);
  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;
  z-index: 1;
}

.feature-two__video-icon:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.feature-two__video-link .ripple,
.feature-two__video-icon .ripple:before,
.feature-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101px;
  height: 101px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

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

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

.feature-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 22px;
  left: 0px;
  margin: 0;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.feature-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next:hover,
.feature-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Free Access
--------------------------------------------------------------*/
.free-access {
  position: relative;
  display: block;
  padding: 106px 0 240px;
  overflow: hidden;
  z-index: 1;
}

.free-access-bg {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.free-access-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.6);
}

.free-access-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  z-index: -1;
}

.free-access-shape-1 img {
  width: auto;
}

.free-access-shape-2 {
  position: absolute;
  top: -1px;
  left: 75px;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  z-index: -1;
}

.free-access-shape-2 img {
  width: auto;
}

.free-access-shape-3 {
  position: absolute;
  top: 0;
  left: 243px;
  mix-blend-mode: color-dodge;
  opacity: 0.9;
  z-index: -1;
}

.free-access-shape-3 img {
  width: auto;
}

.free-access__inner {
  position: relative;
  display: block;
  text-align: center;
}

.free-access__title {
  font-size: 60px;
  font-weight: 800;
  color: var(--zeinet-white);
  line-height: 70px;
}

.free-access__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.free-access__title span:before {
  position: absolute;
  bottom: -6px;
  left: -2px;
  right: -6px;
  content: "";
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/shapes/free-access-shape-4.png);
  z-index: -1;
}

.free-access__btn-box {
  position: relative;
  display: block;
  margin-top: 48px;
}

.free-access__btn:hover {
  color: var(--zeinet-base);
}

.free-access__btn::before {
  background-color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  margin-top: -120px;
}

.counter-one__inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 47px 0 28px;
  z-index: 1;
}

.counter-one__inner:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 33px;
}

.counter-one__single:before {
  position: absolute;
  top: 13px;
  bottom: -8px;
  left: 0;
  content: "";
  width: 1px;
  background-color: var(--zeinet-bdr-color);
}

.counter-one__single:first-child:before {
  display: none;
}

.counter-one__count-box {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.counter-one__count-box h3 {
  font-size: 60px;
  color: var(--zeinet-black);
  font-weight: 800;
  line-height: 60px !important;
  font-family: var(--zeinet-font) !important;
}

.counter-one__text {
  position: relative;
  display: inline-block;
  line-height: 26px;
}

/*--------------------------------------------------------------
# Categories One
--------------------------------------------------------------*/
.categories-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.categories-one__left {
  position: relative;
  display: block;
}

.categories-one__left .section-title {
  margin-bottom: 30px;
}

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

.categories-one__btn:hover:before {
  height: 480%;
}

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

.categories-one__right .row {
  --bs-gutter-x: 6px;
}

.categories-one__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--zeinet-extra);
  margin-bottom: 6px;
  padding: 34px 0 37px;
  z-index: 1;
}

.categories-one__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--zeinet-base);
  transform: scale(0, 1);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  z-index: -1;
}

.categories-one__single:hover:before {
  transform: scale(1, 1);
}

.categories-one__icon {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.categories-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--zeinet-base);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.categories-one__single:hover .categories-one__icon span {
  color: var(--zeinet-white);
  transform: scale(0.9);
}

.categories-one__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: var(--zeinet-letter-spacing-two);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.categories-one__single:hover .categories-one__title {
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# All Time Hit Two
--------------------------------------------------------------*/
.all-time-hit-two {
  position: relative;
  display: block;
  background-color: var(--zeinet-black);
  padding: 120px 0 90px;
  z-index: 1;
}

.all-time-hit-two-bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  z-index: -1;
}

.all-time-hit-two__top {
  position: relative;
  display: block;
}

.all-time-hit-two__top-left {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.all-time-hit-two__top-left .section-title {
  margin-bottom: 0;
}

.all-time-hit-two__top-left .section-title__title {
  color: var(--zeinet-white);
}

.all-time-hit-two__top-right {
  position: relative;
  display: block;
  float: right;
  margin-top: 111px;
}

.all-time-hit-two__filter {
  position: relative;
  display: flex;
  align-items: center;
}

.all-time-hit-two__filter.style1 li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.all-time-hit-two__filter.style1 li+li {
  margin-left: 20px;
}

.all-time-hit-two__filter.style1 li .filter-text {
  position: relative;
  display: inline-block;
  color: #a4a9ae;
  font-size: 16px;
  font-weight: 600;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
}

.all-time-hit-two__filter.style1 li .filter-text:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  opacity: 0;
  height: 12px;
  width: 2px;
  background-color: var(--zeinet-base);
  transform: rotate(15deg);
  transition: all 0.4s ease;
}

.all-time-hit-two__filter.style1 li .filter-text:after {
  position: absolute;
  top: 9px;
  left: 6px;
  content: "";
  opacity: 0;
  height: 12px;
  width: 2px;
  background-color: var(--zeinet-base);
  transform: rotate(15deg);
  transition: all 0.4s ease;
}

.all-time-hit-two__filter.style1 li:hover .filter-text:before,
.all-time-hit-two__filter.style1 li:hover .filter-text:after {
  opacity: 1;
}

.all-time-hit-two__filter.style1 li:hover .filter-text,
.all-time-hit-two__filter.style1 li.active .filter-text {
  color: var(--zeinet-base);
}

.all-time-hit-two__filter.style1 li.active .filter-text:before,
.all-time-hit-two__filter.style1 li.active .filter-text:after {
  opacity: 1;
}

.all-time-hit-two__bottom {
  position: relative;
  display: block;
}

.all-time-hit-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
}

.all-time-hit-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.all-time-hit-two__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -webkit-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -ms-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  z-index: 1;
}

.all-time-hit-two__img img {
  width: 100%;
  transition: all 500ms ease;
}

.all-time-hit-two__single:hover .all-time-hit-two__img img {
  transform: scale(1.05);
}

.all-time-hit-two__content {
  position: absolute;
  left: 50px;
  bottom: 53px;
  z-index: 2;
}

.all-time-hit-two__title {
  font-size: 30px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 10px;
}

.all-time-hit-two__title a {
  color: var(--zeinet-white);
  transition: all 500ms ease;
}

.all-time-hit-two__title a:hover {
  color: var(--zeinet-base);
}

.all-time-hit-two__text {
  font-size: 13px;
  color: #9da6b9;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 13px;
}

.all-time-hit-two__text i {
  color: var(--zeinet-base);
  position: relative;
  display: inline-block;
  padding-left: 8px;
}

.all-time-hit-two__text span {
  color: var(--zeinet-white);
}

.all-time-hit-two__content--two {
  left: 40px;
  bottom: 38px;
}

.all-time-hit-two__title--two {
  font-size: 20px;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Watch Devices
--------------------------------------------------------------*/
.watch-devices {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.watch-devices__content {
  position: relative;
  display: block;
  text-align: center;
}

.watch-devices__content .section-title {
  margin-bottom: 29px;
}

.watch-devices__text {
  padding-bottom: 50px;
}

.watch-devices__img-box {
  position: relative;
  display: block;
  margin-right: 130px;
}

.watch-devices__img-box img {
  width: 100%;
}

.watch-devices__price-box {
  position: absolute;
  top: -45px;
  right: 41px;
  height: 114px;
  width: 114px;
  background-color: rgb(254, 144, 67);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fa-spin 5s ease infinite;
  z-index: 1;
}

.watch-devices__price-box:before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
  content: "";
  border-style: solid;
  border-width: 1px;
  border-color: rgb(255, 255, 255);
  border-radius: 50%;
  opacity: 0.4;
}

.watch-devices__price-box-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.watch-devices__price-box h4 {
  font-size: 30px;
  font-weight: 800;
  color: var(--zeinet-white);
  line-height: 30px;
}

.watch-devices__price-box p {
  font-size: 11px;
  color: #ffe3d0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 21px;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
}

.faq-one__wrapper {
  position: relative;
  display: block;
  max-width: 1560px;
  width: 100%;
  background-color: var(--zeinet-extra);
  margin: 0 auto;
  padding: 120px 0 120px;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.faq-one__left .section-title {
  margin-bottom: 35px;
}

.faq-one__left-content {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-one__left-img {
  position: relative;
  display: inline-block;
}

.faq-one__left-img img {
  width: 150px;
  border-radius: 50%;
}

.faq-one__left-text-box {
  margin-left: 30px;
}

.faq-one__right {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 0 30px 0;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 0px 24px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-bottom: 1px solid var(--zeinet-bdr-color);
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
  color: var(--zeinet-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 0px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--zeinet-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--zeinet-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--zeinet-black);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--zeinet-base);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 23px 0px 23px;
  border-bottom: 1px solid var(--zeinet-bdr-color);
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}

.faq-one-accrodion .accrodion.last-chiled .accrodion-title {
  border-bottom: 1px solid transparent;
}

.faq-one-accrodion .accrodion.active.last-chiled .accrodion-title {
  border-bottom: 1px solid var(--zeinet-bdr-color);
}

.faq-one-accrodion .accrodion.last-chiled .accrodion-content {
  border-bottom: 1px solid transparent;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
}

.news-two:before {
  display: none;
}

/*--------------------------------------------------------------
# Wifi Pack
--------------------------------------------------------------*/
.wifi-pack {
  position: relative;
  display: block;
}

.wifi-pack__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px 40px;
  background-color: var(--zeinet-primary);
}

.wifi-pack-shape {
  position: absolute;
  top: 0;
  right: 50px;
  opacity: 0.3;
}

.wifi-pack-shape img {
  width: auto;
}

.wifi-pack__left {
  position: relative;
  display: flex;
  align-items: center;
}

.wifi-pack__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: var(--zeinet-black);
  border-radius: 50%;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.wifi-pack__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--zeinet-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.wifi-pack__icon:hover {
  background-color: var(--zeinet-base);
}

.wifi-pack__icon:hover span {
  transform: scale(0.9);
}

.wifi-pack__content {
  margin-left: 30px;
}

.wifi-pack__price {
  font-size: 30px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 30px;
}

.wifi-pack__price sup {
  position: relative;
  top: -9px;
  left: 5px;
}

.wifi-pack__price span {
  font-size: 16px;
  left: -4px;
  position: relative;
}

.wifi-pace__text {
  font-size: 30px;
  font-weight: 800;
  color: var(--zeinet-white);
  line-height: 32px;
  letter-spacing: var(--zeinet-letter-spacing);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

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

.about-two__left .section-title {
  margin-bottom: 31px;
}

.about-two__points {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li+li {
  margin-left: 50px;
}

.about-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--zeinet-primary);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

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

.about-two__points li .content {
  margin-left: 18px;
}

.about-two__points li .content .title-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li .content .title-box h3 {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--zeinet-font) !important;
  color: var(--zeinet-base);
  line-height: 36px !important;
}

.about-two__points li .content .title-box .letter {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--zeinet-font);
  color: var(--zeinet-base);
  line-height: 36px;
}

.about-two__points li .content p {
  color: var(--zeinet-black);
  font-weight: 800;
  line-height: 26px;
}

.about-two__text {
  padding-top: 38px;
  padding-bottom: 40px;
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 100px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

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

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

.about-two__img-two {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}

.about-two__img-two img {
  width: auto;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 115px;
  background-color: var(--zeinet-extra);
  overflow: hidden;
  z-index: 1;
}

.services-one-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.services-one-shape-1 img {
  width: auto;
}

.services-one-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  z-index: -1;
}

.services-one-shape-2 img {
  width: auto;
}

.services-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.services-one__top-left {
  position: relative;
  display: block;
}

.services-one__top-left .section-title {
  margin-bottom: 0;
}

.services-one__top-right {
  position: relative;
  display: block;
  margin-top: 31px;
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single-inner {
  position: relative;
  display: block;
  padding: 40px 40px 52px;
  overflow: hidden;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  z-index: 1;
}

.services-one__single:hover .services-one__single-inner {
  background-color: var(--zeinet-black);
}

.services-one__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--zeinet-black);
  background-blend-mode: luminosity;
  opacity: 0.08;
  background-position: center top;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-one__single:hover .services-one__single-bg {
  transform: scaleY(1);
}

.services-one__icon {
  position: relative;
  display: block;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 72px;
  color: var(--zeinet-base);
}

.services-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.services-one__title a {
  color: var(--zeinet-black);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.services-one__single:hover .services-one__title a {
  color: var(--zeinet-white);
}

.services-one__text {
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.services-one__single:hover .services-one__text {
  color: #a4a9ae;
}

.services-one__arrow {
  position: absolute;
  bottom: -25px;
  right: 20px;
  z-index: 2;
}

.services-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  height: 50px;
  width: 50px;
  font-size: 15px;
  color: var(--zeinet-black);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.services-one__single:hover .services-one__arrow a {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
  position: relative;
  display: block;
  z-index: 1;
}

.benefits__wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.benefits__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  min-height: 785px;
  z-index: 1;
}

.benefits__left-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.benefits__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  padding-left: 120px;
  padding-top: 120px;
  padding-bottom: 111px;
  background-color: var(--zeinet-black);
  z-index: 1;
}

.benefits-shape-one {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 682px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: color-burn;
  background-color: var(--zeinet-black);
  opacity: 0.35;
  z-index: -1;
}

.benefits__content-box {
  position: relative;
  display: block;
  max-width: 515px;
  width: 100%;
}

.benefits__content-box .section-title {
  margin-bottom: 40px;
}

.benefits__content-box .section-title__title {
  color: var(--zeinet-white);
}

.benefits__text {
  color: #a4a9ae;
  padding-bottom: 48px;
}

.benefits__list-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.benefits__list {
  position: relative;
  display: block;
  max-width: 230px;
  width: 100%;
  float: left;
}

.benefits__list li {
  position: relative;
  display: block;
  padding-left: 60px;
}

.benefits__list li+li {
  margin-top: 46px;
}

.benefits__list li .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid var(--zeinet-base);
  border-radius: 50%;
  left: 0;
  top: 4px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.benefits__list li:hover .icon {
  border: 2px solid var(--zeinet-white);
}

.benefits__list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--zeinet-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: scale(1) rotateY(0deg);
  transform: scale(1) rotateY(0deg);
}

.benefits__list li:hover .icon i {
  -webkit-transform: scale(0.9) rotateY(360deg);
  transform: scale(0.9) rotateY(360deg);
}

.benefits__list li .content {
  position: relative;
  display: block;
}

.benefits__list li .content h4 {
  font-size: 18px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 20px;
  margin-bottom: 13px;
}

.benefits__list li .content p {
  font-size: 15px;
  color: #a4a9ae;
  line-height: 30px;
}

.benefits__list-two {
  margin-left: 45px;
}

/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/
.price {
  position: relative;
  display: block;
  padding: 120px 0 110px;
}

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

.price__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--zeinet-bdr-color);
  background-color: rgb(255, 255, 255);
  padding-left: 60px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.price__single:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.price__main-progress-box {
  position: relative;
  display: block;
}

.price__progress-single {
  position: relative;
  display: flex;
  align-items: center;
}

.price__progress-box {
  position: relative;
  display: inline-block;
}

.price__progress-box canvas {
  transform: rotate(90deg);
}

.price__progress-box .price__pack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

.price__progress-box .price__pack p {
  font-size: 20px;
  font-weight: 800;
  color: var(--zeinet-black);
  line-height: 20px;
}

.price__progress-box .price__pack span {
  position: relative;
  display: block;
  line-height: 20px;
}

.price__progress-content {
  margin-left: 30px;
}

.price__progress-content p {
  font-size: 14px;
  color: var(--zeinet-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 20px;
}

.price__progress-content h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 30px;
}

.price__right-content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.price__right-points {
  position: relative;
  display: block;
  margin-right: 95px;
}

.price__right-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.price__right-points li+li {
  margin-top: 10px;
}

.price__right-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.price__right-points li .icon i {
  font-size: 12px;
  color: var(--zeinet-primary);
  position: relative;
  top: 1px;
}

.price__right-points li .text {
  margin-left: 15px;
}

.price__box {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--zeinet-extra);
  padding: 45px 60px 45px;
}

.price__box-price {
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
}

.price__box-price-dolar {
  font-size: 36px;
  top: -17px;
  left: 10px;
}

.price__box-price-last-text {
  font-size: 36px;
  top: -17px;
  right: 9px;
}

.price__btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--zeinet-extra);
  z-index: 1;
}

.testimonial-two-bg {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  width: 887px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  background-color: var(--zeinet-extra);
  opacity: 0.12;
  z-index: -1;
}

.testimonial-two__left {
  position: relative;
  display: block;
}

.testimonial-two__img {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonial-two__img:before {
  position: absolute;
  top: 50%;
  left: -10px;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  width: 20px;
  height: 390px;
  transform: translateY(-50%);
  z-index: -1;
}

.testimonial-two__img img {
  width: 100%;
}

.testimonial-two__toggle {
  position: absolute;
  bottom: 60px;
  left: 35px;
  height: 172px;
  width: 172px;
  background-color: var(--zeinet-base);
  box-shadow: 0px 20px 20px 0px rgba(21, 29, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fa-spin 5s ease infinite;
  z-index: 1;
}

.testimonial-two__toggle-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.testimonial-two__toggle p {
  font-size: 24px;
  color: var(--zeinet-white);
  line-height: 38px;
  font-family: var(--zeinet-reey-font);
  position: relative;
  top: 5px;
}

.testimonial-two__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.testimonial-two__slider {
  position: relative;
  display: block;
}

.testimonials-two__main-content {
  position: relative;
  display: block;
  margin-bottom: 28px;
}

#testimonials-two__carousel {
  overflow: visible;
}

#testimonials-two__carousel .swiper-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

#testimonials-two__carousel .swiper-slide-active {
  opacity: 1;
  visibility: visible;
}

.testimonial-two__conent-box {
  position: relative;
  display: block;
  padding-left: 200px;
  min-height: 170px;
}

.testimonial-two__conent-img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 170px;
  width: 100%;
}

.testimonial-two__conent-img img {
  width: 100%;
}

.testimonial-two__quote {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  height: 67px;
  width: 67px;
  background-color: var(--zeinet-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zeinet-white);
  font-size: 32px;
}

.testimonial-two__detsils-box {
  position: relative;
  display: block;
}

.testimonial-two__rate {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__rate i {
  font-size: 15px;
  color: var(--zeinet-base);
  position: relative;
  display: inline-block;
}

.testimonial-two__text {
  padding-top: 14px;
  padding-bottom: 19px;
}

.testimonial-two__client {
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0;
}

.testimonial-two__client span {
  color: var(--zeinet-primary);
  font-size: 16px;
  font-weight: 500;
}

#testimonials-two__thumb {
  width: 315px;
  margin-right: auto;
  margin-left: 0;
}

.testimonial-two__img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  width: 90px;
  cursor: pointer;
}

.testimonial-two__img-holder>img {
  width: 90px;
  transition: all 0.5s ease-in-out 0.6s;
}

/*--------------------------------------------------------------
# Entertainment
--------------------------------------------------------------*/
.entertainment {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background-color: var(--zeinet-black);
  z-index: 1;
}

.entertainment-shape-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  z-index: -1;
}

.entertainment .section-title__title {
  color: var(--zeinet-white);
}

.entertainment__single {
  position: relative;
  display: block;
  background-color: rgb(39, 43, 48);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.entertainment__single:hover {
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
}

.entertainment__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.entertainment__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.3);
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.entertainment__single:hover .entertainment__img:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.entertainment__img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.entertainment__single:hover .entertainment__img img {
  transform: scale(1.1) rotate(2deg);
}

.entertainment__hover-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  padding: 20px 30px 33px;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.entertainment__single:hover .entertainment__hover-box {
  transform: scaleY(1);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.entertainment__hover-box:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.9);
  z-index: -1;
}

.entertainment__hover-text {
  font-size: 13px;
  color: var(--zeinet-white);
  letter-spacing: 0.1em;
}

.entertainment__hover-text i {
  color: var(--zeinet-base);
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding-left: 10px;
}

.entertainment__hover-text span {
  font-weight: 600;
}

.entertainment__hover-title {
  font-size: 24px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 24px;
}

.entertainment__hover-title a {
  color: inherit;
  transition: all 500ms ease;
}

.entertainment__hover-title a:hover {
  color: var(--zeinet-base);
}

.entertainment__video-link {
  position: absolute;
  top: -17px;
  right: 30px;
}

.entertainment__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: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  border-radius: 50%;
  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;
  z-index: 1;
}

.entertainment__video-icon:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.entertainment__video-link .ripple,
.entertainment__video-icon .ripple:before,
.entertainment__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

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

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

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
}

.newsletter__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 250px;
  padding-top: 52px;
  padding-bottom: 53px;
}

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

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

.newsletter__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  background: rgb(20, 158, 167);
  background: linear-gradient(90deg, rgb(20, 158, 167) 18%, rgb(250, 144, 69) 91%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.newsletter__content {
  margin-left: 20px;
}

.newsletter__content h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
}

.newsletter__right {
  position: relative;
  display: block;
  max-width: 425px;
  width: 100%;
  margin-top: -25px;
}

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

.newsletter__input-box {
  position: relative;
  display: block;
}

.newsletter__input-box:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #eeebe5;
}

.newsletter__input-box input[type=email] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--zeinet-gray);
  letter-spacing: var(--zeinet-letter-spacing-two);
  outline: none;
}

.newsletter__btn {
  border: none;
  position: absolute;
  top: 73%;
  right: -198px;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 222px 0 150px;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, 0.6);
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 40px;
  color: var(--zeinet-white);
  line-height: 50px;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing);
}

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

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

.thm-breadcrumb li+li {
  margin-left: 2px;
}

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

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

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# News Sidebar
--------------------------------------------------------------*/
.news-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-sidebar__left {
  position: relative;
  display: block;
}

.news-sidebar__content {
  position: relative;
  display: block;
}

.news-sidebar__single {
  position: relative;
  display: block;
}

.news-sidebar__single+.news-sidebar__single {
  margin-top: 39px;
}

.news-sidebar__img {
  position: relative;
  display: block;
}

.news-sidebar__img img {
  width: 100%;
}

.news-sidebar__date {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--zeinet-base);
  padding: 12px 20px 12px;
  z-index: 1;
}

.news-sidebar__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--zeinet-white);
  line-height: 10px;
  text-transform: uppercase;
}

.news-sidebar__content-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-sidebar__meta {
  display: flex;
  align-items: center;
}

.news-sidebar__meta li+li {
  margin-left: 10px;
}

.news-sidebar__meta li a {
  font-size: 14px;
  color: var(--zeinet-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__meta li a:hover {
  color: var(--zeinet-primary);
}

.news-sidebar__meta li a i {
  color: var(--zeinet-primary);
  padding-right: 3px;
}

.news-sidebar__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
  margin-top: 3px;
}

.news-sidebar__title a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__title a:hover {
  color: var(--zeinet-base);
}

.news-sidebar__text {
  margin: 0;
  padding-top: 12px;
  padding-bottom: 11px;
  font-size: 16px;
}

.news-sidebar__bottom {
  display: flex;
  align-items: center;
}

.news-sidebar__read-more {
  font-size: 12px;
  color: var(--zeinet-black);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-sidebar__read-more:hover {
  color: var(--zeinet-base);
}

.news-sidebar__arrow {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--zeinet-black);
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__arrow:hover {
  color: var(--zeinet-base);
}

.news-sidebar__bottom-box {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 60px 60px 56px;
  margin-top: 39px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__bottom-box-icon {
  margin-bottom: 21px;
}

.news-sidebar__bottom-box-text {
  font-size: 16px;
}

.news-sidebar__delivering-services {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 60px 60px 59px;
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__delivering-services-icon {
  margin-bottom: 23px;
}

.news-sidebar__delivering-services-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.news-sidebar__delivering-services-title a {
  color: var(--zeinet-black);
  transition: all 500ms ease;
}

.news-sidebar__delivering-services-title a:hover {
  color: var(--zeinet-base);
}

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

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

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

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

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

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type=search] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 74px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--zeinet-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--zeinet-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--zeinet-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--zeinet-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--zeinet-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--zeinet-white);
}

.sidebar__search-form button[type=submit] {
  background-color: transparent;
  color: var(--zeinet-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: var(--zeinet-extra);
  overflow: hidden;
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: var(--zeinet-white);
}

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

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image>img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--zeinet-gray) !important;
  font-family: var(--zeinet-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--zeinet-base);
  font-size: 15px;
  padding-right: 4px;
}

.sidebar__post-content h3 a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 46px 30px 36px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

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

.sidebar__category-list li a {
  color: var(--zeinet-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  font-weight: 500;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--zeinet-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--zeinet-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--zeinet-base);
  text-align: center;
  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;
  font-size: 15px;
}

.sidebar__category-list li a:hover span {
  color: var(--zeinet-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--zeinet-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--zeinet-extra);
  padding: 46px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 13px;
  color: var(--zeinet-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--zeinet-white);
  display: inline-block;
  padding: 5px 25px 5px;
  margin-left: 5px;
  font-weight: 800;
  border-radius: 20px;
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--zeinet-white);
  background: var(--zeinet-base);
}

.sidebar__comments {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
  padding: 46px 50px 43px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

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

.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}

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

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  font-size: 15px;
  color: var(--zeinet-black);
  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;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

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

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}

.sidebar__comments-text-box p span {
  color: var(--zeinet-black);
}

.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: var(--zeinet-gray);
  font-weight: 500;
  letter-spacing: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--zeinet-base);
  padding: 12px 20px 12px;
  z-index: 1;
}

.news-details__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--zeinet-white);
  line-height: 10px;
  text-transform: uppercase;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 10px;
}

.news-details__meta li a {
  font-size: 14px;
  color: var(--zeinet-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--zeinet-primary);
}

.news-details__meta li a i {
  color: var(--zeinet-primary);
  padding-right: 3px;
}

.news-details__title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 3px;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.news-details__text-1 {
  font-size: 16px;
}

.news-details__text-2 {
  font-size: 16px;
  padding-top: 31px;
}

.news-details__bottom {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid var(--zeinet-extra);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--zeinet-black);
  font-size: 20px;
  margin-right: 14px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.news-details__tags a {
  position: relative;
  color: var(--zeinet-white);
  font-size: 13px;
  background-color: var(--zeinet-base);
  display: inline-block;
  padding: 5px 25px 5px;
  font-weight: 800;
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
}

.news-details__tags a+a {
  margin-left: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list 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(--zeinet-black);
  background-color: var(--zeinet-extra);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--zeinet-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--zeinet-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.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;
}

.news-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.news-details__social-list a+a {
  margin-left: 10px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 54px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: var(--zeinet-black);
  font-weight: 800;
  background-color: var(--zeinet-extra);
  line-height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.news-details__pagenation li+li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--zeinet-black);
  font-size: 30px;
  margin-bottom: 51px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing);
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--zeinet-bdr-color);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--zeinet-black);
  margin-bottom: 26px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.comment-one__content p {
  font-size: 16px;
}

.comment-one__btn {
  padding: 5px 25px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--zeinet-white);
  border-radius: 20px;
}

.comment-one__btn:hover {
  color: var(--zeinet-white);
}

.comment-one__btn:before {
  background-color: var(--zeinet-primary);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type=text],
.comment-form__input-box input[type=email] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  display: block;
  font-weight: 500;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--zeinet-gray);
  height: 190px;
  width: 100%;
  background-color: var(--zeinet-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.comment-form__btn {
  border: none;
}

.comment-form__input-box.text-message-box {
  height: 190px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.service-details__left {
  position: relative;
  display: block;
}

.service-details__category {
  position: relative;
  display: block;
}

.service-details__category-title {
  font-size: 20px;
  color: var(--zeinet-base);
  line-height: 20px;
  display: block;
  background-color: #e4e5ea;
  padding: 20px 50px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-details__category-list {
  position: relative;
  display: block;
}

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

.service-details__category-list li+li {
  margin-top: 10px;
}

.service-details__category-list li a {
  color: var(--zeinet-black);
  font-size: 16px;
  font-weight: 800;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 13px 30px 12px;
  background-color: var(--zeinet-extra);
  z-index: 1;
}

.service-details__category-list li:hover a {
  color: var(--zeinet-white);
}

.service-details__category-list li.active a {
  color: var(--zeinet-white);
}

.service-details__category-list li a:after {
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0;
  right: 0px;
  content: "";
  background-color: var(--zeinet-black);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.service-details__category-list li:hover a:after {
  transform: scaleX(1);
}

.service-details__category-list li.active a:after {
  transform: scaleX(1);
}

.service-details__category-list li a span {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--zeinet-black);
  text-align: center;
  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;
  font-size: 15px;
}

.service-details__category-list li a:hover span {
  color: var(--zeinet-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.service-details__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--zeinet-base);
}

.service-details__need-help {
  position: relative;
  display: block;
  padding: 50px 50px 45px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--zeinet-primary);
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--zeinet-primary);
  opacity: 0.1;
  border-radius: 30px;
  background-blend-mode: luminosity;
  z-index: -1;
}

.service-details__need-help-icon {
  height: 85px;
  width: 85px;
  background-color: var(--zeinet-white);
  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;
  border-radius: 50%;
  margin: 0 auto 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
  background-color: var(--zeinet-base);
}

.service-details__need-help-icon span {
  font-size: 30px;
  color: var(--zeinet-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover span {
  color: var(--zeinet-white);
}

.service-details__need-help-title {
  font-size: 26px;
  color: var(--zeinet-white);
  line-height: 32px;
  font-weight: 800;
  letter-spacing: 0;
}

.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 38px;
}

.service-details__need-help-contact p {
  font-size: 16px;
  color: var(--zeinet-white);
  margin: 0;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.service-details__need-help-contact a {
  font-size: 20px;
  color: var(--zeinet-white);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: var(--zeinet-black);
}

.service-details__download {
  position: relative;
  display: block;
}

.service-details__btn {
  width: 100%;
  text-align: center;
}

.service-details__btn:hover:before {
  height: 580%;
}

.service-details__right {
  position: relative;
  display: block;
}

.service-details__content-box {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-details__img img {
  width: 100%;
}

.service-details__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  margin-bottom: 21px;
}

.service-details__quote {
  position: relative;
  display: block;
  border: 2px solid var(--zeinet-base);
  padding: 15px 40px 22px;
  margin-top: 41px;
  margin-bottom: 41px;
}

.service-details__quote-text {
  font-size: 18px;
  color: var(--zeinet-black);
  font-weight: 800;
  line-height: 30px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.service-details__benefit {
  position: relative;
  display: block;
  margin-top: 56px;
  margin-bottom: 60px;
}

.service-details__benefit-img {
  position: relative;
  display: block;
}

.service-details__benefit-img img {
  width: 100%;
}

.service-details__benefit-content {
  position: relative;
  display: block;
  margin-top: -3px;
}

.service-details__benefit-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
}

.service-details__benefit-text {
  padding-top: 28px;
  padding-bottom: 28px;
}

.service-details__benefit-points {
  position: relative;
  display: block;
}

.service-details__benefit-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__benefit-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--zeinet-base);
  font-size: 9px;
  color: var(--zeinet-white);
}

.service-details__benefit-points li .text {
  margin-left: 10px;
}

.service-details__benefit-points li .text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--zeinet-black);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.contact-page__left {
  position: relative;
  display: block;
}

.contact-page__left .section-title {
  margin-bottom: 30px;
}

.contact-page__contact-list {
  position: relative;
  display: block;
  margin-top: 41px;
}

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

.contact-page__contact-list li+li {
  margin-top: 15px;
}

.contact-page__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border: 2px solid var(--zeinet-base);
  border-radius: 50%;
  font-size: 30px;
  color: var(--zeinet-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li:hover .icon {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.contact-page__contact-list li .content {
  margin-left: 20px;
}

.contact-page__contact-list li .content h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
}

.contact-page__contact-list li .content h4 a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li .content h4 a:hover {
  color: var(--zeinet-base);
}

.contact-page__right {
  position: relative;
  display: block;
}

.contact-page__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.contact-page__content-inner {
  position: relative;
  display: block;
  padding: 60px 80px 60px;
  border: 1px solid var(--zeinet-bdr-color);
  overflow: hidden;
  z-index: 1;
}

.contact-page-shape-1 {
  position: absolute;
  bottom: 0;
  left: 80px;
  z-index: -1;
}

.contact-page-shape-1 img {
  width: auto;
}

.contact-page__right .section-title {
  margin-bottom: 30px;
}

.contact-page__right .section-title__title {
  font-size: 36px;
  margin-top: 0;
  line-height: 46px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__form-input-box input[type=text],
.contact-page__form-input-box input[type=email] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  display: block;
  font-weight: 500;
}

.contact-page__form-input-box textarea {
  font-size: 14px;
  color: var(--zeinet-gray);
  height: 150px;
  width: 100%;
  background-color: var(--zeinet-extra);
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-page__form-input-box.text-message-box {
  height: 150px;
}

.contact-page__btn {
  border: none;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--zeinet-extra);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 530px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Movie Top
--------------------------------------------------------------*/
.movie-top {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.movie-top__left {
  position: relative;
  display: block;
  margin-right: 40px;
}

.movie-top__img {
  position: relative;
  display: block;
}

.movie-top__img img {
  width: 100%;
}

.movie-top__right {
  position: relative;
  display: block;
}

.movie-top__content {
  position: relative;
  display: block;
}

.movie-top__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.movie-top__sub-title-box span {
  font-size: 12px;
  color: var(--zeinet-white);
  font-weight: 800;
  line-height: 12px;
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 1;
}

.movie-top__sub-title-box span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--zeinet-primary);
  z-index: -1;
}

.movie-top__sub-title-box span+span {
  margin-left: 10px;
}

.movie-top__title-box {
  position: relative;
  display: block;
}

.movie-top__title {
  position: relative;
  font-size: 70px;
  color: var(--zeinet-black);
  font-weight: 800;
  line-height: 80px;
  letter-spacing: -0.04em;
}

.movie-top__text-1 {
  font-size: 14px;
  color: var(--zeinet-black);
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 21px;
}

.movie-top__text-1 i {
  color: var(--zeinet-base);
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.movie-top__list-box {
  position: relative;
  display: block;
  margin-top: 31px;
  margin-bottom: 40px;
  overflow: hidden;
}

.movie-top__list {
  position: relative;
  display: block;
  float: left;
  max-width: 280px;
  width: 100%;
}

.movie-top__list li {
  position: relative;
  display: flex;
  align-items: center;
}

.movie-top__list li+li {
  margin-top: 8px;
}

.movie-top__list li .left {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.movie-top__list li .right {
  position: relative;
  display: block;
  margin-left: 10px;
}

.movie-top__list li .left p {
  color: var(--zeinet-black);
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.movie-top__list li .right h5 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
  color: var(--zeinet-base);
  line-height: 30px;
}

.movie-top__btn-box {
  position: relative;
  display: flex;
  align-items: center;
}

.movie-top__btn-2 {
  margin-left: 10px;
  background-color: var(--zeinet-black);
}

.movie-top__btn-2::before {
  background-color: var(--zeinet-base);
}

.movie-top__list-two {
  margin-left: 80px;
}

/*--------------------------------------------------------------
# Trailer And Photo
--------------------------------------------------------------*/
.trailer-and-photo {
  position: relative;
  display: block;
  padding: 96px 0 66px;
}

.trailer-and-photo__left {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.trailer-and-photo__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 26px;
}

.trailer-and-photo__img {
  position: relative;
  display: block;
}

.trailer-and-photo__img img {
  width: 100%;
}

.trailer-and-photo__video-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-and-photo__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: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 16px;
  color: var(--zeinet-black);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  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;
  z-index: 1;
}

.trailer-and-photo__video-icon:hover {
  background-color: var(--zeinet-white);
  color: var(--zeinet-white);
}

.trailer-and-photo__video-icon:before {
  position: absolute;
  top: 35px;
  left: 35px;
  right: 35px;
  bottom: 35px;
  content: "";
  border-radius: 50%;
  background-color: var(--zeinet-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;
  z-index: -1;
}

.trailer-and-photo__video-icon:hover:before {
  background-color: var(--zeinet-base);
}

.trailer-and-photo__video-link .ripple,
.trailer-and-photo__video-icon .ripple:before,
.trailer-and-photo__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.trailer-and-photo__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.trailer-and-photo__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.trailer-and-photo__right {
  position: relative;
  display: block;
}

.trailer-and-photo__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.trailer-and-photo__single-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.trailer-and-photo__single-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(var(--zeinet-primary-rgb), 0.9);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  z-index: 1;
}

.trailer-and-photo__single:hover .trailer-and-photo__single-img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.trailer-and-photo__single-img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.trailer-and-photo__single:hover .trailer-and-photo__single-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.trailer-and-photo__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  z-index: 2;
}

.trailer-and-photo__icon a {
  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;
  border-radius: 50%;
  font-size: 22px;
  color: var(--zeinet-white);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 2;
}

.trailer-and-photo__single:hover .trailer-and-photo__icon a {
  opacity: 1;
}

.trailer-and-photo__icon a:hover {
  color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# Top Cast
--------------------------------------------------------------*/
.top-cast {
  position: relative;
  display: block;
}

.top-cast__inner {
  position: relative;
  display: block;
}

.top-cast__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 30px;
}

.top-cast__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.top-cast__img {
  position: relative;
  display: block;
}

.top-cast__img img {
  width: 100px;
  border-radius: 50%;
}

.top-cast__content {
  margin-left: 20px;
}

.top-cast__content h5 {
  font-size: 18px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: var(--zeinet-letter-spacing-two);
  margin-bottom: 4px;
}

.top-cast__content p {
  font-size: 14px;
  line-height: 26px;
}

.top-cast__bottom {
  position: relative;
  display: block;
  padding-top: 46px;
}

.top-cast__bottom-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 18px;
}

/*--------------------------------------------------------------
# Movie More
--------------------------------------------------------------*/
.movie-more {
  position: relative;
  display: block;
  padding: 87px 0 66px;
}

.movie-more__main-inner {
  position: relative;
  display: block;
}

.movie-more__main-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 26px;
}

.movie-more__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.movie-more__inner {
  position: relative;
  display: block;
}

.movie-more__img {
  position: relative;
  display: block;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.movie-more__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -webkit-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -ms-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
}

.movie-more__img img {
  width: 100%;
}

.movie-more-shape {
  position: absolute;
  top: -5px;
  bottom: -5px;
  right: -5px;
  left: -5px;
  background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  transform: scaleY(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.movie-more__single:hover .movie-more-shape {
  transform: scaleY(1);
}

.movie-more__video-link {
  position: absolute;
  top: 30px;
  right: 30px;
}

.movie-more__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: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--zeinet-black);
  background-color: var(--zeinet-white);
  border-radius: 50%;
  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;
  z-index: 1;
}

.movie-more__video-icon:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.movie-more__video-link .ripple,
.movie-more__video-icon .ripple:before,
.movie-more__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

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

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

.movie-more__content {
  position: absolute;
  bottom: 33px;
  left: 40px;
}

.movie-more__title {
  font-size: 20px;
  color: var(--zeinet-white);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 26px;
  margin-bottom: 4px;
}

.movie-more__text {
  font-size: 13px;
  color: #9da6b9;
  letter-spacing: 0.1em;
  line-height: 23px;
  font-weight: 600;
}

.movie-more__text i {
  color: var(--zeinet-base);
  padding-left: 9px;
}

.movie-more__text span {
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Movie More Review
--------------------------------------------------------------*/
.movie-more-review {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.movie-more-review__box {
  position: relative;
  display: block;
}

.movie-more-review__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 26px;
}

.movie-more-review__single {
  position: relative;
  display: flex;
  border-bottom: 1px solid var(--zeinet-bdr-color);
  padding-bottom: 54px;
  margin-bottom: 60px;
}

.movie-more-review__image {
  position: relative;
  display: block;
}

.movie-more-review__image img {
  width: 165px;
  border-radius: 50%;
}

.movie-more-review__content {
  margin-left: 45px;
}

.movie-more-review__text-box-one {
  position: relative;
  display: flex;
  align-items: center;
}

.movie-more-review__text-box-left {
  position: relative;
  display: block;
}

.movie-more-review__text-box-left p {
  font-size: 14px;
  font-weight: 800;
}

.movie-more-review__text-box-left p span {
  color: var(--zeinet-primary);
}

.movie-more-review__text-box-right {
  margin-left: 15px;
}

.movie-more-review__text-box-right p {
  font-size: 14px;
  color: var(--zeinet-black);
  font-weight: 800;
}

.movie-more-review__text-box-right p i {
  color: var(--zeinet-base);
}

.movie-more-review__title-2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: var(--zeinet-letter-spacing-two);
  margin-top: 3px;
  margin-bottom: 18px;
}

.movie-more-review__form-box {
  position: relative;
  display: block;
}

.movie-more-review__form-box .movie-more-review__title {
  margin-bottom: 17px;
}

.movie-more-review__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.movie-more-review__rate-box p {
  font-size: 18px;
}

.movie-more-review__star {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.movie-more-review__star i {
  font-size: 16px;
  color: var(--zeinet-gray);
  transition: all 500ms ease;
}

.movie-more-review__star i.hover {
  color: var(--zeinet-base);
  opacity: 0.5;
}

.movie-more-review__star i.active {
  color: var(--zeinet-base);
  opacity: 1;
}

.movie-more-review__star i+i {
  margin-left: 5px;
}

.movie-more-review__form {
  position: relative;
  display: block;
}

.movie-more-review__input-box textarea {
  font-size: 14px;
  color: var(--zeinet-gray);
  height: 190px;
  width: 100%;
  background-color: var(--zeinet-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.movie-more-review__input-box.text-message-box {
  height: 190px;
}

.movie-more-review__input-box {
  margin-bottom: 20px;
}

.movie-more-review__input-box input[type=text],
.movie-more-review__input-box input[type=email] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  display: block;
  font-weight: 500;
}

.movie-more-review__btn-box {
  position: relative;
  display: block;
}

.movie-more-review__btn {
  border: none;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-one .container {
  max-width: 1170px;
}

.team-one .row {
  --bs-gutter-x: 70px;
}

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

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

.team-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.3);
  width: 0%;
  transform: translateY(100%);
  border-radius: var(--zeinet-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.team-one__img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.team-one__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 80px;
  padding: 23px 30px 27px;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.team-one__single:hover .team-one__content {
  transform: scaleY(1);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-one__content:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.9);
  z-index: -1;
}

.team-one__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
}

.team-one__name a {
  color: var(--zeinet-white);
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--zeinet-base);
}

.team-one__sub-title {
  font-size: 13px;
  color: #a4a9ae;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 15px;
}

.team-one__social {
  position: absolute;
  top: 30px;
  right: 30px;
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: right center;
  z-index: 3;
}

.team-one__single:hover .team-one__social {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 800ms;
}

.team-one__social li+li {
  margin-top: 10px;
}

.team-one__social li 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(--zeinet-white);
  background-color: var(--zeinet-black);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social li a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--zeinet-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 0;
  -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;
}

.team-one__social li a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 155px 0 55px;
}

.testimonials-page .testimonial-one__single {
  margin-bottom: 65px;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 0px;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-page__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(var(--zeinet-primary-rgb), 0.8);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  z-index: 1;
}

.gallery-page__single:hover .gallery-page__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.gallery-page__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.gallery-page__single:hover .gallery-page__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  z-index: 2;
}

.gallery-page__icon a {
  height: 95px;
  width: 95px;
  background-color: var(--zeinet-base);
  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;
  border-radius: 50%;
  font-size: 22px;
  color: var(--zeinet-white);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 2;
}

.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.gallery-page__icon a:hover {
  background-color: var(--zeinet-white);
  color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.faq-page__left {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 0 30px 0;
}

.faq-page__right {
  position: relative;
  display: block;
}

.faq-page__right .service-details__need-help {
  margin-top: 0;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 63px 0 120px;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display: block;
  z-index: 2;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 800;
  background: rgb(20, 158, 167);
  background: linear-gradient(0deg, rgb(20, 158, 167) 18%, rgb(250, 144, 69) 80%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  margin-bottom: 28px;
  z-index: 2;
}

.error-page__title-2 {
  position: absolute;
  font-size: 350px;
  line-height: 350px;
  font-weight: 800;
  color: var(--zeinet-extra);
  top: 10px;
  left: 12px;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.error-page__title-3 {
  position: absolute;
  font-size: 350px;
  line-height: 350px;
  font-weight: 800;
  background: rgb(20, 158, 167);
  background: linear-gradient(0deg, rgb(20, 158, 167) 18%, rgb(250, 144, 69) 80%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  top: 12px;
  left: 15px;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.error-page__tagline {
  font-size: 40px;
  font-weight: 800;
  line-height: 49px;
  margin-bottom: 14px;
  color: var(--zeinet-black);
}

.error-page__text {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 47px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type=search] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--zeinet-extra);
  font-size: 16px;
  color: var(--zeinet-gray);
  font-weight: 500;
  padding-left: 50px;
  padding-right: 75px;
}

.error-page__form button[type=submit] {
  background-color: transparent;
  color: var(--zeinet-black);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 70px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.about-four__left {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-right: 70px;
}

.about-four__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-four__img-one {
  position: relative;
  display: block;
}

.about-four__img-one img {
  width: 100%;
}

.about-four__img-two {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  z-index: 2;
}

.about-four__img-two img {
  width: auto;
}

.about-four__border {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 2px;
  border-color: rgb(254, 144, 67);
  background-color: rgba(30, 50, 38, 0);
  width: 184px;
  height: 428px;
  z-index: 1;
}

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

.about-four__right .section-title {
  margin-bottom: 29px;
}

.about-four__points {
  position: relative;
  display: inline-block;
  margin-top: 33px;
  margin-bottom: 46px;
}

.about-four__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-four__points li .icon {
  width: 15px;
  height: 15px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--zeinet-base);
  border-radius: 50%;
  font-size: 9px;
  justify-content: center;
  color: var(--zeinet-white);
}

.about-four__points li .text {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
}

.about-four__points li .text p {
  color: var(--zeinet-black);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(230, 225, 216, 0.004);
  border-top: 1px solid var(--zeinet-bdr-color);
  padding: 80px 0 80px;
  z-index: 1;
}

.brand-two .swiper-slide {
  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;
}

.brand-two .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.2;
  max-width: 100%;
}

.brand-two .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Service Available TWo
--------------------------------------------------------------*/
.service-available-two {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

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

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 18px;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100% !important;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 70px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--zeinet-extra) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--zeinet-gray) !important;
  font-size: 14px;
  line-height: 70px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--zeinet-gray);
}

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

.product__all-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.product__all-img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.product__all-img:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--zeinet-black-rgb), 0.5);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 1;
}

.product__all-single:hover .product__all-img:before {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.product__all-img img {
  width: 100%;
  transition: all 500ms ease;
}

.product__all-single:hover .product__all-img img {
  transform: scale(1.05);
}

.product__all-btn-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg) scale(0);
  transition: all 600ms ease;
  z-index: 2;
}

.product__all-single:hover .product__all-btn-box {
  transform: rotate(0deg) scale(1);
  transition-delay: 400ms;
}

.product__all-btn {
  font-size: 13px;
  font-weight: 800;
  padding: 5px 25px 5px;
}

.product__all-content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 14px;
}

.product__all-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.product__all-title a {
  color: var(--zeinet-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.product__all-title a:hover {
  color: var(--zeinet-base);
}

.product__all-price {
  font-weight: 600;
}

.product__all-review {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
}

.product__all-review i {
  font-size: 15px;
  color: var(--zeinet-base);
}

.product__all-review i+i {
  margin-left: 5px;
}

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

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: var(--zeinet-letter-spacing-two);
  margin: 0;
  margin-bottom: 22px;
}

.shop-search {
  position: relative;
  display: block;
}

.shop-search form {
  border-radius: 0px;
  position: relative;
  background-color: var(--zeinet-base);
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 70px;
  background-color: var(--zeinet-base);
  border-radius: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  color: var(--zeinet-white);
  font-family: var(--zeinet-font);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.product__price-ranger {
  position: relative;
  padding: 27px 30px 26px;
  margin: 0;
  border: 1px solid var(--zeinet-bdr-color);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--zeinet-extra);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--zeinet-primary);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--zeinet-primary);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background: var(--zeinet-base);
  float: right;
  text-align: center;
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  margin-top: 0;
  text-transform: capitalize;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--zeinet-gray);
  font-size: 14px;
  font-weight: 600;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--zeinet-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  left: -2px;
}

.shop-category {
  position: relative;
  display: block;
  border: 1px solid var(--zeinet-bdr-color);
  padding: 28px 15px 15px;
}

.shop-category .product__sidebar-title {
  margin-left: 15px;
  margin-bottom: 12px;
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--zeinet-gray);
  margin-bottom: 5px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--zeinet-gray);
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 9px 15px 9px;
}

.shop-category ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--zeinet-extra);
  border-radius: 0px;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-category ul li a:hover:before {
  transform: scaleY(1);
}

.shop-category ul li:hover a,
.shop-category ul li.active a {
  color: var(--zeinet-black);
  font-weight: 500;
  background: var(--zeinet-extra);
}

.shop-category ul li a:after {
  position: absolute;
  right: 15px;
  top: 5px;
  font-family: "icomoon" !important;
  content: "\e904";
  opacity: 1;
  font-size: 10px;
  line-height: 30px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-category ul li a:hover:after,
.shop-category ul li.active a:after {
  color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# Product Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 56px;
}

.product-details__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-details__img img {
  width: 100%;
}

.product-details__top {
  position: relative;
  display: block;
  margin-top: -10px;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 800;
  margin: 0;
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--zeinet-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 21px;
  padding-bottom: 30px;
  margin-bottom: 21px;
  border-bottom: 1px solid var(--zeinet-bdr-color);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--zeinet-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--zeinet-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--zeinet-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 800;
  margin-right: 30px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 0px;
  height: 50px;
  border: 1px solid var(--zeinet-bdr-color);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--zeinet-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--zeinet-gray);
}

.product-details__quantity .quantity-box button {
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: var(--zeinet-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid var(--zeinet-bdr-color);
  border-top-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--zeinet-bdr-color);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.product-details__buttons {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-1 .thm-btn {
  background-color: var(--zeinet-primary);
}

.product-details__buttons-2 {
  position: relative;
  display: block;
  margin-left: 10px;
}

.product-details__social {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--zeinet-black);
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zeinet-black);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--zeinet-extra);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--zeinet-white);
  background-color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# Product Description
--------------------------------------------------------------*/
.product-description {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 50px;
}

.product-description__title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 27px;
}

.product-description__text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--zeinet-black);
  margin: 0;
  font-weight: 600;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--zeinet-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
}

.product-description__tex2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

/*--------------------------------------------------------------
# Review One
--------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
  border-top: 1px solid var(--zeinet-bdr-color);
  padding-top: 56px;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
}

.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--zeinet-bdr-color);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 800;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.review-one__content-top .info h2 span {
  color: var(--zeinet-primary);
  font-size: 16px;
  font-weight: 600;
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--zeinet-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
# Review Form One
--------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0 120px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 27px;
}

.review-form-one__rate-text {
  font-size: 18px;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--zeinet-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--zeinet-gray);
  height: 190px;
  width: 100%;
  background-color: var(--zeinet-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.review-form-one__input-box.text-message-box {
  height: 190px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type=text],
.review-form-one__input-box input[type=email] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  display: block;
  font-weight: 500;
}

.review-form-one__btn {
  border: none;
}

/*--------------------------------------------------------------
# Cart Page
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--zeinet-white);
  padding: 113px 0px 120px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 60px;
}

.cart-table thead th {
  color: var(--zeinet-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
  padding: 0;
  border: none;
  padding-bottom: 22px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid var(--zeinet-bdr-color);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--zeinet-gray);
  vertical-align: middle;
  border-top: 1px solid var(--zeinet-bdr-color);
  border-bottom: 1px solid var(--zeinet-bdr-color);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: var(--zeinet-bdr-radius);
  overflow: hidden;
  margin-right: 35px;
}

.cart-table h3 {
  color: var(--zeinet-black);
  font-size: 20px;
  margin-left: 36px;
  font-weight: 800;
  margin: 0;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.cart-table h3 a {
  color: var(--zeinet-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--zeinet-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 60px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 0px;
  height: 60px;
  border: 1px solid var(--zeinet-bdr-color);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--zeinet-font);
  padding-left: 30px;
  outline: none;
}

.cart-table .quantity-box button {
  width: 29px;
  height: 29px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid var(--zeinet-bdr-color);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--zeinet-bdr-color);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--zeinet-black);
  font-size: 22px;
}

.cart-cupon__form {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.cart-cupon__input {
  width: 100%;
  max-width: 370px;
  border-radius: 0;
  background-color: var(--zeinet-extra);
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 20px;
  font-family: var(--zeinet-font);
  font-size: 14px;
  color: var(--zeinet-gray);
  height: 50px;
  margin-bottom: 20px;
  border: none;
  outline: none;
  font-weight: 500;
}

.cart-cupon__form ::placeholder {
  color: var(--zeinet-gray);
  opacity: 1;
}

.cart-cupon__form button {
  top: -1px;
  border: none;
  outline: none;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 22px;
  margin-top: -9px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--zeinet-gray);
  font-size: 18px;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--zeinet-black);
  font-size: 20px;
  margin-right: 70px;
  font-weight: 800;
  width: 135px;
  text-align: right;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.cart-total li:nth-child(2) span:first-child {
  position: relative;
  right: 6px;
}

.cart-total-amount {
  color: var(--zeinet-primary);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
}

.cart-page__buttons-1 .thm-btn {
  background: var(--zeinet-black);
}

.cart-page__buttons-1 .thm-btn::before {
  background: var(--zeinet-base);
}

.cart-page__buttons-2 {
  position: relative;
  display: block;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 110px 0 120px;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title span {
  color: var(--zeinet-primary);
  font-weight: 600;
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 800;
  margin-top: 17px;
}

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

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type=text],
.billing_input_box input[type=email],
.billing_input_box input[type=tel] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-extra);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  display: block;
  font-weight: 500;
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: -7px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--zeinet-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  font-family: var(--zeinet-font);
}

.billing_details .checked-box input[type=checkbox] {
  display: none;
}

.billing_details .checked-box input[type=checkbox]+label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--zeinet-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 5px;
  left: 6px;
  display: block;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type=checkbox]:checked+label span {
  border-color: #ffffff;
}

.billing_details .checked-box input[type=checkbox]:checked+label span:before {
  opacity: 1;
}

.ship_different_address_title {
  margin-top: 47px;
}

.ship_different_address_title h2 span::before {
  position: relative;
  display: inline-block;
  color: var(--zeinet-base);
  font-size: 20px;
  top: -2px;
  left: 15px;
}

.ship_different_address_form .ship_different_input {
  position: relative;
  display: block;
  height: 120px;
}

.ship_different_address_form .ship_different_input textarea {
  font-size: 14px;
  color: var(--zeinet-gray);
  height: 120px;
  width: 100%;
  background-color: var(--zeinet-extra);
  padding: 15px 30px 20px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0;
  font-weight: 500;
}

.billing_details_form .select-box .nice-select {
  background-color: var(--zeinet-extra);
  border-radius: 0;
  color: var(--zeinet-gray);
  font-size: 14px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.your_order {
  position: relative;
  display: block;
  padding-top: 36px;
}

.your_order h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 56px;
}

.order_table_box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--zeinet-bdr-color);
  padding-bottom: 24px;
}

.order_table_detail {
  position: relative;
  width: 100%;
}

.order_table_head {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--zeinet-bdr-color);
  border-top: 1px solid var(--zeinet-bdr-color);
}

.order_table_head th {
  font-size: 20px;
  color: var(--zeinet-black);
  font-weight: 800;
  margin: 0;
  padding: 23px 0 22px;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.order_table_head th.right {
  float: right;
}

.order_table_detail tbody td {
  padding: 29px 0 2px;
}

.order_table_detail tbody td.pro__title {
  color: var(--zeinet-gray);
  font-size: 16px;
  line-height: 18px;
}

.order_table_detail tbody td.pro__price {
  color: var(--zeinet-gray);
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.checkout__payment {
  background-color: var(--zeinet-extra);
  border-radius: 0;
  padding: 49px 50px 18px;
  margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 41px;
}

.checkout__payment__title {
  display: flex;
  color: var(--zeinet-black);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  align-items: center;
  margin-bottom: 27px;
  cursor: pointer;
  letter-spacing: var(--zeinet-letter-spacing-two);
}

.checkout__payment__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 2px solid var(--zeinet-bdr-color);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__title img {
  margin-left: 15px;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--zeinet-base);
  border-color: var(--zeinet-base);
  content: "\f00c";
}

.checkout__payment__content {
  font-size: 16px;
  line-height: 30px;
  color: var(--zeinet-gray);
}

/*--------------------------------------------------------------
# News Carousel Page
--------------------------------------------------------------*/
.news-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.news-carousel-page .news-one__single {
  margin-bottom: 0;
}

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -48px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--zeinet-primary);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 16px;
  height: 16px;
  background-color: var(--zeinet-base);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Gallery Carousel Page
--------------------------------------------------------------*/
.gallery-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.gallery-carousel-page .gallery-page__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonials-carousel-page {
  position: relative;
  display: block;
  padding: 152px 0 165px;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.team-carousel-page .team-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
  background-color: var(--zeinet-extra);
}

.services-carousel-page .services-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/
body.boxed-wrapper {
  background-color: #f7f5f1;
}

.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

/*-- 20-01-2024 (mosharof)--*/
/*--- # Megamenu Popup --*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--zeinet-white);
  display: block !important;
  margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--zeinet-black);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--zeinet-base);
}

.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.main-menu__right-top::before {
  background-color: var(--zeinet-base);
}

.feature-one__content {
  position: relative;
  top: 0;
}

.feature-one__single-inner {
  padding: 0 100px 0 0;
}

.feature-one__icon {
  position: absolute;
  right: 0;
  top: -12px;
}

.feature-one__single-content-box {
  padding-bottom: 48px;
  padding-top: 43px;
}

@media (max-width: 767px) {
  .feature-one__single-content-box {
    padding-left: 25px;
    padding-right: 22px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .feature-one__single-content-box {
    padding-left: 25px;
    padding-right: 22px;
  }

  .feature-one__single-content-box br {
    display: none;
  }
}

.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.demo-one .row {
  --bs-gutter-y: 30px;
}

.demo-one__card {
  background-color: var(--zeinet-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}

.demo-one__card:hover {
  transform: translateY(-10px);
}

.demo-one__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--zeinet-black);
}

.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.demo-one__title a:hover {
  color: var(--zeinet-base);
  background-size: 100% 1px;
}

.demo-one__image {
  position: relative;
  overflow: hidden;
}

.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.demo-one__image__new {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--zeinet-base);
  border-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-transform: uppercase;
  display: flex;
  z-index: 10;
  color: var(--zeinet-black);
  line-height: 1;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--zeinet-font);
  border-radius: 0;
  transition: all 500ms ease;
}

.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}

.demo-one__btns {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.demo-one .thm-btn {
  font-size: 13px;
  padding: 5px 20px;
  min-width: 130px;
  text-align: center;
  justify-content: center;
}

.demo-one__title {
  padding-top: 30.5px;
  padding-bottom: 30.5px;
}

/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-one__single-inner {
    padding-left: 0;
  }

  .feature-one__content {
    position: relative;
    top: 0;
  }

  .feature-one__icon {
    margin-top: 25px;
  }

  .feature-one__single-content-box {
    padding-top: 43px;
    padding-bottom: 50px;
  }

  .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .about-one__right {
    max-width: 600px;
    margin: 193px auto 0;
  }

  .about-one__img-2 {
    right: -175px;
  }

  .why-choose-one__left .section-title__title {
    font-size: 43px;
    line-height: 53px;
  }

  .why-choose-one__right {
    margin-left: 0;
  }

  .plans-one__bottom {
    padding: 70px 25px 50px;
  }

  .testimonial-one {
    padding: 120px 0 200px;
  }

  .testimonial-one .section-title {
    margin-bottom: 70px;
  }

  .testimonial-one__right {
    margin-top: 0;
  }

  .testimonial-one__carousel.owl-theme .owl-nav {
    bottom: -80px;
    left: 0;
  }

  .all-time-hit__single {
    -ms-flex: 0 0 20%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .live-sports__right {
    padding-left: 50px;
  }

  .live-sports__content .section-title__title {
    font-size: 40px;
    line-height: 50px;
  }

  .live-sports__points li .content p {
    font-size: 15px;
  }

  .news-one__content-box {
    padding: 21px 20px 0;
  }

  .news-one__title {
    font-size: 20px;
  }

  .service-available__inne {
    flex-direction: column;
    text-align: center;
  }

  .service-available__right {
    margin-top: 30px;
  }

  .footer-widget__meet-us {
    margin-top: 37px;
  }

  .footer-widget__contact {
    margin-top: 37px;
  }

  .feature-two__bg-img {
    display: none;
  }

  .feature-two__carousel.owl-theme .owl-nav {
    bottom: -73px;
  }

  .feature-two {
    padding: 120px 0 193px;
  }

  .categories-one {
    padding: 120px 0 114px;
  }

  .faq-one__left {
    margin-right: 0;
  }

  .wifi-pack__inner {
    padding: 40px 20px 40px;
  }

  .about-two__left {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .about-two__right {
    max-width: 600px;
    margin: 0 auto;
  }

  .benefits__left {
    width: 100%;
  }

  .benefits__right {
    width: 100%;
  }

  .price__single {
    padding-left: 15px;
  }

  .price__right-points {
    margin-right: 10px;
  }

  .price__box {
    padding: 45px 40px 45px;
  }

  .testimonial-two__img:before {
    display: none;
  }

  .testimonial-two__right {
    margin-left: 0;
  }

  .newsletter__right {
    max-width: 335px;
  }

  .about-four__left {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .about-four__right {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-page-team .team-one__content {
    right: 30px;
  }

  .contact-page__content-inner {
    padding: 60px 60px 60px;
  }

  .movie-top__list {
    float: none;
  }

  .movie-top__list-two {
    margin-left: 0;
    margin-top: 8px;
  }

  .movie-top__left {
    margin-right: 0;
  }

  .news-details__pagenation li+li {
    margin-left: 0;
    margin-top: 30px;
  }

  .service-details__benefit-content {
    margin-top: 27px;
  }

  .service-details__benefit {
    margin-bottom: 52px;
  }

  .shop-category ul li a {
    font-size: 15px;
  }

  .cart-page .table-responsive {
    margin-bottom: 30px;
  }

  .team-carousel-page .team-one__content {
    right: 30px;
  }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
  }

  .about-one__right {
    max-width: 600px;
    margin: 193px auto 0;
  }

  .about-one__img-2 {
    right: -65px;
  }

  .why-choose-one__top {
    margin-bottom: 51px;
  }

  .why-choose-one__right {
    margin-top: 30px;
    margin-left: 0;
  }

  .why-choose-one__single {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .save-money {
    padding: 120px 0 172px;
  }

  .save-money__right {
    margin-right: 0;
    margin-left: 200px;
    margin-top: 60px;
  }

  .save-money__video-link {
    float: none;
  }

  .testimonial-one {
    padding: 120px 0 200px;
  }

  .testimonial-one .section-title {
    margin-bottom: 70px;
  }

  .testimonial-one__right {
    margin-top: 0;
  }

  .testimonial-one__carousel.owl-theme .owl-nav {
    bottom: -80px;
    left: 0;
  }

  .all-time-hit__single {
    -ms-flex: 0 0 20%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .live-sports__left {
    width: 100%;
  }

  .live-sports__right {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 111px;
  }

  .service-available__inne {
    flex-direction: column;
    text-align: center;
  }

  .service-available__right {
    margin-top: 30px;
  }

  .footer-widget__meet-us {
    margin-top: 37px;
  }

  .footer-widget__contact {
    margin-top: 37px;
  }

  .feature-two__carousel.owl-theme .owl-nav {
    bottom: -73px;
  }

  .feature-two {
    padding: 120px 0 193px;
  }

  .feature-two__left {
    margin-bottom: 32px;
  }

  .free-access__title br {
    display: none;
  }

  .categories-one__left {
    margin-bottom: 50px;
  }

  .categories-one {
    padding: 120px 0 114px;
  }

  .all-time-hit-two__top-right {
    float: none;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .faq-one__left {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .wifi-pack__inner {
    flex-direction: column;
    align-items: baseline;
    padding: 40px 30px 40px;
  }

  .wifi-pace__text {
    font-size: 25px;
  }

  .wifi-pack__left {
    margin-bottom: 30px;
  }

  .about-two__left {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .about-two__right {
    max-width: 600px;
    margin: 0 auto;
  }

  .benefits__left {
    width: 100%;
  }

  .benefits__right {
    width: 100%;
    padding-left: 30px;
  }

  .price__single {
    padding-left: 15px;
    flex-direction: column;
  }

  .price__progress-single {
    margin-bottom: 20px;
  }

  .testimonial-two__right {
    margin-left: 0;
    margin-top: 50px;
  }

  .newsletter__inner {
    align-items: baseline;
    flex-direction: column;
  }

  .newsletter__left {
    margin-bottom: 30px;
  }

  .about-four__left {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .about-four__right {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-page__right {
    margin-top: 50px;
  }

  .faq-page__left {
    margin-bottom: 50px;
  }

  .service-details__btn:hover:before {
    height: 1020%;
  }

  .movie-top__left {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .news-page .news-one__content-box {
    padding: 21px 25px 0;
  }

  .news-details__pagenation li+li {
    margin-left: 0;
    margin-top: 30px;
  }

  .service-details__benefit-content {
    margin-top: 27px;
  }

  .service-details__benefit {
    margin-bottom: 52px;
  }

  .service-details__left {
    margin-bottom: 50px;
  }

  .product__sidebar {
    margin-bottom: 50px;
  }

  .product-details__img {
    margin-bottom: 50px;
  }

  .cart-page .table-responsive {
    margin-bottom: 30px;
  }

  .cart-total li {
    justify-content: flex-start;
  }

  .cart-total li span:first-child {
    text-align: left;
  }

  .cart-page__buttons {
    justify-content: start;
  }

  .checkout__payment {
    margin-top: 50px;
  }

  .news-carousel-page .news-one__content-box {
    padding: 21px 25px 0;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .section-title__title {
    font-size: 35px;
    line-height: 45px;
  }

  .section-title__title br {
    display: none;
  }

  .feature-one__single-inner {
    padding-left: 0;
  }

  .feature-one__content {
    position: relative;
    top: 0;
  }

  .feature-one__icon {
    margin-top: 25px;
  }

  .feature-one__single-content-box {
    padding-top: 43px;
    padding-bottom: 50px;
  }

  .about-one__left {
    margin-right: 0px;
  }

  .about-one__img-2 {
    display: none;
  }

  .about-one-shape {
    display: none;
  }

  .about-one__right {
    margin-top: 50px;
  }

  .why-choose-one__top {
    margin-bottom: 51px;
  }

  .why-choose-one__right {
    margin-top: 30px;
    margin-left: 0;
  }

  .why-choose-one__single {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .save-money {
    padding: 120px 0 172px;
  }

  .save-money__left {
    margin-right: 0;
  }

  .save-money__right {
    margin-right: 0;
    margin-left: 0;
    margin-top: 60px;
  }

  .save-money__video-link {
    float: none;
  }

  .save-money__video-text-box {
    left: 0;
  }

  .save-money__video-arrow {
    display: none;
  }

  .plans-one__bottom {
    padding: 70px 25px 50px;
  }

  .testimonial-one {
    padding: 120px 0 200px;
  }

  .testimonial-one .section-title {
    margin-bottom: 70px;
  }

  .testimonial-one__right {
    margin-top: 0;
  }

  .testimonial-one__carousel.owl-theme .owl-nav {
    bottom: -80px;
    left: 0;
  }

  .testimonial-one-bg {
    display: none;
  }

  .all-time-hit__single {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .live-sports__left {
    width: 100%;
  }

  .live-sports__right {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 111px;
    padding-left: 30px;
  }

  .news-one__content-box {
    padding: 21px 20px 0;
  }

  .news-one__title {
    font-size: 20px;
  }

  .service-available__inne {
    flex-direction: column;
    text-align: center;
    padding: 77px 25px 77px;
  }

  .service-available__right {
    margin-top: 30px;
  }

  .service-available__input-box input[type=text] {
    padding-left: 30px;
    padding-right: 30px;
  }

  .service-available__btn {
    position: relative;
    top: 0;
    right: 0;
    border: 0;
    transform: translateY(0%);
    margin-top: 20px;
  }

  .service-available__title br {
    display: none;
  }

  .footer-widget__links {
    margin-top: 47px;
    margin-bottom: 37px;
  }

  .footer-widget__contact {
    margin-top: 38px;
  }

  .feature-two__carousel.owl-theme .owl-nav {
    bottom: -73px;
  }

  .feature-two {
    padding: 120px 0 193px;
  }

  .feature-two__left {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .feature-two__bg-img {
    display: none;
  }

  .feature-two__right {
    margin-left: 0;
  }

  .feature-two__text-two br {
    display: none;
  }

  .free-access__title br {
    display: none;
  }

  .free-access__title {
    font-size: 50px;
  }

  .counter-one__single {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .categories-one__left {
    margin-bottom: 50px;
  }

  .categories-one {
    padding: 120px 0 114px;
  }

  .all-time-hit-two__top-right {
    float: none;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .all-time-hit-two__filter.style1 li+li {
    margin-left: 15px;
  }

  .watch-devices__img-box {
    margin-right: 0;
  }

  .watch-devices__text br {
    display: none;
  }

  .faq-one__left {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .faq-one__left-content {
    flex-direction: column;
    align-items: baseline;
  }

  .faq-one__left-text-box {
    margin-left: 0;
    margin-top: 20px;
  }

  .wifi-pack__inner {
    padding: 40px 20px 40px;
    flex-direction: column;
  }

  .wifi-pack__left {
    flex-direction: column;
    text-align: center;
  }

  .wifi-pack__content {
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .about-two__points {
    flex-direction: column;
    align-items: baseline;
  }

  .about-two__points li+li {
    margin-left: 0;
    margin-top: 25px;
  }

  .about-two__img-two {
    display: none;
  }

  .about-two__right {
    margin-left: 0;
    margin-top: 50px;
  }

  .benefits__left {
    width: 100%;
    min-height: 500px;
  }

  .benefits__right {
    width: 100%;
    padding-left: 30px;
  }

  .benefits__list {
    float: none;
  }

  .benefits__list-two {
    margin-left: 0;
    margin-top: 47px;
  }

  .price__single {
    padding-left: 15px;
    flex-direction: column;
  }

  .price__progress-single {
    margin-bottom: 20px;
  }

  .price__right-content-box {
    flex-direction: column;
  }

  .price__right-points {
    margin-right: 0;
  }

  .price__right-points {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .price__box {
    padding: 45px 40px 45px;
  }

  .testimonial-two__img:before {
    display: none;
  }

  .testimonial-two__right {
    margin-left: 0;
    margin-top: 50px;
  }

  .testimonial-two__conent-box {
    padding-left: 0;
    min-height: 170px;
  }

  .testimonial-two__conent-img {
    position: relative;
    margin-bottom: 30px;
  }

  .brand-one-shape-1,
  .brand-one-shape-2 {
    display: none;
  }

  .newsletter__inner {
    padding-right: 0;
    flex-direction: column;
    align-items: baseline;
  }

  .newsletter__left {
    margin-bottom: 30px;
  }

  .newsletter__btn {
    position: relative;
    top: 0;
    right: 0;
    transform: translateY(0%);
    margin-top: 30px;
  }

  .newsletter__input-box:before {
    bottom: 80px;
  }

  .newsletter__content h3 {
    font-size: 20px;
  }

  .about-four__left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .about-four__img-two {
    display: none;
  }

  .about-four__border {
    display: none;
  }

  .team-one__content {
    right: 30px;
  }

  .contact-page__right {
    margin-top: 50px;
  }

  .contact-page__content-inner {
    padding: 60px 30px 60px;
  }

  .contact-page__right .section-title__title {
    font-size: 30px;
  }

  .contact-page__contact-list li {
    flex-direction: column;
    align-items: baseline;
  }

  .contact-page__contact-list li .content {
    margin-left: 0;
    margin-top: 15px;
  }

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

  .faq-page__left {
    margin-bottom: 50px;
  }

  .service-details__btn:hover:before {
    height: 900%;
  }

  .movie-top__left {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .movie-top__list {
    float: none;
  }

  .movie-top__list-two {
    margin-left: 0;
    margin-top: 8px;
  }

  .movie-top__title {
    font-size: 46px;
    line-height: 56px;
  }

  .movie-top__btn-box {
    flex-direction: column;
    align-items: baseline;
  }

  .movie-top__btn-2 {
    margin-left: 0;
    margin-top: 10px;
  }

  .movie-more-review__single {
    flex-direction: column;
  }

  .movie-more-review__content {
    margin-left: 0;
    margin-top: 25px;
  }

  .news-details__bottom {
    flex-direction: column;
  }

  .news-details__tags span {
    margin-right: 10px;
  }

  .news-details__social-list {
    margin-top: 20px;
  }

  .news-details__pagenation li+li {
    margin-left: 0;
    margin-top: 30px;
  }

  .news-details__pagenation li {
    padding-left: 40px;
    padding-right: 40px;
  }

  .comment-one__single {
    flex-direction: column;
  }

  .comment-one__content {
    margin-left: 0;
    margin-top: 25px;
  }

  .sidebar__post {
    padding: 46px 20px 30px;
  }

  .sidebar__category {
    padding: 46px 20px 36px;
  }

  .sidebar__tags {
    padding: 46px 15px 50px;
  }

  .sidebar__comments {
    padding: 46px 20px 43px;
  }

  .news-sidebar__bottom-box {
    padding: 60px 20px 56px;
  }

  .news-sidebar__delivering-services {
    padding: 60px 20px 59px;
  }

  .service-available__shape-2,
  .service-available__shape-3 {
    display: none;
  }

  .service-details__benefit-content {
    margin-top: 27px;
  }

  .service-details__benefit {
    margin-bottom: 52px;
  }

  .service-details__left {
    margin-bottom: 50px;
  }

  .testimonial-one__content {
    padding: 55px 20px 45px;
  }

  .product__sidebar {
    margin-bottom: 50px;
  }

  .product__showing-result {
    flex-direction: column;
  }

  .product__showing-text-box {
    margin-bottom: 15px;
  }

  .product-details__img {
    margin-bottom: 50px;
  }

  .product-details__buttons {
    flex-direction: column;
    align-items: baseline;
  }

  .product-details__buttons-2 {
    margin-left: 0;
    margin-top: 10px;
  }

  .product-details__social {
    flex-direction: column;
    align-items: baseline;
  }

  .product-details__social-link {
    margin-left: 0;
    margin-top: 18px;
  }

  .comments-area .comment {
    flex-direction: column;
    align-items: baseline;
  }

  .review-one__content {
    padding-left: 0;
    padding-top: 25px;
  }

  .review-one__content-top {
    flex-direction: column;
    align-items: baseline;
  }

  .cart-page .table-responsive {
    margin-bottom: 30px;
  }

  .cart-total li {
    justify-content: flex-start;
  }

  .cart-total li span:first-child {
    text-align: left;
    margin-right: 40px;
  }

  .cart-page__buttons {
    justify-content: start;
    flex-direction: column;
    align-items: baseline;
  }

  .cart-page__buttons-2 {
    margin-left: 0;
    margin-top: 10px;
  }

  .checkout__payment {
    margin-top: 50px;
    padding: 49px 30px 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1255px) {
  .benefits__right {
    padding-left: 60px;
  }

  .benefits-shape-one {
    left: 0;
  }
}

/*--------------------------------------------------------------
# Slider All Responsice Css
--------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1425px) {
  .main-slider-two__nav {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    align-items: flex-end;
  }

  .main-slider-two__video-box {
    margin-right: 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-slider-two__nav {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    align-items: flex-end;
  }

  .main-slider-two__video-box {
    margin-right: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-slider-two__nav {
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    align-items: flex-end;
  }

  .main-slider-two__video-link {
    float: none;
  }

  .main-slider-two__video-box {
    margin-top: 60px;
    margin-left: 180px;
  }

  .main-slider-two__text-2 {
    margin-right: 150px;
  }

  .main-slider-two .container {
    padding-bottom: 182px;
  }

  .main-slider-three__shape-1 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .main-slider__nav {
    display: none;
  }

  .main-slider__title br {
    display: none;
  }

  .main-slider__title {
    font-size: 45px;
    line-height: 55px;
  }

  .main-slider__bottom {
    left: 135px;
  }

  .main-slider .container {
    padding-top: 255px;
    padding-bottom: 155px;
  }

  .main-slider-two__nav {
    display: none;
  }

  .main-slider-two__title {
    font-size: 45px;
    line-height: 55px;
  }

  .main-slider-two__text-2 {
    margin-right: 30px;
  }

  .main-slider-two__video-link {
    float: none;
  }

  .main-slider-two__video-box {
    margin-top: 60px;
    margin-left: 158px;
  }

  .main-slider-two .container {
    padding-bottom: 182px;
  }

  .main-slider-three__shape-1 {
    display: none;
  }

  .main-slider-three__nav {
    display: none;
  }

  .main-slider-three__title br {
    display: none;
  }

  .main-slider-three__title {
    font-size: 34px;
    line-height: 44px;
  }

  .main-slider-three__title span:before {
    display: none;
  }
}

/*--------------------------------------------------------------
# Main Menu All Responsice Css
--------------------------------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu__right {
    max-width: 680px;
  }

  .main-menu .mobile-nav__toggler {
    display: inline-block;
    padding: 23px 0;
  }

  .main-menu-two .mobile-nav__toggler {
    display: inline-block;
    padding: 30px 0;
  }

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

  .main-menu-three .mobile-nav__toggler {
    display: inline-block;
    padding: 43px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu__right-top {
    display: none;
  }

  .main-menu__right {
    max-width: 440px;
  }

  .main-menu .mobile-nav__toggler {
    display: inline-block;
    padding: 23px 0;
  }

  .main-menu__logo {
    padding: 16.5px 0;
  }

  .main-menu-two__main-menu-content-box {
    margin-left: 50px;
  }

  .main-menu-two__wrapper {
    padding: 0 20px 0;
  }

  .main-menu-two .mobile-nav__toggler {
    display: inline-block;
    padding: 30px 0;
  }

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

  .main-menu-three .mobile-nav__toggler {
    display: inline-block;
    padding: 43px 0;
  }

  .main-header-three__top {
    display: none;
  }

  .main-menu-three__main-menu-content-box {
    margin-left: 50px;
  }

  .main-menu-three__wrapper {
    padding: 0 20px 0;
  }
}

@media (max-width: 767px) {
  .main-menu__right-top {
    display: none;
  }

  .main-menu__main-menu-content-box {
    display: none;
  }

  .main-menu__left {
    max-width: inherit;
    width: auto;
  }

  .main-menu__right {
    max-width: inherit;
    width: auto;
  }

  .main-menu .mobile-nav__toggler {
    display: inline-block;
    padding: 23px 0;
  }

  .main-menu__logo {
    padding: 16.5px 0;
  }

  .main-menu-two__main-menu-content-box {
    display: none;
  }

  .main-menu-two__wrapper {
    padding: 0 20px 0;
  }

  .main-menu-two .mobile-nav__toggler {
    display: inline-block;
    padding: 30px 0;
  }

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

  .main-menu-three .mobile-nav__toggler {
    display: inline-block;
    padding: 43px 0;
  }

  .main-menu-three__main-menu-content-box {
    display: none;
  }

  .main-menu-three__wrapper {
    padding: 0 20px 0;
  }

  .main-header-three__top {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1216px) {
  .main-menu__right {
    max-width: 903px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1480px) {
  .main-menu-two__wrapper {
    padding: 0 20px 0;
  }

  .main-menu-two__search-box {
    display: none;
  }

  .main-menu-two__help-line {
    /* display: none; */
  }

  .main-header-three__top-inner {
    padding: 4px 20px 4px;
  }

  .main-menu-three__wrapper {
    padding: 0 20px 0;
  }

  .main-menu-three__search-box {
    display: none;
  }

  .main-menu-three__help-line {
    display: none;
  }
}

/*-- 20-01-2024 --*/
.thm-btn--home-four {
  border-radius: 0;
  color: var(--zeinet-black);
  padding: 13px 40.5px;
  border: none;
  outline: none;
}

.thm-btn--home-four::before {
  background-color: var(--zeinet-primary);
}

.thm-btn--home-four:hover {
  color: var(--zeinet-white);
}

.thm-btn--two {
  border-radius: 0;
  position: relative;
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
  padding: 13px 40.5px;
  border: none;
  outline: none;
  overflow: hidden;
}

.thm-btn--two::before {
  background-color: var(--zeinet-black);
}

.thm-btn--two span {
  width: 100%;
  height: 12px;
  position: absolute;
  right: -65px;
  bottom: 0;
  background-color: rgba(var(--zeinet-white-rgb), 0.1);
  transform: rotate(-45deg);
}

.thm-btn--two span::after {
  width: 100%;
  height: 25px;
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background-color: rgba(var(--zeinet-white-rgb), 0.1);
}

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

.section-title--home-four {
  position: relative;
}

@media (max-width: 767px) {
  .section-title--home-four {
    margin-bottom: 35px;
  }
}

.section-title--home-four .section-title__tagline {
  color: var(--zeinet-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  padding-left: 25px;
}

.section-title--home-four .section-title__tagline::before {
  width: 20px;
  height: 2px;
  transform: none;
  border-radius: 10px;
  top: 3px;
}

.section-title--home-four .section-title__tagline::after {
  width: 10px;
  height: 2px;
  transform: none;
  border-radius: 10px;
  background-color: var(--zeinet-primary);
  left: 0;
  top: 9px;
}

.section-title--home-four .section-title__title {
  color: var(--zeinet-black2);
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 767px) {
  .section-title--home-four .section-title__title {
    font-size: 32px;
  }
}

.section-title--two {
  position: relative;
}

@media (max-width: 767px) {
  .section-title--two {
    margin-bottom: 35px;
  }
}

.section-title--two .section-title__tagline {
  color: var(--zeinet-base);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  padding-left: 26px;
}

.section-title--two .section-title__tagline::before {
  height: 2px;
  transform: none;
  border-radius: 10px;
  top: 3px;
  background-color: var(--zeinet-base);
  width: 10px;
  left: 10px;
}

.section-title--two .section-title__tagline::after {
  height: 2px;
  transform: none;
  border-radius: 10px;
  left: 0;
  top: 9px;
  background-color: var(--zeinet-black);
  width: 20px;
}

.section-title--two .section-title__title {
  color: var(--zeinet-black);
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 767px) {
  .section-title--two .section-title__title {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header-four {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: auto;
  z-index: 99;
  background-color: transparent;
}

.main-header-four.stricky-header {
  position: fixed;
  top: 0;
  background-color: var(--zeinet-black);
}

.main-header-four.stricky-header .main-menu__wrapper {
  background-color: transparent;
  border: none;
  padding: 0;
}

.main-header-four .main-menu__wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(var(--zeinet-white-rgb), 0.15);
  padding: 0 0 0 29px;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .main-header-four .main-menu__wrapper {
    margin-right: 0;
    padding: 0 15px;
  }
}

.main-header-four .main-menu__left {
  float: none;
}

.main-header-four .main-menu__logo {
  padding: 20px 0;
}

.main-header-four .main-menu .main-menu__list>li>a,
.main-header-four.stricky-header .main-menu__list>li>a {
  color: var(--zeinet-white);
  font-weight: 600;
}

.main-header-four .main-menu .main-menu__list>li>a::after,
.main-header-four.stricky-header .main-menu__list>li>a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 6px;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}

.main-header-four .main-menu .main-menu__list>li.current>a,
.main-header-four .main-menu .main-menu__list>li:hover>a,
.main-header-four.stricky-header .main-menu__list>li.current>a,
.main-header-four.stricky-header .main-menu__list>li:hover>a {
  color: var(--zeinet-base);
}

.main-header-four .main-menu .main-menu__list>li.current>a::after,
.main-header-four .main-menu .main-menu__list>li:hover>a::after,
.main-header-four.stricky-header .main-menu__list>li.current>a::after,
.main-header-four.stricky-header .main-menu__list>li:hover>a::after {
  width: 100%;
  left: 0;
  right: auto;
}

.main-header-four__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: -30px;
}

@media (max-width: 767px) {
  .main-header-four__right {
    margin-right: 0;
  }
}

.main-header-four__right .main-menu__search {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--zeinet-base-rgb), 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--zeinet-white);
  margin-left: 20px;
}

.main-header-four__right .main-menu__search:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-black);
}

.main-header-four__right .thm-btn {
  padding: 10px 20.5px;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .main-header-four__right .thm-btn {
    display: none;
  }
}

.main-header-topbar {
  position: relative;
  background-color: var(--zeinet-base);
}

@media (max-width: 767px) {
  .main-header-topbar {
    display: none;
  }
}

.main-header-topbar__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.main-header-topbar__info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 991px) {
  .main-header-topbar__info {
    gap: 20px;
  }
}

.main-header-topbar__info li {
  color: var(--zeinet-white);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .main-header-topbar__info li {
    gap: 10px;
  }
}

.main-header-topbar__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.main-header-topbar__info li a:hover {
  color: var(--zeinet-white);
  background-size: 100% 1px;
}

.main-header-topbar__info__icon {
  font-size: 18px;
}

.main-header-topbar__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .main-header-topbar__social {
    gap: 12px;
  }
}

.main-header-topbar__social__title {
  margin: 0 10px 0 0;
  color: var(--zeinet-white);
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .main-header-topbar__social__title {
    display: none;
  }
}

.main-header-topbar__social a {
  color: var(--zeinet-white);
  font-size: 14px;
  transition: all 500ms ease;
}

.main-header-topbar__social a:hover {
  color: var(--zeinet-base);
}

.main-header-topbar__right {
  position: absolute;
  right: 0;
  width: 33.7%;
  height: 100%;
  background-color: var(--zeinet-black);
}

.main-header-topbar__right::before {
  position: absolute;
  left: -38px;
  top: 0;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 50px 38px;
  border-color: transparent transparent var(--zeinet-black) transparent;
}

.main-header-five {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 99;
  background-color: var(--zeinet-white);
}

.main-header-five.stricky-header {
  position: fixed;
  top: 0;
  background-color: var(--zeinet-white);
}

.main-header-five.stricky-header .main-menu__wrapper {
  background-color: transparent;
  border: none;
  padding: 0;
}

.main-header-five .main-menu__wrapper {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.main-header-five .main-menu__left {
  float: none;
  min-width: 198px;
}

.main-header-five .main-menu__logo {
  padding: 23px 0;
}

.main-header-five .main-menu .main-menu__list>li,
.main-header-five.stricky-header .main-menu__list>li {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-header-five .main-menu .main-menu__list>li.dropdown,
.main-header-five.stricky-header .main-menu__list>li.dropdown {
  position: relative;
}

.main-header-five .main-menu .main-menu__list>li.dropdown>a::after,
.main-header-five.stricky-header .main-menu__list>li.dropdown>a::after {
  position: absolute;
  content: "+";
  font-size: 14px;
  top: 0;
  right: -16px;
  width: 14px;
  height: 14px;
  color: currentColor;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}

.main-header-five .main-menu .main-menu__list>li>a,
.main-header-five.stricky-header .main-menu__list>li>a {
  color: var(--zeinet-black);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.main-header-five .main-menu .main-menu__list>li.current>a,
.main-header-five .main-menu .main-menu__list>li:hover>a,
.main-header-five.stricky-header .main-menu__list>li.current>a,
.main-header-five.stricky-header .main-menu__list>li:hover>a {
  color: var(--zeinet-base);
}

.main-header-five .main-menu .main-menu__list>li.current>a::after,
.main-header-five .main-menu .main-menu__list>li:hover>a::after,
.main-header-five.stricky-header .main-menu__list>li.current>a::after,
.main-header-five.stricky-header .main-menu__list>li:hover>a::after {
  visibility: visible;
  opacity: 1;
}

.main-header-five__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.main-header-five__right .main-menu__search {
  width: 52px;
  height: 52px;
  background-color: rgba(var(--zeinet-black2-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--zeinet-black);
  margin-left: 20px;
}

.main-header-five__right .main-menu__search:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.main-header-five__right .thm-btn {
  padding: 6px 30px;
  margin-left: 40px;
}

@media (max-width: 767px) {
  .main-header-five__right .thm-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.main-slider-four {
  position: relative;
  background-color: var(--zeinet-black);
}

.main-slider-four__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}

.main-slider-four__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-slider-four__shape-one {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 1745px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: repeat-y;
  background-size: auto;
  animation: cloudMove 10s linear 0s infinite;
}

@keyframes cloudMove {
  0% {
    background-position: 100% -1030px;
  }

  100% {
    background-position: 100% 0;
  }
}

.main-slider-four__shape-two {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 1489px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  animation: zoomBig 5s linear infinite;
}

@media (max-width: 1199px) {
  .main-slider-four__shape-two {
    display: none;
  }
}

@keyframes zoomBig {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.95, 0.95);
  }

  100% {
    transform: scale(1, 1);
  }
}

.main-slider-four__shape-three {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 525px;
  width: 100%;
  height: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (max-width: 1199px) {
  .main-slider-four__shape-three {
    display: none;
  }
}

.main-slider-four__content {
  position: relative;
  z-index: 2;
  padding-top: 400px;
  padding-bottom: 278px;
}

@media (max-width: 1199px) {
  .main-slider-four__content {
    padding-top: 300px;
    padding-bottom: 200px;
  }
}

@media (max-width: 767px) {
  .main-slider-four__content {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}

.main-slider-four__border {
  width: 180px;
  height: 2px;
  background-color: var(--zeinet-white);
  overflow: hidden;
  position: relative;
  margin: 0 0 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-120px);
  transition-delay: 1000ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-four__border::after {
  position: absolute;
  width: 40px;
  height: 2px;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background-color: var(--zeinet-base);
  animation: shapeMove 4s linear 0s infinite;
}

@keyframes shapeMove {

  0%,
  100% {
    width: 40px;
  }

  50% {
    width: 100%;
  }
}

.main-slider-four__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 75px;
  color: var(--zeinet-white);
  margin: 0 0 16px;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-120px);
  transition-delay: 1100ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.main-slider-four__text {
  font-size: 21px;
  line-height: 32px;
  color: var(--zeinet-white);
  margin: 0 0 42px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(120px);
  transition-delay: 1200ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

@media (max-width: 767px) {
  .main-slider-four__text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}

.main-slider-four__btn-box {
  position: relative;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
  transition-delay: 1300ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-four .swiper-slide-active .main-slider-four__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider-four .swiper-slide-active .main-slider-four__border,
.main-slider-four .swiper-slide-active .main-slider-four__title,
.main-slider-four .swiper-slide-active .main-slider-four__text,
.main-slider-four .swiper-slide-active .main-slider-four__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-four__nav {
  position: absolute;
  top: 48.3%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  line-height: 0;
}

@media (max-width: 767px) {
  .main-slider-four__nav {
    flex-direction: row;
    top: auto;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    transform: none;
    gap: 10px;
  }
}

.main-slider-four__nav .swiper-button-next,
.main-slider-four__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--zeinet-white);
  border: 2px solid var(--zeinet-white);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-four__nav .swiper-button-next::after,
.main-slider-four__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-four__nav .swiper-button-next:hover,
.main-slider-four__nav .swiper-button-prev:hover {
  color: var(--zeinet-black);
  border-color: var(--zeinet-base);
  background-color: var(--zeinet-base);
}

.main-slider-four__nav .swiper-button-prev {
  margin-right: 50px;
}

@media (max-width: 767px) {
  .main-slider-four__nav .swiper-button-prev {
    margin: 0;
  }
}

.main-slider-five {
  position: relative;
  background-color: var(--zeinet-black);
}

.main-slider-five__bg {
  position: absolute;
  right: 0;
  top: 0;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  width: 60%;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
  overflow: hidden;
}

@media (max-width: 991px) {
  .main-slider-five__bg {
    display: none;
  }
}

.main-slider-five__left-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 64.8%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (max-width: 1399px) {
  .main-slider-five__left-shape {
    width: 75%;
  }
}

@media (max-width: 1199px) {
  .main-slider-five__left-shape {
    width: 100%;
    background-position: left top;
  }
}

.main-slider-five__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.main-slider-five__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 64.8%;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-200px);
  transition: opacity 1000ms ease, -webkit-transform 1000ms ease;
  transition: transform 1000ms ease, opacity 1000ms ease;
}

@media (max-width: 1199px) {
  .main-slider-five__shape-one {
    display: none;
  }
}

.main-slider-five__shape-two {
  position: absolute;
  left: 25%;
  top: -5px;
  max-width: 64.8%;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-200px);
  transition: opacity 1000ms ease, -webkit-transform 1000ms ease;
  transition: transform 1000ms ease, opacity 1000ms ease;
}

@media (max-width: 1199px) {
  .main-slider-five__shape-two {
    display: none;
  }
}

.main-slider-five__shape-three {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  animation-name: float-bob-x;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1000ms ease, -webkit-transform 1000ms ease;
  transition: transform 1000ms ease, opacity 1000ms ease;
}

@media (max-width: 1199px) {
  .main-slider-five__shape-three {
    display: none;
  }
}

.main-slider-five__content {
  position: relative;
  z-index: 2;
  padding-top: 224px;
  padding-bottom: 240px;
}

@media (max-width: 767px) {
  .main-slider-five__content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.main-slider-five__border {
  width: 180px;
  height: 2px;
  background-color: var(--zeinet-white);
  overflow: hidden;
  position: relative;
  margin: 0 0 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-120px);
  transition-delay: 1000ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-five__border::after {
  position: absolute;
  width: 40px;
  height: 2px;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background-color: var(--zeinet-base);
  animation: shapeMove 4s linear 0s infinite;
}

.main-slider-five__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 75px;
  color: var(--zeinet-white);
  margin: 0 0 16px;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-120px);
  transition-delay: 1100ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

@media (max-width: 767px) {
  .main-slider-five__title {
    font-size: 32px;
    line-height: 40px;
  }
}

.main-slider-five__text {
  font-size: 21px;
  line-height: 32px;
  margin: 0 0 42px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(120px);
  transition-delay: 1200ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

@media (max-width: 991px) {
  .main-slider-five__text {
    font-size: 19px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .main-slider-five__text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}

.main-slider-five__btn-box {
  position: relative;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
  transition-delay: 1300ms;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-five .active .main-slider-five__bg {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
}

.main-slider-five .active .main-slider-five__shape-one {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0);
  transition-delay: 500ms;
}

.main-slider-five .active .main-slider-five__shape-two {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(0);
  transition-delay: 600ms;
}

.main-slider-five .active .main-slider-five__shape-three {
  opacity: 1;
  visibility: visible;
  transition-delay: 600ms;
}

.main-slider-five .active .main-slider-five__border,
.main-slider-five .active .main-slider-five__title,
.main-slider-five .active .main-slider-five__text,
.main-slider-five .active .main-slider-five__btn-box {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.main-slider-five .thm-owl__carousel.owl-carousel {
  position: relative;
}

.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 160px;
  z-index: 99;
  width: 1170px;
  gap: 33px;
  transform: none;
  text-align: left;
}

@media (max-width: 1199px) {
  .main-slider-five .thm-owl__carousel.owl-carousel .owl-dots {
    justify-content: center;
    bottom: 35px;
    text-align: center;
    width: 100%;
  }
}

.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  cursor: pointer;
  opacity: 1;
  background-color: #363C59;
  transition: all 500ms ease;
  border-radius: 0;
  transform: none;
  margin: 0;
  border: none;
  outline: none;
}

.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button::after {
  position: absolute;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  content: "";
  z-index: -1;
  transition: all 500ms ease;
  background-color: rgba(var(--zeinet-gray-rgb), 0.23);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6);
}

.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button span {
  display: none;
}

.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button.active,
.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button:hover {
  background-color: var(--zeinet-base);
}

.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button.active::after,
.main-slider-five .thm-owl__carousel.owl-carousel .owl-dots button:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter-two {
  position: relative;
  background-color: var(--zeinet-primary);
  padding: 68px 0 70px;
}

.newsletter-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter-two__title {
  color: var(--zeinet-white);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .newsletter-two__title {
    font-size: 32px;
  }
}

.newsletter-two__form {
  max-width: 470px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 21px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .newsletter-two__form {
    display: block;
    margin: 30px 0 0;
  }
}

.newsletter-two__form input[type=email] {
  height: 56px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-white);
  font-size: 16px;
  font-weight: 500;
  color: var(--zeinet-gray);
  letter-spacing: 0;
  padding: 0 21px;
  outline: none;
}

@media (max-width: 991px) {
  .newsletter-two__form input[type=email] {
    margin: 0 0 15px;
  }
}

.newsletter-two__form .thm-btn {
  min-width: 175px;
  padding: 13px 30px;
}

.newsletter-two__form .thm-btn::before {
  background-color: var(--zeinet-black);
}

.newsletter-two--home-five {
  background-color: var(--zeinet-black);
}

.newsletter-two--home-five .thm-btn::before {
  background-color: var(--zeinet-white);
}

.newsletter-two--home-five .thm-btn:hover {
  color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-five {
  position: relative;
  padding: 120px 0;
  background-position: bottom right;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .about-five {
    padding: 80px 0;
  }
}

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

@media (max-width: 767px) {
  .about-five__image {
    flex-wrap: wrap;
  }
}

.about-five__image img {
  max-width: 100%;
  border-radius: 250px;
}

.about-five__image__double {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-five__content {
  position: relative;
}

@media (min-width: 1200px) {
  .about-five__content {
    padding-top: 40px;
  }
}

@media (max-width: 991px) {
  .about-five__content {
    padding: 50px 0 0;
  }
}

.about-five__content .section-title {
  margin-bottom: 20px;
}

.about-five__content__text {
  line-height: 32px;
  margin: 0 0 30px;
}

.about-five__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--zeinet-primary);
  border-radius: 10px;
  padding: 24px 31px;
  margin: 0 0 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-five__list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .about-five__list {
    display: block;
  }
}

.about-five__counter {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
  padding: 17px 0 15px;
}

.about-five__counter__number {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--zeinet-white);
}

.about-five__counter__text {
  color: var(--zeinet-white);
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.about-five__counter+.about-five__counter {
  padding-left: 25px;
  border-left: 1px solid var(--zeinet-white);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-five__counter+.about-five__counter {
    padding-left: 10px;
  }
}

@media (max-width: 767px) {
  .about-five__counter+.about-five__counter {
    border-left: none;
    padding-left: 0;
  }
}

.about-six {
  position: relative;
  padding: 40px 0;
}

@media (max-width: 767px) {
  .about-six {
    padding: 80px 0;
  }
}

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

@media (min-width: 1200px) {
  .about-six__image {
    margin-left: -65px;
    padding-right: 70px;
  }
}

@media (max-width: 767px) {
  .about-six__image {
    flex-wrap: wrap;
  }
}

.about-six__image img {
  max-width: 100%;
}

.about-six__image__shape {
  position: absolute;
  left: -77px;
  top: -26px;
  width: 77px;
  height: 80px;
  animation: treeMove 4s linear 0s infinite;
  display: none;
}

@media (min-width: 1300px) {
  .about-six__image__shape {
    display: block;
  }
}

.about-six__image__left {
  position: relative;
}

.about-six__image__left__bar-one {
  width: 50%;
  height: 19px;
  display: block;
  background-color: var(--zeinet-base);
  margin-left: auto;
  margin-top: 26px;
}

.about-six__image__left__bar-two {
  width: 100%;
  height: 19px;
  display: block;
  background-color: var(--zeinet-black);
  margin-left: auto;
  margin-top: 16px;
}

.about-six__image__right {
  position: relative;
}

.about-six__image__right__history {
  position: relative;
  background-color: var(--zeinet-extra);
  max-width: 240px;
  text-align: center;
  padding: 40px 20px 41px;
  margin: 0 0 20px;
}

.about-six__image__right__history__top-angle,
.about-six__image__right__history__bottom-angle,
.about-six__image__right__history__right-angle,
.about-six__image__right__history__left-angle {
  width: 8px;
  height: 8px;
  display: block;
  background-color: var(--zeinet-base);
  position: absolute;
  left: 0;
  top: 0;
  animation: shapeMove3 4s linear 0s infinite;
}

.about-six__image__right__history__right-angle {
  left: auto;
  right: 0;
}

.about-six__image__right__history__top-angle {
  top: auto;
  bottom: 0;
}

.about-six__image__right__history__bottom-angle {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

@keyframes shapeMove3 {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

.about-six__image__right__history::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px dashed var(--zeinet-base);
  opacity: 0.25;
}

.about-six__image__right__history__number {
  background-color: var(--zeinet-white);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: var(--zeinet-black);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--zeinet-font) !important;
  filter: drop-shadow(0px 0px 38px rgba(13, 28, 55, 0.1));
}

.about-six__image__right__history__number .odometer.odometer-auto-theme,
.about-six__image__right__history__number .odometer.odometer-theme-default {
  font-family: var(--zeinet-font);
  line-height: inherit;
}

.about-six__image__right__history__number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 107 116"><path d="M104.811 85.3859C106.185 86.1805 106.661 87.9416 105.802 89.2752C99.825 98.5499 91.3019 105.927 81.2307 110.5C70.2873 115.469 58.0657 116.879 46.2823 114.53C34.4989 112.181 23.7457 106.191 15.5328 97.4035C7.31997 88.6156 2.0601 77.4702 0.491921 65.5326C-1.07625 53.5951 1.12605 41.4651 6.78953 30.8463C12.453 20.2275 21.2931 11.6533 32.0684 6.32793C42.8436 1.00253 55.0127 -0.806528 66.8665 1.15482C77.7749 2.95974 87.912 7.87422 96.0801 15.2817C97.2558 16.3478 97.2512 18.1728 96.1301 19.2963C95.0057 20.4232 93.185 20.4166 91.9995 19.3539C84.687 12.7991 75.6486 8.44851 65.9298 6.84044C55.2614 5.07522 44.3093 6.70338 34.6116 11.4962C24.9138 16.2891 16.9577 24.0059 11.8606 33.5628C6.76344 43.1197 4.78137 54.0367 6.19273 64.7805C7.60409 75.5242 12.338 85.5551 19.7295 93.4643C27.1211 101.373 36.799 106.764 47.4041 108.878C58.0091 110.992 69.0086 109.724 78.8576 105.251C87.8311 101.177 95.4389 94.6285 100.81 86.3987C101.679 85.0665 103.434 84.5892 104.811 85.3859Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: left top;
  mask-size: auto;
  background-color: var(--zeinet-base);
}

.about-six__image__right__history__text {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 19px 0 0;
}

.about-six__content {
  position: relative;
}

@media (min-width: 1200px) {
  .about-six__content {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .about-six__content {
    padding: 50px 0 0;
  }
}

.about-six__content .section-title {
  margin-bottom: 24px;
}

@media (min-width: 1200px) {
  .about-six__content .section-title {
    padding-right: 20px;
  }
}

.about-six__content__text {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 31px;
}

.about-six__content__bar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--zeinet-black-rgb), 0.1);
  margin: 0 0 41px;
}

.about-six__content__bar::after {
  position: absolute;
  width: 50px;
  height: 100%;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background-color: var(--zeinet-base);
  animation: shapeMove2 4s linear 0s infinite;
}

@keyframes shapeMove2 {

  0%,
  100% {
    width: 50px;
  }

  50% {
    width: 100%;
  }
}

.about-six__content .thm-btn--two {
  margin-top: 24px;
}

.about-six__box {
  position: relative;
  min-height: 100px;
  padding: 0 0 0 70px;
}

.about-six__box__icon {
  width: 50px;
  height: 50px;
  background-color: var(--zeinet-extra);
  color: var(--zeinet-base);
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s 0s ease-out;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.about-six__box__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 0;
  content: "";
  background-color: var(--zeinet-base);
  border-radius: 50%;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}

.about-six__box:hover .about-six__box__icon {
  color: var(--zeinet-white);
}

.about-six__box:hover .about-six__box__icon::after {
  background-color: var(--zeinet-base);
  height: 100%;
}

.about-six__box__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 4px;
}

.about-six__box__text {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 0;
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.service-four {
  position: relative;
  background-color: var(--zeinet-extra);
  background-position: left top;
  background-repeat: no-repeat;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .service-four {
    padding: 80px 0;
  }
}

.service-four__btn {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .service-four__btn {
    justify-content: flex-start;
    margin: -20px 0 40px;
  }
}

.service-four__item {
  position: relative;
  min-height: 376px;
  text-align: center;
  margin-bottom: 26px;
}

.service-four__item__normal {
  position: relative;
  background-color: var(--zeinet-white);
  perspective: 300px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 0 0 54px;
  border-radius: 5px;
}

.service-four__item__normal__thumb {
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 270.000000 186.000000"><g transform="translate(0.000000,186.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M0 1187 c0 -524 3 -677 12 -689 7 -8 40 -31 74 -51 39 -23 77 -58 108 -97 33 -43 62 -68 94 -83 l47 -22 -73 -3 c-108 -4 -89 -24 39 -40 75 -9 122 -21 169 -43 62 -29 92 -43 185 -84 52 -23 240 -33 294 -15 30 10 43 10 61 0 43 -23 134 -37 213 -34 44 1 81 5 85 8 3 3 -5 6 -19 6 -13 0 -52 19 -86 42 -62 42 -75 58 -50 58 17 0 146 -68 172 -90 37 -32 131 -44 342 -40 18 0 35 5 38 10 4 6 15 8 25 5 21 -7 38 14 20 25 -19 12 14 20 81 20 68 0 189 21 189 32 0 5 7 8 15 8 8 0 15 5 15 10 0 6 16 10 35 10 40 0 44 -13 15 -50 -11 -14 -20 -28 -20 -32 0 -5 25 -8 56 -8 30 0 53 4 50 9 -7 10 61 31 102 31 39 0 62 31 62 82 0 35 3 39 29 44 17 4 32 12 35 20 3 8 12 14 21 14 17 0 50 17 77 41 13 12 32 14 73 11 36 -3 60 0 71 8 8 8 14 9 13 4 -1 -5 -1 -16 0 -24 1 -12 5 -11 16 4 13 17 15 129 15 798 l0 778 -1350 0 -1350 0 0 -673z m36 -654 c-7 -7 -26 7 -26 19 0 6 6 6 15 -2 9 -7 13 -15 11 -17z"/></g></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  border-radius: 5px 5px 0 0;
}

.service-four__item__normal__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-four__item__normal__icon {
  width: 90px;
  height: 90px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 89 90"><path d="M88.388 47.7861C87.9409 47.473 87.4164 47.4144 86.8907 47.4374C87.23 47.184 87.5274 46.8877 87.6781 46.4731C87.853 45.7737 87.563 45.1382 86.9735 44.8356C87.563 44.5341 87.853 43.8986 87.6781 43.1981C87.5274 42.7856 87.231 42.4893 86.8918 42.2349C87.3902 42.2579 87.8875 42.2066 88.3221 41.9323C88.876 41.5816 89.0655 41.0078 88.9807 40.3744C88.8027 39.0447 87.6268 38.9253 86.563 39.1399C86.8499 38.8269 87.0939 38.4772 87.1619 38.0458C87.163 38.0396 87.1609 38.0354 87.1609 38.0291C87.163 38.0207 87.1661 38.0144 87.1672 38.005C87.2028 37.2826 86.785 36.7256 86.1484 36.5476C86.6719 36.134 86.8384 35.4629 86.5232 34.797C86.2887 34.4138 85.9254 34.1803 85.5327 33.9971C86.6269 33.7804 87.6823 33.1951 87.2823 31.8612C86.8803 30.5211 85.672 30.6205 84.6406 31.0477C84.8626 30.6802 85.0312 30.2897 85.0186 29.8437C85.0186 29.8332 85.0144 29.8259 85.0123 29.8175C85.0123 29.8122 85.0144 29.8081 85.0134 29.8028C84.9066 29.0867 84.3873 28.6365 83.7329 28.5852C84.158 28.0868 84.2072 27.3989 83.7758 26.8168C83.7726 26.8126 83.7685 26.8105 83.7643 26.8063C83.759 26.799 83.758 26.7917 83.7517 26.7854C83.4491 26.4598 83.0512 26.3027 82.6335 26.2012C83.6658 25.774 84.5883 24.9887 83.9245 23.7564C83.2648 22.5304 82.1026 22.8654 81.176 23.4852C81.3236 23.0769 81.4126 22.6592 81.3121 22.2163C81.3068 22.1922 81.2974 22.1723 81.2849 22.1566C81.0346 21.5158 80.4556 21.164 79.8148 21.2384C80.1331 20.6657 80.0326 19.9684 79.4986 19.4941C79.4923 19.4888 79.486 19.4868 79.4798 19.4826C79.4756 19.4784 79.4724 19.4731 79.4672 19.47C79.1101 19.2145 78.6924 19.1392 78.2673 19.1193C79.1709 18.5193 79.9185 17.6011 79.1049 16.5374C78.2285 15.3909 77.1176 15.9312 76.3062 16.7405C76.3711 16.3081 76.3732 15.8798 76.1868 15.461C75.8339 14.8475 75.1628 14.5994 74.5366 14.7983C74.7356 14.1732 74.4874 13.5011 73.8739 13.1482C73.455 12.9608 73.0268 12.964 72.5944 13.0289C73.4037 12.2185 73.9451 11.1076 72.7975 10.2302C71.7337 9.41673 70.8154 10.1643 70.2155 11.0678C70.1966 10.6428 70.1212 10.225 69.8658 9.86799C69.8616 9.86275 69.8563 9.86066 69.8532 9.85542C69.849 9.84914 69.848 9.84286 69.8417 9.83658C69.3674 9.30261 68.67 9.2021 68.0973 9.52038C68.1716 8.87962 67.8188 8.30063 67.179 8.05145C67.1633 8.03888 67.1434 8.02946 67.1194 8.02422C66.6765 7.92371 66.2587 8.01271 65.8503 8.16033C66.4702 7.23374 66.8042 6.07262 65.5792 5.41197C64.3468 4.74817 63.5615 5.67162 63.1343 6.70291C63.0317 6.28621 62.8746 5.8873 62.55 5.58577C62.5438 5.57949 62.5364 5.57739 62.5291 5.5732C62.5249 5.57006 62.5228 5.56483 62.5186 5.56169C61.9375 5.13137 61.2496 5.17953 60.7502 5.60461C60.6989 4.95129 60.2486 4.43093 59.5325 4.32414C59.5272 4.32309 59.523 4.32518 59.5178 4.32518C59.5084 4.32309 59.501 4.3189 59.4916 4.3189C59.0456 4.30529 58.655 4.47386 58.2875 4.69687C58.7147 3.66557 58.8131 2.45838 57.474 2.05529C56.14 1.65429 55.5547 2.71071 55.338 3.80482C55.1548 3.4122 54.9223 3.04994 54.538 2.81436C53.8711 2.49922 53.201 2.66569 52.7874 3.18919C52.6083 2.55261 52.0524 2.13591 51.3299 2.17046C51.3205 2.17046 51.3142 2.17465 51.3058 2.17674C51.2995 2.17674 51.2953 2.17465 51.2891 2.1757C50.8577 2.2448 50.508 2.4877 50.1949 2.77458C50.4095 1.71083 50.2902 0.53505 48.9615 0.357061C48.3594 0.276442 47.8087 0.438726 47.4506 0.949661C47.1365 1.39673 47.0789 1.92128 47.1019 2.44687C46.8485 2.10764 46.5522 1.81029 46.1376 1.65953C45.4382 1.48468 44.8026 1.7747 44.501 2.36416C44.1995 1.77574 43.5639 1.48468 42.8645 1.65953C42.4509 1.81029 42.1546 2.10659 41.9012 2.44477C41.9243 1.9464 41.873 1.44908 41.5986 1.01458C41.2479 0.460713 40.6741 0.271207 40.0406 0.356014C38.7109 0.534003 38.5915 1.70978 38.8072 2.77353C38.4941 2.48665 38.1444 2.2427 37.713 2.17465C37.7068 2.1736 37.7026 2.1757 37.6963 2.1757C37.6879 2.1736 37.6816 2.17046 37.6722 2.16941C36.9497 2.13382 36.3927 2.55157 36.2147 3.18814C35.8011 2.66464 35.13 2.49817 34.4641 2.81332C34.0808 3.04784 33.8473 3.41115 33.6641 3.80378C33.4474 2.70966 32.8621 1.65429 31.5281 2.05424C30.189 2.45629 30.2874 3.66453 30.7146 4.69582C30.3471 4.47386 29.9565 4.30529 29.5105 4.31785C29.5 4.31785 29.4937 4.32204 29.4843 4.32414C29.4791 4.32414 29.4749 4.32309 29.4696 4.32309C28.7545 4.42988 28.3032 4.94919 28.2519 5.60357C27.7535 5.17848 27.0656 5.12928 26.4835 5.56064C26.4793 5.56378 26.4772 5.56797 26.473 5.57216C26.4657 5.57739 26.4583 5.57844 26.452 5.58472C26.1264 5.8873 25.9694 6.28516 25.8678 6.70187C25.4406 5.66953 24.6553 4.74712 23.4229 5.41092C22.1968 6.07053 22.5319 7.23269 23.1518 8.15929C22.7434 8.01166 22.3256 7.92267 21.8827 8.02318C21.8587 8.02841 21.8388 8.03784 21.8231 8.0504C21.1823 8.30063 20.8305 8.87962 20.9048 9.52038C20.3321 9.20314 19.6347 9.30261 19.1604 9.83658C19.1552 9.84286 19.1531 9.84914 19.1489 9.85542C19.1447 9.85961 19.1395 9.86275 19.1363 9.86799C18.8809 10.225 18.8055 10.6428 18.7866 11.0678C18.1867 10.1643 17.2684 9.41673 16.2046 10.2302C15.0581 11.1066 15.5984 12.2175 16.4077 13.0289C15.9753 12.964 15.5471 12.9619 15.1282 13.1482C14.5147 13.5 14.2665 14.1722 14.4655 14.7983C13.8404 14.5994 13.1682 14.8475 12.8153 15.461C12.6279 15.8798 12.631 16.3081 12.6959 16.7405C11.8855 15.9312 10.7736 15.3899 9.89719 16.5374C9.08363 17.6011 9.83122 18.5193 10.7348 19.1193C10.3097 19.1381 9.89195 19.2135 9.53491 19.47C9.52967 19.4742 9.52758 19.4784 9.52234 19.4826C9.51606 19.4868 9.50978 19.4878 9.5035 19.4941C8.9695 19.9684 8.86899 20.6657 9.18729 21.2384C8.54754 21.164 7.96748 21.5169 7.71723 22.1566C7.70467 22.1723 7.69525 22.1922 7.69001 22.2163C7.5895 22.6592 7.67849 23.0769 7.82613 23.4852C6.89949 22.8654 5.73832 22.5314 5.07763 23.7564C4.4138 24.9887 5.3373 25.774 6.36864 26.2012C5.95191 26.3038 5.55299 26.4608 5.25039 26.7854C5.24411 26.7917 5.24202 26.799 5.23783 26.8063C5.23469 26.8105 5.2305 26.8116 5.22631 26.8168C4.79597 27.3979 4.84414 28.0857 5.26924 28.5852C4.61588 28.6365 4.0955 29.0867 3.9887 29.8028C3.98765 29.8081 3.98975 29.8122 3.98975 29.8175C3.98765 29.8269 3.98346 29.8342 3.98346 29.8437C3.96985 30.2897 4.13843 30.6802 4.3604 31.0477C3.32906 30.6205 2.12181 30.5221 1.7187 31.8612C1.31768 33.1951 2.37415 33.7804 3.46832 33.9971C3.07567 34.1803 2.7134 34.4128 2.47781 34.797C2.16265 35.4639 2.32913 36.134 2.85265 36.5476C2.21605 36.7266 1.79932 37.2826 1.83388 38.005C1.83492 38.0144 1.83807 38.0207 1.84016 38.0291C1.84016 38.0354 1.83807 38.0396 1.83911 38.0458C1.90822 38.4772 2.15113 38.8259 2.43802 39.1399C1.37422 38.9253 0.19839 39.0447 0.0203916 40.3744C-0.060231 40.9764 0.102061 41.5271 0.611973 41.8852C1.05906 42.1982 1.58363 42.2569 2.10925 42.2338C1.77001 42.4872 1.47265 42.7835 1.32187 43.1981C1.14701 43.8975 1.43705 44.533 2.02653 44.8356C1.43705 45.1372 1.14701 45.7727 1.32187 46.4731C1.47265 46.8867 1.76896 47.1819 2.1082 47.4364C1.60981 47.4133 1.11246 47.4646 0.677937 47.7389C0.124049 48.0897 -0.0654663 48.6634 0.0193446 49.2969C0.197343 50.6266 1.37318 50.7459 2.43698 50.5313C2.15009 50.8443 1.90612 51.194 1.83807 51.6254C1.83702 51.6317 1.83911 51.6359 1.83911 51.6422C1.83702 51.6505 1.83388 51.6568 1.83283 51.6662C1.79723 52.3887 2.215 52.9457 2.85161 53.1237C2.32808 53.5372 2.1616 54.2083 2.47676 54.8742C2.7113 55.2574 3.07463 55.4909 3.46727 55.6741C2.37311 55.8909 1.31768 56.4761 1.71765 57.81C2.11972 59.1502 3.32801 59.0507 4.35935 58.6235C4.13738 58.991 3.96881 59.3816 3.98137 59.8276C3.98137 59.8381 3.98556 59.8454 3.98765 59.8538C3.98765 59.859 3.98556 59.8632 3.98661 59.8684C4.0934 60.5846 4.61274 61.0348 5.26714 61.0861C4.84204 61.5844 4.79283 62.2723 5.22422 62.8545C5.22736 62.8586 5.23154 62.8607 5.23573 62.8649C5.24097 62.8723 5.24202 62.8796 5.2483 62.8859C5.55089 63.2115 5.94877 63.3685 6.36654 63.4701C5.33416 63.8973 4.41171 64.6825 5.07553 65.9148C5.73517 67.1409 6.8974 66.8058 7.82403 66.186C7.6764 66.5943 7.5874 67.0121 7.68792 67.455C7.69315 67.479 7.70258 67.4989 7.71514 67.5146C7.96538 68.1554 8.5444 68.5072 9.18519 68.4329C8.86689 69.0056 8.96741 69.7029 9.5014 70.1772C9.50768 70.1824 9.51397 70.1845 9.52025 70.1887C9.52444 70.1929 9.52758 70.1981 9.53281 70.2012C9.88986 70.4567 10.3076 70.5321 10.7327 70.552C9.82913 71.1519 9.08154 72.0701 9.89509 73.1339C10.7715 74.2803 11.8824 73.7401 12.6938 72.9308C12.6289 73.3632 12.6268 73.7914 12.8132 74.2102C13.1661 74.8237 13.8372 75.0719 14.4634 74.8729C14.2644 75.498 14.5126 76.1702 15.1261 76.522C15.545 76.7094 15.9732 76.7062 16.4056 76.6413C15.5963 77.4517 15.0549 78.5636 16.2025 79.4399C17.2663 80.2535 18.1846 79.5059 18.7845 78.6023C18.8034 79.0274 18.8788 79.4452 19.1342 79.8022C19.1384 79.8074 19.1426 79.8095 19.1468 79.8148C19.151 79.8211 19.152 79.8273 19.1583 79.8336C19.6326 80.3676 20.3289 80.4681 20.9027 80.1498C20.8284 80.7906 21.1812 81.3696 21.821 81.6198C21.8367 81.6324 21.8566 81.6418 21.8806 81.647C22.3235 81.7475 22.7413 81.6585 23.1497 81.5109C22.5298 82.4375 22.1958 83.5986 23.4208 84.2593C24.6532 84.9231 25.4385 83.9996 25.8657 82.9683C25.9683 83.385 26.1254 83.7839 26.45 84.0865C26.4562 84.0928 26.4636 84.0949 26.4709 84.0991C26.4751 84.1022 26.4772 84.1075 26.4814 84.1106C27.0625 84.5409 27.7504 84.4928 28.2498 84.0677C28.3011 84.721 28.7514 85.2414 29.4675 85.3482C29.4728 85.3492 29.477 85.3471 29.4822 85.3471C29.4916 85.3492 29.499 85.3534 29.5084 85.3534C29.9544 85.367 30.345 85.1984 30.7125 84.9754C30.2853 86.0067 30.1869 87.2139 31.526 87.617C32.86 88.018 33.4453 86.9616 33.662 85.8675C33.8452 86.2601 34.0777 86.6223 34.462 86.8579C35.1289 87.1731 35.799 87.0066 36.2126 86.4831C36.3917 87.1197 36.9476 87.5364 37.6701 87.5018C37.6795 87.5018 37.6858 87.4976 37.6942 87.4955C37.7005 87.4955 37.7047 87.4976 37.7109 87.4966C38.1423 87.4275 38.492 87.1846 38.8051 86.8977C38.5905 87.9615 38.7098 89.1372 40.0385 89.3152C40.6406 89.3958 41.1913 89.2336 41.5494 88.7237C41.8635 88.2766 41.9211 87.7521 41.8981 87.2265C42.1515 87.5657 42.4478 87.863 42.8624 88.0138C43.5618 88.1887 44.1974 87.8986 44.499 87.3092C44.8005 87.8976 45.4361 88.1887 46.1355 88.0138C46.5491 87.863 46.8454 87.5667 47.0988 87.2286C47.0757 87.7269 47.127 88.2243 47.4014 88.6588C47.7521 89.2126 48.3259 89.4021 48.9594 89.3173C50.2881 89.1393 50.4074 87.9636 50.1928 86.8998C50.5059 87.1867 50.8556 87.4306 51.287 87.4987C51.2932 87.4997 51.2974 87.4976 51.3037 87.4976C51.3121 87.4997 51.3184 87.5029 51.3278 87.5039C52.0503 87.5395 52.6073 87.1218 52.7853 86.4852C53.1989 87.0087 53.87 87.1752 54.5359 86.86C54.9192 86.6255 55.1527 86.2622 55.3359 85.8696C55.5526 86.9637 56.1379 88.019 57.4719 87.6191C58.811 87.217 58.7126 86.0088 58.2854 84.9775C58.6529 85.1995 59.0435 85.368 59.4895 85.3555C59.5 85.3555 59.5073 85.3513 59.5157 85.3492C59.5209 85.3492 59.5251 85.3503 59.5304 85.3503C60.2455 85.2435 60.6968 84.7241 60.7481 84.0698C61.2465 84.4949 61.9344 84.5441 62.5165 84.1127C62.5207 84.1096 62.5228 84.1054 62.527 84.1012C62.5343 84.0959 62.5417 84.0949 62.548 84.0886C62.8736 83.786 63.0306 83.3882 63.1322 82.9715C63.5594 84.0038 64.3447 84.9262 65.5771 84.2624C66.8031 83.6028 66.4681 82.4417 65.8482 81.514C66.2566 81.6617 66.6744 81.7507 67.1173 81.6502C67.1413 81.6449 67.1612 81.6355 67.1769 81.6229C67.8177 81.3727 68.1695 80.7937 68.0952 80.1529C68.6679 80.4702 69.3653 80.3707 69.8396 79.8368C69.8448 79.8305 69.8469 79.8242 69.8511 79.8179C69.8553 79.8137 69.8605 79.8106 69.8637 79.8053C70.1191 79.4483 70.1945 79.0306 70.2134 78.6055C70.8133 79.509 71.7316 80.2566 72.7954 79.4431C73.9419 78.5667 73.4016 77.4559 72.5923 76.6445C73.0247 76.7094 73.4529 76.7115 73.8718 76.5251C74.4853 76.1733 74.7335 75.5011 74.5345 74.8761C75.1596 75.075 75.8318 74.8269 76.1847 74.2133C76.3721 73.7945 76.369 73.3663 76.3041 72.9339C77.1145 73.7432 78.2254 74.2845 79.1028 73.137C79.9164 72.0733 79.1688 71.1551 78.2652 70.5551C78.6903 70.5363 79.108 70.4609 79.4651 70.2044C79.4703 70.2002 79.4724 70.196 79.4777 70.1918C79.4839 70.1876 79.4902 70.1866 79.4965 70.1803C80.0305 69.706 80.131 69.0087 79.8127 68.436C80.4525 68.5103 81.0325 68.1575 81.2828 67.5178C81.2953 67.5021 81.3047 67.4822 81.31 67.4581C81.4105 67.0152 81.3215 66.5975 81.1739 66.1891C82.1005 66.809 83.2617 67.143 83.9224 65.918C84.5862 64.6857 83.6627 63.9004 82.6314 63.4732C83.0481 63.3706 83.447 63.2136 83.7496 62.889C83.7559 62.8827 83.758 62.8754 83.7622 62.8681C83.7653 62.8639 83.7695 62.8628 83.7737 62.8576C84.204 62.2765 84.1559 61.5886 83.7308 61.0892C84.3841 61.0379 84.9045 60.5877 85.0113 59.8716C85.0123 59.8663 85.0103 59.8621 85.0103 59.8569C85.0123 59.8475 85.0165 59.8401 85.0165 59.8307C85.0301 59.3847 84.8616 58.9942 84.6385 58.6267C85.6699 59.0539 86.8771 59.1523 87.2803 57.8132C87.6813 56.4793 86.6248 55.894 85.5306 55.6773C85.9233 55.4941 86.2856 55.2616 86.5211 54.8774C86.8363 54.2104 86.6698 53.5404 86.1463 53.1268C86.7829 52.9478 87.1996 52.3918 87.1651 51.6694C87.164 51.66 87.1609 51.6537 87.1588 51.6453C87.1588 51.639 87.1609 51.6348 87.1598 51.6285C87.0907 51.1972 86.8478 50.8485 86.5609 50.5344C87.6247 50.7491 88.8006 50.6297 88.9786 49.3C89.0602 48.6949 88.899 48.1441 88.388 47.7861Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--zeinet-primary);
  font-size: 36px;
  color: var(--zeinet-white);
  margin: -50px auto 15px;
}

.service-four__item__normal__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--zeinet-black2);
  letter-spacing: 0;
  padding: 0 25px;
  margin: 0 0 7px;
}

.service-four__item__normal__text {
  font-size: 13.36px;
  line-height: 25px;
  padding: 0 25px;
  margin: 0 0 0;
}

.service-four__item__normal__btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--zeinet-base);
  font-size: 18px;
  color: var(--zeinet-black2);
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  transition: all 500ms ease;
  transform: rotate(45deg);
}

.service-four__item:hover .service-four__item__normal__btn {
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
}

.service-four__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 700ms ease, top 700ms ease;
  background-color: var(--zeinet-base);
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: center center;
  padding: 50px 25px 40px;
  border-radius: 5px;
  overflow: hidden;
}

.service-four__item__hover::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--zeinet-black);
  opacity: 0.8;
}

.service-four__item__hover__icon {
  width: 90px;
  height: 90px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 89 90"><path d="M88.388 47.7861C87.9409 47.473 87.4164 47.4144 86.8907 47.4374C87.23 47.184 87.5274 46.8877 87.6781 46.4731C87.853 45.7737 87.563 45.1382 86.9735 44.8356C87.563 44.5341 87.853 43.8986 87.6781 43.1981C87.5274 42.7856 87.231 42.4893 86.8918 42.2349C87.3902 42.2579 87.8875 42.2066 88.3221 41.9323C88.876 41.5816 89.0655 41.0078 88.9807 40.3744C88.8027 39.0447 87.6268 38.9253 86.563 39.1399C86.8499 38.8269 87.0939 38.4772 87.1619 38.0458C87.163 38.0396 87.1609 38.0354 87.1609 38.0291C87.163 38.0207 87.1661 38.0144 87.1672 38.005C87.2028 37.2826 86.785 36.7256 86.1484 36.5476C86.6719 36.134 86.8384 35.4629 86.5232 34.797C86.2887 34.4138 85.9254 34.1803 85.5327 33.9971C86.6269 33.7804 87.6823 33.1951 87.2823 31.8612C86.8803 30.5211 85.672 30.6205 84.6406 31.0477C84.8626 30.6802 85.0312 30.2897 85.0186 29.8437C85.0186 29.8332 85.0144 29.8259 85.0123 29.8175C85.0123 29.8122 85.0144 29.8081 85.0134 29.8028C84.9066 29.0867 84.3873 28.6365 83.7329 28.5852C84.158 28.0868 84.2072 27.3989 83.7758 26.8168C83.7726 26.8126 83.7685 26.8105 83.7643 26.8063C83.759 26.799 83.758 26.7917 83.7517 26.7854C83.4491 26.4598 83.0512 26.3027 82.6335 26.2012C83.6658 25.774 84.5883 24.9887 83.9245 23.7564C83.2648 22.5304 82.1026 22.8654 81.176 23.4852C81.3236 23.0769 81.4126 22.6592 81.3121 22.2163C81.3068 22.1922 81.2974 22.1723 81.2849 22.1566C81.0346 21.5158 80.4556 21.164 79.8148 21.2384C80.1331 20.6657 80.0326 19.9684 79.4986 19.4941C79.4923 19.4888 79.486 19.4868 79.4798 19.4826C79.4756 19.4784 79.4724 19.4731 79.4672 19.47C79.1101 19.2145 78.6924 19.1392 78.2673 19.1193C79.1709 18.5193 79.9185 17.6011 79.1049 16.5374C78.2285 15.3909 77.1176 15.9312 76.3062 16.7405C76.3711 16.3081 76.3732 15.8798 76.1868 15.461C75.8339 14.8475 75.1628 14.5994 74.5366 14.7983C74.7356 14.1732 74.4874 13.5011 73.8739 13.1482C73.455 12.9608 73.0268 12.964 72.5944 13.0289C73.4037 12.2185 73.9451 11.1076 72.7975 10.2302C71.7337 9.41673 70.8154 10.1643 70.2155 11.0678C70.1966 10.6428 70.1212 10.225 69.8658 9.86799C69.8616 9.86275 69.8563 9.86066 69.8532 9.85542C69.849 9.84914 69.848 9.84286 69.8417 9.83658C69.3674 9.30261 68.67 9.2021 68.0973 9.52038C68.1716 8.87962 67.8188 8.30063 67.179 8.05145C67.1633 8.03888 67.1434 8.02946 67.1194 8.02422C66.6765 7.92371 66.2587 8.01271 65.8503 8.16033C66.4702 7.23374 66.8042 6.07262 65.5792 5.41197C64.3468 4.74817 63.5615 5.67162 63.1343 6.70291C63.0317 6.28621 62.8746 5.8873 62.55 5.58577C62.5438 5.57949 62.5364 5.57739 62.5291 5.5732C62.5249 5.57006 62.5228 5.56483 62.5186 5.56169C61.9375 5.13137 61.2496 5.17953 60.7502 5.60461C60.6989 4.95129 60.2486 4.43093 59.5325 4.32414C59.5272 4.32309 59.523 4.32518 59.5178 4.32518C59.5084 4.32309 59.501 4.3189 59.4916 4.3189C59.0456 4.30529 58.655 4.47386 58.2875 4.69687C58.7147 3.66557 58.8131 2.45838 57.474 2.05529C56.14 1.65429 55.5547 2.71071 55.338 3.80482C55.1548 3.4122 54.9223 3.04994 54.538 2.81436C53.8711 2.49922 53.201 2.66569 52.7874 3.18919C52.6083 2.55261 52.0524 2.13591 51.3299 2.17046C51.3205 2.17046 51.3142 2.17465 51.3058 2.17674C51.2995 2.17674 51.2953 2.17465 51.2891 2.1757C50.8577 2.2448 50.508 2.4877 50.1949 2.77458C50.4095 1.71083 50.2902 0.53505 48.9615 0.357061C48.3594 0.276442 47.8087 0.438726 47.4506 0.949661C47.1365 1.39673 47.0789 1.92128 47.1019 2.44687C46.8485 2.10764 46.5522 1.81029 46.1376 1.65953C45.4382 1.48468 44.8026 1.7747 44.501 2.36416C44.1995 1.77574 43.5639 1.48468 42.8645 1.65953C42.4509 1.81029 42.1546 2.10659 41.9012 2.44477C41.9243 1.9464 41.873 1.44908 41.5986 1.01458C41.2479 0.460713 40.6741 0.271207 40.0406 0.356014C38.7109 0.534003 38.5915 1.70978 38.8072 2.77353C38.4941 2.48665 38.1444 2.2427 37.713 2.17465C37.7068 2.1736 37.7026 2.1757 37.6963 2.1757C37.6879 2.1736 37.6816 2.17046 37.6722 2.16941C36.9497 2.13382 36.3927 2.55157 36.2147 3.18814C35.8011 2.66464 35.13 2.49817 34.4641 2.81332C34.0808 3.04784 33.8473 3.41115 33.6641 3.80378C33.4474 2.70966 32.8621 1.65429 31.5281 2.05424C30.189 2.45629 30.2874 3.66453 30.7146 4.69582C30.3471 4.47386 29.9565 4.30529 29.5105 4.31785C29.5 4.31785 29.4937 4.32204 29.4843 4.32414C29.4791 4.32414 29.4749 4.32309 29.4696 4.32309C28.7545 4.42988 28.3032 4.94919 28.2519 5.60357C27.7535 5.17848 27.0656 5.12928 26.4835 5.56064C26.4793 5.56378 26.4772 5.56797 26.473 5.57216C26.4657 5.57739 26.4583 5.57844 26.452 5.58472C26.1264 5.8873 25.9694 6.28516 25.8678 6.70187C25.4406 5.66953 24.6553 4.74712 23.4229 5.41092C22.1968 6.07053 22.5319 7.23269 23.1518 8.15929C22.7434 8.01166 22.3256 7.92267 21.8827 8.02318C21.8587 8.02841 21.8388 8.03784 21.8231 8.0504C21.1823 8.30063 20.8305 8.87962 20.9048 9.52038C20.3321 9.20314 19.6347 9.30261 19.1604 9.83658C19.1552 9.84286 19.1531 9.84914 19.1489 9.85542C19.1447 9.85961 19.1395 9.86275 19.1363 9.86799C18.8809 10.225 18.8055 10.6428 18.7866 11.0678C18.1867 10.1643 17.2684 9.41673 16.2046 10.2302C15.0581 11.1066 15.5984 12.2175 16.4077 13.0289C15.9753 12.964 15.5471 12.9619 15.1282 13.1482C14.5147 13.5 14.2665 14.1722 14.4655 14.7983C13.8404 14.5994 13.1682 14.8475 12.8153 15.461C12.6279 15.8798 12.631 16.3081 12.6959 16.7405C11.8855 15.9312 10.7736 15.3899 9.89719 16.5374C9.08363 17.6011 9.83122 18.5193 10.7348 19.1193C10.3097 19.1381 9.89195 19.2135 9.53491 19.47C9.52967 19.4742 9.52758 19.4784 9.52234 19.4826C9.51606 19.4868 9.50978 19.4878 9.5035 19.4941C8.9695 19.9684 8.86899 20.6657 9.18729 21.2384C8.54754 21.164 7.96748 21.5169 7.71723 22.1566C7.70467 22.1723 7.69525 22.1922 7.69001 22.2163C7.5895 22.6592 7.67849 23.0769 7.82613 23.4852C6.89949 22.8654 5.73832 22.5314 5.07763 23.7564C4.4138 24.9887 5.3373 25.774 6.36864 26.2012C5.95191 26.3038 5.55299 26.4608 5.25039 26.7854C5.24411 26.7917 5.24202 26.799 5.23783 26.8063C5.23469 26.8105 5.2305 26.8116 5.22631 26.8168C4.79597 27.3979 4.84414 28.0857 5.26924 28.5852C4.61588 28.6365 4.0955 29.0867 3.9887 29.8028C3.98765 29.8081 3.98975 29.8122 3.98975 29.8175C3.98765 29.8269 3.98346 29.8342 3.98346 29.8437C3.96985 30.2897 4.13843 30.6802 4.3604 31.0477C3.32906 30.6205 2.12181 30.5221 1.7187 31.8612C1.31768 33.1951 2.37415 33.7804 3.46832 33.9971C3.07567 34.1803 2.7134 34.4128 2.47781 34.797C2.16265 35.4639 2.32913 36.134 2.85265 36.5476C2.21605 36.7266 1.79932 37.2826 1.83388 38.005C1.83492 38.0144 1.83807 38.0207 1.84016 38.0291C1.84016 38.0354 1.83807 38.0396 1.83911 38.0458C1.90822 38.4772 2.15113 38.8259 2.43802 39.1399C1.37422 38.9253 0.19839 39.0447 0.0203916 40.3744C-0.060231 40.9764 0.102061 41.5271 0.611973 41.8852C1.05906 42.1982 1.58363 42.2569 2.10925 42.2338C1.77001 42.4872 1.47265 42.7835 1.32187 43.1981C1.14701 43.8975 1.43705 44.533 2.02653 44.8356C1.43705 45.1372 1.14701 45.7727 1.32187 46.4731C1.47265 46.8867 1.76896 47.1819 2.1082 47.4364C1.60981 47.4133 1.11246 47.4646 0.677937 47.7389C0.124049 48.0897 -0.0654663 48.6634 0.0193446 49.2969C0.197343 50.6266 1.37318 50.7459 2.43698 50.5313C2.15009 50.8443 1.90612 51.194 1.83807 51.6254C1.83702 51.6317 1.83911 51.6359 1.83911 51.6422C1.83702 51.6505 1.83388 51.6568 1.83283 51.6662C1.79723 52.3887 2.215 52.9457 2.85161 53.1237C2.32808 53.5372 2.1616 54.2083 2.47676 54.8742C2.7113 55.2574 3.07463 55.4909 3.46727 55.6741C2.37311 55.8909 1.31768 56.4761 1.71765 57.81C2.11972 59.1502 3.32801 59.0507 4.35935 58.6235C4.13738 58.991 3.96881 59.3816 3.98137 59.8276C3.98137 59.8381 3.98556 59.8454 3.98765 59.8538C3.98765 59.859 3.98556 59.8632 3.98661 59.8684C4.0934 60.5846 4.61274 61.0348 5.26714 61.0861C4.84204 61.5844 4.79283 62.2723 5.22422 62.8545C5.22736 62.8586 5.23154 62.8607 5.23573 62.8649C5.24097 62.8723 5.24202 62.8796 5.2483 62.8859C5.55089 63.2115 5.94877 63.3685 6.36654 63.4701C5.33416 63.8973 4.41171 64.6825 5.07553 65.9148C5.73517 67.1409 6.8974 66.8058 7.82403 66.186C7.6764 66.5943 7.5874 67.0121 7.68792 67.455C7.69315 67.479 7.70258 67.4989 7.71514 67.5146C7.96538 68.1554 8.5444 68.5072 9.18519 68.4329C8.86689 69.0056 8.96741 69.7029 9.5014 70.1772C9.50768 70.1824 9.51397 70.1845 9.52025 70.1887C9.52444 70.1929 9.52758 70.1981 9.53281 70.2012C9.88986 70.4567 10.3076 70.5321 10.7327 70.552C9.82913 71.1519 9.08154 72.0701 9.89509 73.1339C10.7715 74.2803 11.8824 73.7401 12.6938 72.9308C12.6289 73.3632 12.6268 73.7914 12.8132 74.2102C13.1661 74.8237 13.8372 75.0719 14.4634 74.8729C14.2644 75.498 14.5126 76.1702 15.1261 76.522C15.545 76.7094 15.9732 76.7062 16.4056 76.6413C15.5963 77.4517 15.0549 78.5636 16.2025 79.4399C17.2663 80.2535 18.1846 79.5059 18.7845 78.6023C18.8034 79.0274 18.8788 79.4452 19.1342 79.8022C19.1384 79.8074 19.1426 79.8095 19.1468 79.8148C19.151 79.8211 19.152 79.8273 19.1583 79.8336C19.6326 80.3676 20.3289 80.4681 20.9027 80.1498C20.8284 80.7906 21.1812 81.3696 21.821 81.6198C21.8367 81.6324 21.8566 81.6418 21.8806 81.647C22.3235 81.7475 22.7413 81.6585 23.1497 81.5109C22.5298 82.4375 22.1958 83.5986 23.4208 84.2593C24.6532 84.9231 25.4385 83.9996 25.8657 82.9683C25.9683 83.385 26.1254 83.7839 26.45 84.0865C26.4562 84.0928 26.4636 84.0949 26.4709 84.0991C26.4751 84.1022 26.4772 84.1075 26.4814 84.1106C27.0625 84.5409 27.7504 84.4928 28.2498 84.0677C28.3011 84.721 28.7514 85.2414 29.4675 85.3482C29.4728 85.3492 29.477 85.3471 29.4822 85.3471C29.4916 85.3492 29.499 85.3534 29.5084 85.3534C29.9544 85.367 30.345 85.1984 30.7125 84.9754C30.2853 86.0067 30.1869 87.2139 31.526 87.617C32.86 88.018 33.4453 86.9616 33.662 85.8675C33.8452 86.2601 34.0777 86.6223 34.462 86.8579C35.1289 87.1731 35.799 87.0066 36.2126 86.4831C36.3917 87.1197 36.9476 87.5364 37.6701 87.5018C37.6795 87.5018 37.6858 87.4976 37.6942 87.4955C37.7005 87.4955 37.7047 87.4976 37.7109 87.4966C38.1423 87.4275 38.492 87.1846 38.8051 86.8977C38.5905 87.9615 38.7098 89.1372 40.0385 89.3152C40.6406 89.3958 41.1913 89.2336 41.5494 88.7237C41.8635 88.2766 41.9211 87.7521 41.8981 87.2265C42.1515 87.5657 42.4478 87.863 42.8624 88.0138C43.5618 88.1887 44.1974 87.8986 44.499 87.3092C44.8005 87.8976 45.4361 88.1887 46.1355 88.0138C46.5491 87.863 46.8454 87.5667 47.0988 87.2286C47.0757 87.7269 47.127 88.2243 47.4014 88.6588C47.7521 89.2126 48.3259 89.4021 48.9594 89.3173C50.2881 89.1393 50.4074 87.9636 50.1928 86.8998C50.5059 87.1867 50.8556 87.4306 51.287 87.4987C51.2932 87.4997 51.2974 87.4976 51.3037 87.4976C51.3121 87.4997 51.3184 87.5029 51.3278 87.5039C52.0503 87.5395 52.6073 87.1218 52.7853 86.4852C53.1989 87.0087 53.87 87.1752 54.5359 86.86C54.9192 86.6255 55.1527 86.2622 55.3359 85.8696C55.5526 86.9637 56.1379 88.019 57.4719 87.6191C58.811 87.217 58.7126 86.0088 58.2854 84.9775C58.6529 85.1995 59.0435 85.368 59.4895 85.3555C59.5 85.3555 59.5073 85.3513 59.5157 85.3492C59.5209 85.3492 59.5251 85.3503 59.5304 85.3503C60.2455 85.2435 60.6968 84.7241 60.7481 84.0698C61.2465 84.4949 61.9344 84.5441 62.5165 84.1127C62.5207 84.1096 62.5228 84.1054 62.527 84.1012C62.5343 84.0959 62.5417 84.0949 62.548 84.0886C62.8736 83.786 63.0306 83.3882 63.1322 82.9715C63.5594 84.0038 64.3447 84.9262 65.5771 84.2624C66.8031 83.6028 66.4681 82.4417 65.8482 81.514C66.2566 81.6617 66.6744 81.7507 67.1173 81.6502C67.1413 81.6449 67.1612 81.6355 67.1769 81.6229C67.8177 81.3727 68.1695 80.7937 68.0952 80.1529C68.6679 80.4702 69.3653 80.3707 69.8396 79.8368C69.8448 79.8305 69.8469 79.8242 69.8511 79.8179C69.8553 79.8137 69.8605 79.8106 69.8637 79.8053C70.1191 79.4483 70.1945 79.0306 70.2134 78.6055C70.8133 79.509 71.7316 80.2566 72.7954 79.4431C73.9419 78.5667 73.4016 77.4559 72.5923 76.6445C73.0247 76.7094 73.4529 76.7115 73.8718 76.5251C74.4853 76.1733 74.7335 75.5011 74.5345 74.8761C75.1596 75.075 75.8318 74.8269 76.1847 74.2133C76.3721 73.7945 76.369 73.3663 76.3041 72.9339C77.1145 73.7432 78.2254 74.2845 79.1028 73.137C79.9164 72.0733 79.1688 71.1551 78.2652 70.5551C78.6903 70.5363 79.108 70.4609 79.4651 70.2044C79.4703 70.2002 79.4724 70.196 79.4777 70.1918C79.4839 70.1876 79.4902 70.1866 79.4965 70.1803C80.0305 69.706 80.131 69.0087 79.8127 68.436C80.4525 68.5103 81.0325 68.1575 81.2828 67.5178C81.2953 67.5021 81.3047 67.4822 81.31 67.4581C81.4105 67.0152 81.3215 66.5975 81.1739 66.1891C82.1005 66.809 83.2617 67.143 83.9224 65.918C84.5862 64.6857 83.6627 63.9004 82.6314 63.4732C83.0481 63.3706 83.447 63.2136 83.7496 62.889C83.7559 62.8827 83.758 62.8754 83.7622 62.8681C83.7653 62.8639 83.7695 62.8628 83.7737 62.8576C84.204 62.2765 84.1559 61.5886 83.7308 61.0892C84.3841 61.0379 84.9045 60.5877 85.0113 59.8716C85.0123 59.8663 85.0103 59.8621 85.0103 59.8569C85.0123 59.8475 85.0165 59.8401 85.0165 59.8307C85.0301 59.3847 84.8616 58.9942 84.6385 58.6267C85.6699 59.0539 86.8771 59.1523 87.2803 57.8132C87.6813 56.4793 86.6248 55.894 85.5306 55.6773C85.9233 55.4941 86.2856 55.2616 86.5211 54.8774C86.8363 54.2104 86.6698 53.5404 86.1463 53.1268C86.7829 52.9478 87.1996 52.3918 87.1651 51.6694C87.164 51.66 87.1609 51.6537 87.1588 51.6453C87.1588 51.639 87.1609 51.6348 87.1598 51.6285C87.0907 51.1972 86.8478 50.8485 86.5609 50.5344C87.6247 50.7491 88.8006 50.6297 88.9786 49.3C89.0602 48.6949 88.899 48.1441 88.388 47.7861Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--zeinet-white);
  font-size: 36px;
  color: var(--zeinet-primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.service-four__item__hover__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--zeinet-white);
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
}

.service-four__item__hover__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-four__item__hover__title a:hover {
  color: var(--zeinet-primary);
  background-size: 100% 1px;
}

.service-four__item__hover__text {
  font-size: 13.36px;
  line-height: 25px;
  color: var(--zeinet-white);
  margin: 0 0 33px;
  position: relative;
  z-index: 2;
}

.service-four__item__hover__btn {
  position: relative;
  z-index: 2;
  width: 55px;
  height: 55px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service-four__item__hover__btn a {
  width: 55px;
  height: 55px;
  background-color: var(--zeinet-base);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--zeinet-black);
  transition: all 300ms ease;
}

.service-four__item__hover__btn a:hover {
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
}

.service-four__item:hover .service-four__item__hover {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.service-five {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .service-five {
    padding: 80px 0;
  }
}

.service-five__btn {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .service-five__btn {
    justify-content: flex-start;
    margin: -20px 0 40px;
  }
}

.service-five__item {
  position: relative;
  z-index: 2;
  background-color: var(--zeinet-extra);
  padding: 20px 18px 40px;
  overflow: hidden;
}

.service-five__item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--zeinet-base);
  opacity: 0;
  transition: all 0.4s;
  transform: scale(0.8, 1);
  z-index: -1;
}

.service-five__item:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}

.service-five__item__thumb {
  position: relative;
}

.service-five__item__thumb img {
  width: 100%;
  height: auto;
}

.service-five__item__content {
  margin-top: -38px;
  padding: 0 0 0 21px;
}

.service-five__item__icon {
  margin: 0 0 19px;
  position: relative;
  z-index: 2;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(105deg, rgb(247, 26, 44) 0%, rgb(0, 13, 58) 100%);
}

.service-five__item__icon__inner {
  background-color: var(--zeinet-white);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  line-height: 1;
  font-size: 40px;
  color: var(--zeinet-black);
  font-weight: 700;
}

.service-five__item__icon__inner i {
  transition: all 300ms linear;
}

.service-five__item:hover .service-five__item__icon__inner i {
  transform: rotateY(180deg);
}

.service-five__item__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 5px;
}

.service-five__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.service-five__item__title a:hover {
  color: var(--zeinet-white);
  background-size: 100% 1px;
}

.service-five__item:hover .service-five__item__title {
  color: var(--zeinet-white);
}

.service-five__item__text {
  font-size: 14px;
  line-height: 25px;
  margin: 0 0 23px;
  transition: all 300ms linear;
}

.service-five__item:hover .service-five__item__text {
  color: var(--zeinet-white);
}

.service-five__item .thm-btn--two {
  background-color: var(--zeinet-black);
  padding: 9px 30.5px;
}

.service-five__item .thm-btn--two::before {
  background-color: var(--zeinet-white);
}

.service-five__item .thm-btn--two:hover {
  color: var(--zeinet-base);
}

.service-five__item .thm-btn--two span {
  right: -45px;
}

.service-five__item__shape {
  width: 100%;
  height: 30px;
  position: absolute;
  right: -70px;
  bottom: 0;
  background-color: rgba(var(--zeinet-black-rgb), 0.05);
  transform: rotate(-45deg);
  transition: all 400ms ease;
}

.service-five__item__shape::after {
  width: 100%;
  height: 30px;
  position: absolute;
  content: "";
  right: 0;
  bottom: -20px;
  background-color: rgba(var(--zeinet-black-rgb), 0.05);
  transition: all 400ms ease;
}

.service-five__item:hover .service-five__item__shape {
  background-color: rgba(var(--zeinet-white-rgb), 0.12);
}

.service-five__item:hover .service-five__item__shape::after {
  background-color: rgba(var(--zeinet-white-rgb), 0.12);
}

.feature-four {
  position: relative;
  background-color: var(--zeinet-extra);
  padding: 120px 0;
}

@media (max-width: 767px) {
  .feature-four {
    padding: 80px 0;
  }
}

.feature-four__shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-four .container {
  position: relative;
}

.feature-four__shape-two {
  position: absolute;
  right: -40px;
  top: -25px;
  width: 72px;
  height: 75px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: treeMove 4s linear 0s infinite;
  display: none;
}

@media (min-width: 1300px) {
  .feature-four__shape-two {
    display: block;
  }
}

.feature-four__single {
  position: relative;
  z-index: 2;
  background-color: var(--zeinet-black);
  margin: 0 0 0 44px;
  padding: 30px 20px 30px 65px;
}

@media (min-width: 1200px) {
  .feature-four__single {
    padding-right: 30px;
  }
}

.feature-four__single__shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  transition: all 300ms ease;
  opacity: 0.31;
}

.feature-four__single:hover .feature-four__single__shape {
  opacity: 1;
}

.feature-four__single::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--zeinet-base);
  opacity: 0;
  transition: all 0.4s;
  transform: scale(0.5, 1);
  z-index: -1;
}

.feature-four__single:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}

.feature-four__single__icon {
  width: 88px;
  height: 88px;
  background-color: var(--zeinet-black);
  border: 7px solid rgba(var(--zeinet-white-rgb), 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--zeinet-base);
  transition: all 300ms ease;
  position: absolute;
  left: -44px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.feature-four__single__icon span {
  transition: all 0.4s ease;
  transform: scale(1);
}

.feature-four__single:hover .feature-four__single__icon {
  color: var(--zeinet-white);
}

.feature-four__single:hover .feature-four__single__icon span {
  transform: scale(1.1);
}

.feature-four__single__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--zeinet-white);
  letter-spacing: 0;
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
}

.feature-four__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.feature-four__single__title a:hover {
  color: var(--zeinet-white);
  background-size: 100% 1px;
}

.feature-four__single__text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Offer
--------------------------------------------------------------*/
.offer-one {
  position: relative;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .offer-one {
    padding: 80px 0;
  }
}

.offer-one__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 37.5%;
  background-color: var(--zeinet-black);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
  .offer-one__bg {
    display: none;
  }
}

.offer-one__content {
  position: relative;
}

@media (min-width: 1200px) {
  .offer-one__content {
    padding-top: 54px;
  }
}

.offer-one__content .section-title {
  margin-bottom: 20px;
}

.offer-one__content__text {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 25px;
}

.offer-one__content__heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--zeinet-black2);
  margin: 0 0 25px;
}

.offer-one__content__price {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .offer-one__content__price {
    flex-direction: column;
  }
}

.offer-one__content__price li {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  border: 2px solid rgba(var(--zeinet-black-rgb), 0.07);
  border-radius: 5px;
  padding: 42px 20px 33px;
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .offer-one__content__price li {
    font-size: 22px;
  }
}

.offer-one__content__price li span {
  color: var(--zeinet-primary);
  font-size: 60px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .offer-one__content__price li span {
    font-size: 45px;
  }
}

.offer-one__content__info-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 31px;
}

@media (max-width: 767px) {
  .offer-one__content__info-wrapper {
    display: block;
  }
}

.offer-one__content__info {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
}

@media (max-width: 767px) {
  .offer-one__content__info {
    margin: 25px 0 0;
  }
}

.offer-one__content__info__icon {
  position: relative;
  flex-shrink: 0;
}

.offer-one__content__info__icon img {
  max-width: 50px;
  height: auto;
}

.offer-one__content__info__title {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 6px;
}

.offer-one__content__info__text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}

.offer-one__content__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.offer-one__content__info__text a:hover {
  color: var(--zeinet-primary);
  background-size: 100% 1px;
}

.offer-one__img {
  position: relative;
}

@media (max-width: 991px) {
  .offer-one__img {
    margin: 45px 0 0;
  }
}

.offer-one__img img {
  max-width: none;
  height: auto;
}

@media (max-width: 991px) {
  .offer-one__img img {
    max-width: 100%;
  }
}

.offer-two {
  position: relative;
  padding: 209px 0 120px;
  background-color: #f6f7fb;
}

@media (max-width: 767px) {
  .offer-two {
    padding: 80px 0;
  }
}

.offer-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 69.4%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

.offer-two__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(var(--zeinet-black2-rgb), 0.2);
}

@media (max-width: 991px) {
  .offer-two__bg {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 767px) {
  .offer-two__bg {
    height: 300px;
  }
}

.offer-two .video-popup {
  width: 97px;
  height: 97px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--zeinet-base);
  position: relative;
  transition: all 500ms ease-out;
  margin: auto;
}

@media (max-width: 991px) {
  .offer-two .video-popup {
    margin: 0 auto 90px;
  }
}

@media (max-width: 767px) {
  .offer-two .video-popup {
    margin: 0 auto 110px;
  }
}

.offer-two .video-popup:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.offer-two .video-popup::after {
  position: absolute;
  left: -16px;
  top: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  content: "";
  border: 1px solid var(--zeinet-white);
  border-radius: 50%;
}

.offer-two .video-popup .ripple,
.offer-two .video-popup .ripple:before,
.offer-two .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-white-rgb), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.offer-two .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.offer-two .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.offer-two__tabs {
  max-width: 790px;
  margin: 0 0 0 auto;
  position: relative;
  background-color: var(--zeinet-black);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 60px;
}

@media (max-width: 1199px) {
  .offer-two__tabs {
    padding: 80px 40px;
  }
}

@media (max-width: 767px) {
  .offer-two__tabs {
    padding: 80px 20px;
  }
}

.offer-two__tabs__offer {
  position: absolute;
  right: -110px;
  top: -89px;
}

@media (max-width: 1350px) {
  .offer-two__tabs__offer {
    right: 0;
  }
}

@media (max-width: 991px) {
  .offer-two__tabs__offer {
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
}

.offer-two__tabs__offer img {
  max-width: 100%;
  height: auto;
  animation: treeMove 4s linear 0s infinite;
}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

.offer-two__tabs .section-title {
  margin-bottom: 31px;
}

.offer-two__tabs .section-title--two .section-title__tagline::after {
  background-color: var(--zeinet-white);
}

.offer-two__tabs .section-title--two .section-title__title {
  color: var(--zeinet-white);
}

.offer-two__tabs__list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-two__tabs__list li {
  position: relative;
  text-align: center;
  background-color: var(--zeinet-white);
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: var(--zeinet-black2);
  text-transform: uppercase;
  padding: 15px;
  transition: all 0.3s linear;
  cursor: pointer;
}

.offer-two__tabs__list li:hover,
.offer-two__tabs__list li.active-btn {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.offer-two__tabs__list li:hover::after,
.offer-two__tabs__list li.active-btn::after {
  border-color: var(--zeinet-base) transparent transparent transparent;
}

.offer-two__tabs__list li::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: 0 auto;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 15px 11px 0 11px;
  border-color: var(--zeinet-white) transparent transparent transparent;
  transition: all 0.3s linear;
}

.offer-two__tabs__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .offer-two__tabs__content {
    display: block;
  }
}

.offer-two__tabs__content__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  background-color: #0F1B47;
  padding: 25px 36px;
  font-size: 20px;
  color: var(--zeinet-white);
  text-transform: capitalize;
  font-weight: 500;
}

@media (max-width: 767px) {
  .offer-two__tabs__content__price {
    margin: 0 0 20px;
  }
}

.offer-two__tabs__content__price span {
  color: var(--zeinet-base);
  font-weight: 600;
  font-size: 40px;
}

.offer-two__tabs__content__list {
  margin: 0 0;
  padding: 0;
  list-style: none;
}

.offer-two__tabs__content__list li {
  position: relative;
  font-size: 16px;
  line-height: 32px;
  color: var(--zeinet-white);
}

.offer-two__tabs__content__list li i {
  color: var(--zeinet-base);
  margin-right: 13px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.counter-four {
  position: relative;
  background-color: transparent;
  margin-top: -92px;
}

.counter-four__single {
  position: relative;
  background: var(--zeinet-white);
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
  margin: 0 0 0 32px;
  padding: 29px 20px 29px 65px;
}

.counter-four__single__icon {
  position: absolute;
  z-index: 2;
  left: -32px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--zeinet-black);
  border-radius: 50%;
  font-size: 30px;
  overflow: hidden;
  color: var(--zeinet-white);
}

.counter-four__single__icon::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 101%;
  height: 0;
  content: "";
  background-color: var(--zeinet-base);
  border-radius: 50%;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}

.counter-four__single:hover .counter-four__single__icon::after {
  height: 101%;
}

.counter-four__single__number {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--zeinet-base);
  font-family: var(--zeinet-font);
  margin: 0 0 -1px;
}

.counter-four__single__text {
  color: var(--zeinet-black);
  margin: 0;
}

/*--------------------------------------------------------------
# Movie
--------------------------------------------------------------*/
.movie-four {
  position: relative;
  background-color: var(--zeinet-black);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .movie-four {
    padding: 80px 0;
  }
}

.movie-four .section-title__tagline {
  color: var(--zeinet-base);
}

.movie-four .section-title__title {
  color: var(--zeinet-white);
}

.movie-four__container {
  max-width: 1600px;
}

.movie-four__single {
  position: relative;
}

.movie-four__single__img {
  position: relative;
  overflow: hidden;
}

.movie-four__single__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.movie-four__single__img::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(var(--zeinet-black2-rgb), 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-out;
}

.movie-four__single .video-popup {
  width: 97px;
  height: 97px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--zeinet-base);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 500ms ease-out;
  transform: translateY(20px);
  opacity: 0;
}

.movie-four__single .video-popup:hover {
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
}

.movie-four__single .video-popup::after {
  position: absolute;
  left: -16px;
  top: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  content: "";
  border: 1px solid var(--zeinet-white);
  border-radius: 50%;
}

.movie-four__single .video-popup .ripple,
.movie-four__single .video-popup .ripple:before,
.movie-four__single .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-white-rgb), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.movie-four__single .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.movie-four__single .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.movie-four__single:hover .video-popup {
  opacity: 1;
  transform: translateY(0);
}

.movie-four__single:hover .movie-four__single__img::after {
  opacity: 1;
  visibility: visible;
}

.movie-four__single__ratings {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--zeinet-white);
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--zeinet-black);
  gap: 5px;
  height: 29px;
  padding: 0 9px;
  z-index: 2;
}

.movie-four__single__ratings i {
  font-size: 15px;
  color: #FFBA08;
}

.movie-four__single__content {
  position: relative;
  padding: 25px 0 0;
}

.movie-four__single__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--zeinet-white);
  text-transform: capitalize;
  margin: 0 0 9px;
}

.movie-four__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.movie-four__single__title a:hover {
  color: var(--zeinet-primary);
  background-size: 100% 1px;
}

.movie-four__single__date {
  display: block;
  line-height: 1;
  margin: 0;
}

.movie-four__carousel.owl-carousel {
  position: relative;
}

.movie-four__carousel.owl-carousel .owl-nav {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  line-height: 0;
  gap: 20px;
}

@media (max-width: 767px) {
  .movie-four__carousel.owl-carousel .owl-nav {
    position: relative;
    top: auto;
    justify-content: center;
    margin: 30px auto 0;
  }
}

.movie-four__carousel.owl-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: var(--zeinet-black);
  transition: all ease 0.4s;
}

.movie-four__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-black);
}

.movie-four--home-five {
  position: relative;
}

.movie-four--home-five .section-title--two .section-title__tagline::after {
  background-color: var(--zeinet-white);
}

.movie-four--home-five .movie-four__carousel.owl-carousel .owl-nav button:hover {
  color: var(--zeinet-white);
}

.movie-four--home-five .movie-four__single .video-popup:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.movie-four--home-five .movie-four__single__title a:hover {
  color: var(--zeinet-base);
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product-one {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}

.product-one__single {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(var(--zeinet-black-rgb), 0.1);
  padding: 17px;
  transition: all ease 0.4s;
}

.product-one__single::before {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 0;
  height: 0;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  transition: all 0.4s linear;
  z-index: -1;
}

.product-one__single::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  transition: all 0.4s linear;
  z-index: -1;
}

.product-one__single:hover::after,
.product-one__single:hover::before {
  border-color: var(--zeinet-base);
  width: 100%;
  height: 100%;
}

.product-one__single:hover {
  border-color: transparent;
}

.product-one__single__top {
  position: relative;
  background-color: var(--zeinet-extra);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 352px;
  width: 100%;
  z-index: 2;
}

.product-one__single__img {
  background-color: var(--zeinet-white);
  width: 222px;
  height: 222px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-one__single__btn {
  position: absolute;
  left: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transition: all ease 0.4s;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
}

.product-one__single__btn a {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  font-size: 14px;
  color: var(--zeinet-gray);
  transition: all ease 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-one__single__btn a:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.product-one__single:hover .product-one__single__btn {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-one__single__cart {
  position: absolute;
  right: 18px;
  top: 18px;
}

.product-one__single__cart a {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  font-size: 14px;
  color: var(--zeinet-gray);
  transition: all ease 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-one__single__cart a:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.product-one__single__content {
  position: relative;
  z-index: 2;
  padding: 33px 65px 12px 22px;
}

.product-one__single__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 2px;
}

.product-one__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.product-one__single__title a:hover {
  color: var(--zeinet-base);
  background-size: 100% 1px;
}

.product-one__single__price {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--zeinet-base);
}

.product-one__single__rm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  background-color: var(--zeinet-black);
  color: var(--zeinet-white);
  transition: all ease 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 15px;
  bottom: 0;
  margin: auto;
}

.product-one__single__rm:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial-four {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .testimonial-four {
    padding: 80px 0;
  }
}

.testimonial-four__single {
  position: relative;
  text-align: center;
  transition: all ease 0.4s;
  padding: 0;
  overflow: hidden;
  border-radius: 50px;
}

.testimonial-four__single__top {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: var(--zeinet-black);
  border-radius: 50px;
  padding: 35px 50px 36px;
  margin: 0 0 72px;
  transition: all ease 0.4s;
}

@media (max-width: 767px) {
  .testimonial-four__single__top {
    padding: 35px 30px 36px;
  }
}

@media (max-width: 500px) {
  .testimonial-four__single__top {
    padding: 35px 30px 10px;
  }
}

.testimonial-four__single__top::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  margin: 0 auto;
  width: 100%;
  height: 310px;
  content: "";
  background-color: var(--zeinet-black);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 570 310"><path d="M520.067 0H49.9328C22.3618 0 0 26.4921 0 59.1596V181.181C0 213.861 22.3618 240.341 49.9328 240.341H215.737C223.02 240.341 230.01 243.764 235.159 249.866L285.006 310L334.853 249.866C340.002 243.764 346.992 240.341 354.275 240.341H520.067C547.65 240.341 570 213.849 570 181.181V59.1596C570 26.4921 547.65 0 520.067 0Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: bottom center;
  mask-size: auto;
  transition: all ease 0.4s;
  z-index: -1;
}

.testimonial-four__title {
  color: var(--zeinet-white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: capitalize;
}

.testimonial-four__designation {
  color: var(--zeinet-base);
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  margin: 0 0 12px;
}

.testimonial-four__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFBA08;
  letter-spacing: 3px;
  margin: 0 0 22px;
  position: relative;
  z-index: 5;
}

.testimonial-four__quote {
  width: 177px;
  height: 177px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.testimonial-four__text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: var(--zeinet-extra);
  margin: 0;
}

.testimonial-four__author {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: var(--zeinet-primary);
  padding: 4px;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.testimonial-four__author img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-four__carousel.owl-carousel {
  position: relative;
}

.testimonial-four__carousel.owl-carousel .owl-nav {
  position: relative;
  margin: -70px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 20px;
}

@media (max-width: 991px) {
  .testimonial-four__carousel.owl-carousel .owl-nav {
    margin: 20px 0 0;
  }
}

.testimonial-four__carousel.owl-carousel .owl-nav button {
  width: 70px;
  height: 70px;
  background-color: var(--zeinet-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: var(--zeinet-black);
  transition: all ease 0.4s;
}

.testimonial-four__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
}

.testimonial-five {
  position: relative;
  padding: 120px 0 150px;
}

@media (max-width: 767px) {
  .testimonial-five {
    padding: 80px 0 110px;
  }
}

.testimonial-five__single {
  position: relative;
  z-index: 1;
  transition: all ease 0.4s;
  padding: 0;
}

.testimonial-five__single__content {
  position: relative;
  text-align: center;
  background-color: var(--zeinet-black);
  padding: 73px 115px 60px;
  margin: 0;
  transition: all ease 0.4s;
}

@media (max-width: 1199px) {
  .testimonial-five__single__content {
    padding: 53px 35px 40px;
  }
}

@media (max-width: 500px) {
  .testimonial-five__single__content {
    padding: 35px 30px 10px;
  }
}

.testimonial-five__single__bg {
  width: 517px;
  height: 188px;
  background-color: var(--zeinet-base);
  position: absolute;
  z-index: -1;
  left: -30px;
  bottom: -30px;
}

@media (max-width: 767px) {
  .testimonial-five__single__bg {
    width: 70%;
    left: -15px;
    bottom: -15px;
  }
}

.testimonial-five__single__bg::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: var(--zeinet-base) transparent transparent transparent;
}

.testimonial-five__single__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}

.testimonial-five__single__shape-two {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-repeat: no-repeat;
}

.testimonial-five__title {
  color: var(--zeinet-white);
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: capitalize;
}

.testimonial-five__designation {
  color: var(--zeinet-extra);
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  margin: 0 0 33px;
}

.testimonial-five__text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--zeinet-white);
  margin: 0 0 48px;
}

@media (max-width: 1199px) {
  .testimonial-five__text br {
    display: none;
  }
}

.testimonial-five__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #FFBA08;
  letter-spacing: 6px;
  margin: 0 0 22px;
  position: relative;
  z-index: 5;
}

.testimonial-five__author {
  position: relative;
}

@media (max-width: 991px) {
  .testimonial-five__author {
    display: none;
  }
}

.testimonial-five__author::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.5);
}

.testimonial-five__author img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .testimonial-five__author img {
    min-height: 407px;
  }
}

.testimonial-five__carousel.owl-carousel {
  position: relative;
}

.testimonial-five__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 80px;
  bottom: -25px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 10px;
}

@media (max-width: 1199px) {
  .testimonial-five__carousel.owl-carousel .owl-nav {
    right: 50px;
  }
}

@media (max-width: 767px) {
  .testimonial-five__carousel.owl-carousel .owl-nav {
    right: 0;
    left: 0;
    margin: auto;
    bottom: -35px;
  }
}

.testimonial-five__carousel.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--zeinet-black);
  transition: all ease 0.4s;
}

.testimonial-five__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.brand-three {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 118px 0;
}

@media (max-width: 767px) {
  .brand-three {
    padding: 78px 0;
  }
}

.brand-three .swiper-slide img {
  max-width: 100%;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: all 600ms ease;
}

.brand-three .swiper-slide img:hover {
  filter: brightness(1) invert(0);
}

.brand-three--home-five {
  position: relative;
  background-color: var(--zeinet-black);
}

/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/
.price-three {
  position: relative;
  padding: 120px 0;
  background-color: #f6f7fb;
}

@media (max-width: 767px) {
  .price-three {
    padding: 80px 0;
  }
}

.price-three__item {
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--zeinet-primary);
  background-color: var(--zeinet-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .price-three__item {
    display: block;
    padding: 25px;
  }
}

.price-three__item--reverse {
  background-color: var(--zeinet-primary);
}

.price-three__item--reverse .price-three__item__img {
  border-radius: 0 30px 30px 0;
}

@media (max-width: 991px) {
  .price-three__item--reverse .price-three__item__img {
    border-radius: 0;
    margin: 30px 0 0;
  }
}

.price-three__item--reverse .price-three__item__content {
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .price-three__item--reverse .price-three__item__content {
    padding-left: 20px;
  }
}

.price-three__item--reverse .price-three__item__pack,
.price-three__item--reverse .price-three__item__pack span,
.price-three__item--reverse .price-three__item__list li,
.price-three__item--reverse .price-three__item__off,
.price-three__item--reverse .price-three__item__price,
.price-three__item--reverse .price-three__item__text,
.price-three__item--reverse .price-three__item__title {
  color: var(--zeinet-white);
}

.price-three__item--reverse .price-three__item__btn {
  padding-right: 0;
}

.price-three__item--reverse .thm-btn::before {
  background-color: var(--zeinet-black2);
}

.price-three__item--reverse__logo {
  position: absolute;
  left: -15%;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
}

.price-three__item--reverse__logo img {
  max-width: 100%;
}

.price-three__item__img {
  flex-shrink: 0;
  margin: -1px;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}

@media (max-width: 991px) {
  .price-three__item__img {
    border-radius: 0;
    margin: 0 0 20px;
  }
}

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

.price-three__item__content {
  position: relative;
}

.price-three__item__title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--zeinet-black2);
  margin: 0 0 3px;
}

.price-three__item__text {
  line-height: 24px;
  margin: 0 0 49px;
}

.price-three__item__price {
  font-size: 44px;
  font-weight: 700;
  color: var(--zeinet-black2);
  margin: 0 0 12px;
}

.price-three__item__off {
  display: block;
  color: var(--zeinet-primary);
  margin: 0;
}

.price-three__item__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1199px) {
  .price-three__item__list {
    margin: 30px 0;
  }
}

.price-three__item__list li {
  font-size: 17px;
  font-weight: 500;
  color: var(--zeinet-black2);
  line-height: 40px;
  position: relative;
  padding-left: 19px;
}

.price-three__item__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 7px;
  height: 1px;
  background-color: currentColor;
}

.price-three__item__btn {
  padding-right: 49px;
}

@media (max-width: 1199px) {
  .price-three__item__btn {
    padding-right: 20px;
  }

  .price-three__item__btn .thm-btn {
    padding: 13px 28px;
  }
}

.price-three__item__pack {
  width: 108px;
  height: 108px;
  background-color: rgba(var(--zeinet-black2-rgb), 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 40px;
  color: var(--zeinet-primary);
  font-weight: 700;
  line-height: 1;
  margin-left: auto;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .price-three__item__pack {
    margin: 0 0 30px;
  }
}

.price-three__item__pack span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--zeinet-black2);
  margin-top: 1px;
}

.price-four {
  position: relative;
  background-color: #f6f7fb;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 210px;
}

@media (max-width: 767px) {
  .price-four {
    padding: 80px 0 160px;
  }
}

@media (max-width: 991px) {
  .price-four .section-title--two {
    margin-bottom: 10px;
  }
}

.price-four__item {
  position: relative;
  text-align: center;
  background-color: var(--zeinet-white);
  padding: 0 50px;
  margin-top: 25px;
}

@media (max-width: 1199px) {
  .price-four__item {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .price-four__item {
    padding: 0 30px;
    margin-top: 50px;
  }
}

.price-four__item__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 182px;
  content: "";
  background-color: var(--zeinet-base);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 148.000000"><g transform="translate(0.000000,148.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M0 745 l0 -735 97 73 c315 238 668 388 1048 447 186 28 539 28 715 0 389 -64 727 -208 1043 -447 l97 -73 0 735 0 735 -1500 0 -1500 0 0 -735z"/></g></svg>');
  mask-repeat: no-repeat;
  mask-position: bottom center;
  mask-size: cover;
  transition: all ease 0.4s;
}

.price-four__item__shape img {
  width: 100%;
  height: auto;
}

.price-four__item:hover .price-four__item__shape {
  background-color: var(--zeinet-black);
}

.price-four__item__title {
  color: var(--zeinet-white);
  background-color: var(--zeinet-black);
  padding: 14px 15px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  top: -25px;
  margin: 0 0 5px;
  transition: all ease 0.4s;
}

.price-four__item:hover .price-four__item__title {
  background-color: var(--zeinet-base);
  color: var(--zeinet-white);
}

.price-four__item__pack {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  margin: auto;
  background: linear-gradient(105deg, rgb(247, 26, 44) 0%, rgb(0, 13, 58) 100%);
}

.price-four__item__pack__inner {
  background-color: var(--zeinet-white);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-direction: column;
  line-height: 1;
  font-size: 40px;
  color: var(--zeinet-base);
  font-weight: 700;
}

.price-four__item__pack__inner span {
  margin-top: 1px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--zeinet-black);
}

.price-four__item__price {
  font-size: 39px;
  font-weight: 700;
  color: var(--zeinet-black);
  margin: 25px 0 13px;
  position: relative;
  z-index: 2;
}

.price-four__item__text {
  line-height: 26px;
  margin: 0 0 21px;
  position: relative;
  z-index: 2;
}

.price-four__item__list {
  margin: 0 0 60px 16px;
  padding: 0;
  list-style: none;
  text-align: left;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .price-four__item__list {
    margin-left: 12px;
  }
}

.price-four__item__list li {
  font-size: 15px;
  color: var(--zeinet-black);
  line-height: 36px;
}

.price-four__item__list li i {
  margin-right: 19px;
}

.price-four__item .thm-btn--two {
  text-transform: uppercase;
  background-color: var(--zeinet-black);
  width: 100%;
  margin-bottom: -26px;
}

.price-four__item .thm-btn--two::before {
  background-color: var(--zeinet-base);
}

.price-four__item .thm-btn--two:hover::before {
  height: 415%;
}

.price-four__item .thm-btn--two span {
  right: -110px;
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
.video-section {
  position: relative;
  z-index: 2;
  background-color: var(--zeinet-black2);
  padding: 120px 0;
}

@media (max-width: 767px) {
  .video-section {
    padding: 80px 0;
  }
}

.video-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.video-section__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.video-section .container {
  position: relative;
  z-index: 2;
}

.video-section__title {
  color: var(--zeinet-white);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 55px;
  margin: 8px 0 11px;
}

@media (max-width: 991px) {
  .video-section__title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .video-section__title {
    font-size: 36px;
    line-height: 50px;
  }
}

.video-section__text {
  color: var(--zeinet-white);
  margin: 0 0 33px;
}

.video-section__btn {
  position: relative;
  width: 329px;
  height: 329px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .video-section__btn {
    width: 290px;
    height: 290px;
  }
}

@media (max-width: 767px) {
  .video-section__btn {
    margin: 45px 0 0;
  }
}

.video-section__btn .video-popup {
  width: 73px;
  height: 73px;
  background-color: var(--zeinet-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--zeinet-base);
  position: relative;
  transition: all 300ms ease-out;
}

.video-section__btn .video-popup:hover {
  background-color: var(--zeinet-base);
  color: var(--zeinet-black);
}

.video-section__btn .video-popup .ripple,
.video-section__btn .video-popup .ripple:before,
.video-section__btn .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--zeinet-white-rgb), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.video-section__btn .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-section__btn .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-section__btn__title {
  color: var(--zeinet-white);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 0;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq-two {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .faq-two {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  .faq-two {
    padding-bottom: 0;
  }
}

.faq-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  display: flex;
}

@media (max-width: 1199px) {
  .faq-two__shape {
    display: none;
  }
}

.faq-two__shape__one {
  width: 80%;
  height: 100%;
  display: block;
  background-color: var(--zeinet-primary);
}

.faq-two__shape__two {
  width: 10%;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, var(--zeinet-white) 0%, var(--zeinet-primary) 103%);
}

.faq-two__shape__three {
  width: 10%;
  height: 100%;
  display: block;
  margin-left: 17px;
  background: linear-gradient(0deg, var(--zeinet-white) 0%, var(--zeinet-primary) 103%);
}

.faq-two__img {
  position: relative;
}

@media (min-width: 1350px) {
  .faq-two__img {
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .faq-two__img {
    margin: 0 0 50px;
  }
}

.faq-two__img img {
  max-width: inherit;
  height: auto;
  border-radius: 10px;
  float: right;
}

@media (max-width: 1199px) {
  .faq-two__img img {
    max-width: 100%;
    float: none;
  }
}

.faq-two__accrodion {
  position: relative;
}

.faq-two__accrodion .accrodion {
  position: relative;
  border: 1px solid rgba(var(--zeinet-primary-rgb), 0.2);
  border-radius: 5px;
  margin: 20px 0 0;
  padding: 0;
}

.faq-two__accrodion .accrodion .accrodion-title {
  padding: 25px 30px 28px;
  display: block;
  position: relative;
  transition: 500ms;
}

.faq-two__accrodion .accrodion .accrodion-title h4 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  transition: 500ms;
  padding-right: 20px;
  cursor: pointer;
  width: 100%;
  position: relative;
}

.faq-two__accrodion .accrodion .accrodion-title__icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.faq-two__accrodion .accrodion .accrodion-title__icon::after,
.faq-two__accrodion .accrodion .accrodion-title__icon::before {
  width: 2px;
  height: 14px;
  position: absolute;
  background-color: var(--zeinet-black);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.faq-two__accrodion .accrodion .accrodion-title__icon::after {
  width: 14px;
  height: 2px;
}

.faq-two__accrodion .accrodion .inner {
  position: relative;
  padding: 20px 30px 22px;
  gap: 20px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(var(--zeinet-primary-rgb), 0.2);
}

@media (max-width: 767px) {
  .faq-two__accrodion .accrodion .inner {
    display: block;
  }
}

.faq-two__accrodion .accrodion .inner p {
  line-height: 26px;
}

.faq-two__accrodion .accrodion .inner p:last-child {
  margin: 0;
}

.faq-two__accrodion .accrodion .inner__img {
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .faq-two__accrodion .accrodion .inner__img {
    margin: 20px 0 0;
  }
}

.faq-two__accrodion .accrodion .inner__img img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.faq-two__accrodion .accrodion.active .accrodion-title {
  background-color: var(--zeinet-base);
}

.faq-two__accrodion .accrodion.active .accrodion-title__icon::before {
  opacity: 0;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-three {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .news-three {
    padding: 80px 0;
  }
}

.news-three__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--zeinet-extra);
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-three__single {
    display: block;
  }
}

.news-three__single__img {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  max-width: 204px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news-three__single__img {
    max-width: 100%;
  }
}

.news-three__single__img img {
  width: 100%;
  height: auto;
}

.news-three__single__img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--zeinet-base);
  transition: all 900ms ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform: scale(0, 1);
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.news-three__single__img a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.5);
  z-index: -1;
}

.news-three__single:hover .news-three__single__img a {
  transform: scale(1, 1);
  transform-origin: left center;
}

.news-three__single__content {
  position: relative;
  padding: 30px 30px 40px;
}

.news-three__single__meta {
  position: relative;
  margin: 0 0 9px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-three__single__meta li {
  list-style: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  font-weight: 500;
  line-height: 26px;
}

.news-three__single__meta li a {
  color: inherit;
}

.news-three__single__meta li a:hover {
  color: var(--zeinet-primary);
}

.news-three__single__meta li i {
  color: var(--zeinet-primary);
  margin-right: 10px;
}

.news-three__single__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
  margin: 0 0 7px;
}

.news-three__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.news-three__single__title a:hover {
  color: var(--zeinet-primary);
  background-size: 100% 1px;
}

.news-three__single__text {
  line-height: 26px;
  margin: 0 0 23px;
}

.news-four {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .news-four {
    padding: 80px 0;
  }
}

.news-four__single {
  position: relative;
  background-color: var(--zeinet-extra);
}

.news-four__single__img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.news-four__single__img img {
  width: 100%;
  height: auto;
}

.news-four__single__img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--zeinet-white);
  transition: all 900ms ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform: scale(0, 1);
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.news-four__single__img a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--zeinet-black-rgb), 0.5);
  z-index: -1;
}

.news-four__single:hover .news-four__single__img a {
  transform: scale(1, 1);
  transform-origin: left center;
}

.news-four__single__content {
  position: relative;
  padding: 23px 30px 30px;
}

.news-four__single__meta {
  position: relative;
  margin: 0 0 9px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-four__single__meta li {
  list-style: none;
  font-size: 14px;
  color: var(--zeinet-gray);
  font-weight: 500;
  line-height: 26px;
}

.news-four__single__meta li a {
  color: inherit;
  transition: all 400ms ease;
}

.news-four__single__meta li a:hover {
  color: var(--zeinet-base);
}

.news-four__single__meta li i {
  font-size: 13px;
  color: var(--zeinet-base);
  margin-right: 7px;
}

.news-four__single__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
  margin: 0 0 7px;
}

.news-four__single__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.news-four__single__title a:hover {
  color: var(--zeinet-base);
  background-size: 100% 1px;
}

.news-four__single__text {
  font-size: 14.2px;
  line-height: 25px;
  margin: 0 0 23px;
}

.news-four__single .thm-btn--two {
  background-color: var(--zeinet-black);
  padding: 9px 30.5px;
}

.news-four__single .thm-btn--two::before {
  background-color: var(--zeinet-base);
}

.news-four__single .thm-btn--two span {
  right: -45px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer-two {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 0;
}

@media (max-width: 767px) {
  .site-footer-two {
    padding-top: 80px;
  }
}

.site-footer-two::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--zeinet-black2-rgb), 0.8);
}

.site-footer-two__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.site-footer-two__top {
  background-color: var(--zeinet-extra);
  background-position: left top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: 10px;
  padding: 100px 50px;
}

@media (max-width: 1199px) {
  .site-footer-two__top {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .site-footer-two__top {
    padding: 80px 20px 35px;
  }
}

.site-footer-two__about {
  position: relative;
}

@media (min-width: 1200px) {
  .site-footer-two__about {
    padding-right: 45px;
  }
}

.site-footer-two__about__logo {
  position: relative;
  margin: 0 0 12px;
}

.site-footer-two__about__logo a {
  display: block;
}

.site-footer-two__about__text {
  line-height: 26px;
  margin: 0 0 48px;
}

.site-footer-two__about__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-two__about__social a {
  width: 52px;
  height: 52px;
  background-color: rgba(var(--zeinet-black2-rgb), 0.1);
  color: var(--zeinet-black2);
  transition: all ease 0.4s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.site-footer-two__about__social a:hover {
  background-color: var(--zeinet-primary);
  color: var(--zeinet-white);
}

.site-footer-two .footer-widget__links {
  margin: 0;
  margin-left: -15px;
}

@media (max-width: 1199px) {
  .site-footer-two .footer-widget__links {
    margin-left: 0;
  }
}

.site-footer-two .footer-widget__title {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  text-decoration: underline;
  color: var(--zeinet-black2);
  margin: -3px 0 28px;
}

.site-footer-two .footer-widget__links-list li {
  margin-top: 10px;
}

.site-footer-two .footer-widget__links-list li a {
  color: var(--zeinet-black2);
  font-size: 16px;
  letter-spacing: 0;
}

.site-footer-two .footer-widget__links-list li a:hover {
  color: var(--zeinet-primary);
}

.site-footer-two .footer-widget__links-list li a::after,
.site-footer-two .footer-widget__links-list li a::before {
  background-color: var(--zeinet-primary);
  top: 11px;
}

@media (min-width: 1200px) {
  .site-footer-two__mailchimp {
    padding-left: 16px;
  }
}

.site-footer-two__form {
  position: relative;
  margin-top: 38px;
}

.site-footer-two__form input[type=email] {
  height: 56px;
  width: 100%;
  border: none;
  background-color: var(--zeinet-gray);
  font-size: 16px;
  font-weight: 500;
  color: var(--zeinet-white);
  letter-spacing: 0;
  padding: 0 21px;
  outline: none;
  margin: 0 0 24px;
}

.site-footer-two__form .thm-btn {
  min-width: 175px;
  padding: 13px 30px;
}

@media (max-width: 1199px) {
  .site-footer-two .footer-widget__column {
    margin-bottom: 45px;
  }
}

.site-footer-two__copyright {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 18px;
  color: var(--zeinet-white);
  font-weight: 600;
  padding: 41px 0;
}

@media (max-width: 767px) {
  .site-footer-two__copyright {
    padding: 25px 0;
  }
}

.site-footer-two__copyright a {
  color: inherit;
  transition: all ease 0.4s;
}

.site-footer-two__copyright a:hover {
  color: var(--zeinet-base);
}

.site-footer-two--home-five {
  position: relative;
}

.site-footer-two--home-five::after {
  background-color: rgba(var(--zeinet-black-rgb), 0.8);
}

.site-footer-two--home-five .footer-widget__links-list li a:hover {
  color: var(--zeinet-base);
}

.site-footer-two--home-five .footer-widget__links-list li a::after,
.site-footer-two--home-five .footer-widget__links-list li a::before,
.site-footer-two--home-five .site-footer-two__about__social a:hover {
  background-color: var(--zeinet-base);
}

.scroll-to-target--home-five {
  background-color: var(--zeinet-base);
}

.scroll-to-target--home-five:hover {
  background-color: var(--zeinet-black2);
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/

/*# sourceMappingURL=zeinet.css.map */
.cbx-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  background: #080c10;
}

/* ---------- slides ---------- */
.cbx-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms cubic-bezier(.77, 0, .175, 1),
    visibility 800ms cubic-bezier(.77, 0, .175, 1);
  pointer-events: none;
  z-index: 1;
}

.cbx-slide.cbx-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 2;
}

/* ---------- bg image + Ken Burns ---------- */
.cbx-bg {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
  will-change: transform;
}

.cbx-slide.cbx-active .cbx-bg {
  transform: scale(1);
}

/* ---------- overlays ---------- */
.cbx-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cbx-ov-dark {
  background: linear-gradient(to bottom,
      #00000099);
}

/* .cbx-ov-vignette {
  background: radial-gradient(ellipse at center,
    transparent 35%,
    rgba(10,6,40,0.60) 100%
  );
} */

/* ---------- content layer ---------- */
.cbx-content-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- content box ---------- */
.cbx-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

/* ---------- badge ---------- */
.cbx-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.cbx-badge-line {
  display: block;
  width: 30px;
  height: 2px;
  background: #211470;
  flex-shrink: 0;
}

/* ---------- heading ---------- */
.cbx-heading {
  font-size: clamp(36px, 6.5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease 0.4s, transform 0.75s ease 0.4s;
}

.cbx-accent {
  color: #211470;
  -webkit-text-stroke: 1px #ffffff;
}

/* ---------- subhead ---------- */
.cbx-subhead {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
  /* max-width: 500px; */
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.6s, transform 0.65s ease 0.6s;
}

/* ---------- buttons ---------- */
.cbx-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.8s, transform 0.65s ease 0.8s;
}

.cbx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #211470;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #211470;
  /* clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); */
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.cbx-btn-primary:hover {
  background: transparent;
  color: #ffffff;

  border: 1px solid #ffffff;
}

.cbx-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  transition: border-color 0.3s, background 0.3s;
}

.cbx-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- active slide triggers animations ---------- */
.cbx-slide.cbx-active .cbx-badge,
.cbx-slide.cbx-active .cbx-heading,
.cbx-slide.cbx-active .cbx-subhead,
.cbx-slide.cbx-active .cbx-btns {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- progress bar ---------- */
.cbx-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.10);
  z-index: 30;
}

.cbx-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #211470, #4a3db8);
}

/* ---------- dots ---------- */
.cbx-ui {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cbx-dot {
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.30);
  border: none;
  cursor: pointer;
  transition: width 0.4s, background 0.4s;
  padding: 0;
  outline: none;
}

.cbx-dot.cbx-dot-on {
  width: 46px;
  background: #211470;
}

/* ---------- arrows ---------- */
.cbx-arrows {
  position: absolute;
  bottom: 14px;
  right: clamp(16px, 4vw, 56px);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.cbx-arr {
  width: 44px;
  height: 44px;
  background: rgba(33, 20, 112, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  outline: none;
  backdrop-filter: blur(4px);
}

.cbx-arr:hover {
  background: #211470;
  border-color: #211470;
}

/* ---------- scroll hint ---------- */
.cbx-scroll {
  position: absolute;
  left: clamp(16px, 4vw, 56px);
  bottom: 28px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.40;
}

.cbx-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.cbx-scroll-track {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.20);
  position: relative;
  overflow: hidden;
}

.cbx-scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #211470;
  animation: cbxScrollAnim 2s ease-in-out infinite;
}

@keyframes cbxScrollAnim {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* ---------- mobile responsive ---------- */
@media (max-width: 768px) {
  .cbx-arrows {
    display: none;
  }

  .cbx-scroll {
    display: none;
  }

  .cbx-banner {
    min-height: 100svh;
  }

  .cbx-btns {
    flex-direction: column;
    align-items: center;
  }

  .cbx-btn-primary,
  .cbx-btn-outline {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cbx-heading {
    letter-spacing: 0;
  }

  .cbx-badge {
    letter-spacing: 3px;
    font-size: 10px;
  }

  .cbx-subhead {
    font-size: 12px;
  }
}

.cba-section {
  padding: 50px 0 50px;
  background: #f7f8fc;
  overflow: hidden;
}

/* ---- heading block ---- */
.cba-heading-wrap {
  text-align: center;
  margin-bottom: 55px;
}

.cba-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 12px;
  position: relative;
  padding: 0 18px;
}

.cba-tagline::before,
.cba-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #211470;
  transform: translateY(-50%);
}

.cba-tagline::before {
  right: 100%;
}

.cba-tagline::after {
  left: 100%;
}

.cba-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #12113a;
  margin-bottom: 16px;
}

.cba-title span {
  color: #211470;
}

.cba-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #211470, #4a3db8);
  margin: 0 auto;
  border-radius: 2px;
}

/* ---- content row spacing ---- */
.cba-content-row {
  align-items: center;
  gap-y: 40px;
}

/* ================================================
   IMAGE COLUMN
================================================ */
.cba-img-wrap {
  position: relative;
  padding: 0 0 60px 0;
  margin-bottom: 30px;
}

/* Main image */
.cba-img-main {
  position: relative;
  width: 88%;
  border-radius: 4px;
  overflow: visible;
}

.cba-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 92% 100%, 0 100%);
  box-shadow: 8px 16px 40px rgba(33, 20, 112, 0.18);
}

/* Top-left corner accent */
.cba-corner-tl {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  border-top: 4px solid #211470;
  border-left: 4px solid #211470;
  border-radius: 2px 0 0 0;
  z-index: 2;
}

.cba-corner-br {
  position: absolute;
  bottom: 55px;
  right: 14%;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid #4a3db8;
  border-right: 3px solid #4a3db8;
  border-radius: 0 0 2px 0;
  z-index: 2;
}

/* Inset second image */
.cba-img-inset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  border-radius: 4px;
  z-index: 3;
}

.cba-img-inset img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 4px 8px 24px rgba(33, 20, 112, 0.22);
}

.cba-img-inset-border {
  position: absolute;
  inset: -3px;
  border: 3px solid #ffffff;
  border-radius: 6px;
  pointer-events: none;
}

/* Years counter badge */
.cba-badge {
  position: absolute;
  top: 20px;
  left: -18px;
  z-index: 5;
  background: #211470;
  color: #ffffff;
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 8px 28px rgba(33, 20, 112, 0.40);
  text-align: center;
  min-width: 110px;
}

.cba-badge-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.cba-count {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  display: block;
  width: 100%;
  text-align: center;
}

.cba-plus {
  font-size: 35px;
  font-weight: 700;
  color: white;
  position: absolute;
  top: 45px;
  right: 35px;
}

.cba-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.4;
  margin-top: 4px;
  text-align: center;
}

/* ================================================
   ABOUT CONTENT COLUMN
================================================ */
.cba-info {
  padding-left: 20px;
}

.cba-about-tag {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 14px;
}

.cba-about-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.80;
  text-align: justify;
  color: #444;
  margin-bottom: 16px;
}

.cba-about-text strong {
  color: #211470;
  font-weight: 700;
}

/* keyword chips */
.cba-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.cba-keywords span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  background: rgba(33, 20, 112, 0.08);
  color: #211470;
  border: 1px solid rgba(33, 20, 112, 0.20);
  border-radius: 2px;
}

/* stats */
.cba-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 22px;
  background: #ffffff;
  border: 1px solid rgba(33, 20, 112, 0.12);
  border-radius: 4px;
  padding: 18px 0;
  box-shadow: 0 4px 18px rgba(33, 20, 112, 0.07);
}

.cba-stat {
  flex: 1;
  text-align: center;
}

.cba-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: #211470;
  line-height: 1;
}

.cba-stat sup {
  font-size: 25px;
  font-weight: 700;
  color: #211470;
  top: 2px;
  vertical-align: super;
}

.cba-stat p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}

.cba-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(33, 20, 112, 0.15);
}

/* service areas */
.cba-areas {
  font-size: 17px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.6;
}

.cba-areas-label {
  font-weight: 700;
  color: #211470;
  margin-right: 6px;
}

/* CTA buttons */
.cba-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cba-btn-primary {
  display: inline-block;
  padding: 13px 30px;
  background: #211470;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #211470;
  /* clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); */
  transition: background 0.3s, color 0.3s;
}

.cba-btn-primary:hover {
  background: transparent;
  color: #211470;
}

.cba-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: #211470;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #211470;
  transition: background 0.3s, color 0.3s;
}

.cba-btn-outline:hover {
  background: #211470;
  color: #ffffff;
}

/* ================================================
   MOBILE RESPONSIVE
================================================ */
@media (max-width: 991px) {
  .cba-info {
    padding-left: 0;
    margin-top: 40px;
  }

  .cba-img-main img {
    height: 340px;
  }

  .cba-badge {
    left: 0;
  }
}

@media (max-width: 767px) {
  .cba-section {
    padding: 60px 0;
  }

  .cba-img-wrap {
    padding-bottom: 50px;
  }

  .cba-img-main {
    width: 100%;
  }

  .cba-img-main img {
    height: 280px;
  }

  .cba-img-inset {
    width: 55%;
  }

  .cba-img-inset img {
    height: 160px;
  }

  .cba-badge {
    top: 10px;
    left: 0px;
    padding: 12px 16px;
    min-width: 90px;
  }

  .cba-count {
    font-size: 38px;
  }

  .cba-stats {
    flex-direction: column;
    gap: 12px;
  }

  .cba-stat-divider {
    width: 60%;
    height: 1px;
  }

  .cba-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cba-btn-primary,
  .cba-btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cba-corner-tl {
    top: -6px;
    left: -6px;
    width: 36px;
    height: 36px;
  }
}


/* ---- section shell ---- */
.smv-section {
  padding: 30px 0 30px;
  background: #f5f6fc;
  position: relative;
  overflow: hidden;
}

/* moving grid bg */
.smv-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 20, 112, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 20, 112, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: smvGridDrift 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes smvGridDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 44px 44px;
  }
}

/* glow blobs */
.smv-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.smv-glow-1 {
  width: 500px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(33, 20, 112, 0.08);
  animation: smvPulse 6s ease-in-out infinite alternate;
}

.smv-glow-2 {
  width: 400px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  background: rgba(107, 86, 240, 0.07);
  animation: smvPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes smvPulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.15);
  }
}


:root {
  --primary-red: #211470;
  --dark-deep: #1a1a1a;
  --light-bg: #f8f9fa;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-slider-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

/* --- Card Base Design --- */
.service-card {
  background: #ffffff;
  border-radius: 0;
  /* Keeping the sharp industrial look from your image */
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
}

/* --- Image Zoom Animation --- */
.img-box {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .img-box img {
  transform: scale(1.1);
  /* Subtle zoom on hover */
}

/* --- Content Styling --- */
.content-box {
  padding: 40px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sub-title {
  color: var(--primary-red);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.content-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 15px;
  transition: var(--transition);
}

.content-box p {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* --- Animated Explore Button --- */
.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: var(--dark-deep);
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border-radius: 5px;
}

.explore-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* --- Hover States (The "Lift" Effect) --- */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.service-card:hover h4 {
  color: var(--primary-red);
}

.service-card:hover .explore-btn {
  background: var(--primary-red);
  color: #fff;
}

.service-card:hover .explore-btn i {
  transform: translateX(5px);
}

/* --- Slider Container Spacing --- */
.myServiceSwiper {
  padding: 20px 30px 70px 30px !important;
  position: relative;
  overflow: hidden;
}

/* --- Circular Navigation Buttons (Left & Right) --- */
.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  color: #211470 !important;
  /* Rajendra Red */
  transition: all 0.3s ease-in-out !important;
  top: 45% !important;
  /* Centered relative to the card height */
  z-index: 10;
}

/* Arrow Icon Size */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Hover Effect for Arrows */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #211470 !important;
  color: #ffffff !important;
  transform: scale(1.1);
}

/* Position arrows at the very edges */
.swiper-button-prev {
  left: 5px !important;
}

.swiper-button-next {
  right: 5px !important;
}

/* --- Pagination Dots (Below the Cards) --- */
.swiper-pagination {
  bottom: 10px !important;
  /* Positions dots below the cards */
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px !important;
  transition: all 0.4s ease;
}

/* Modern Pill Shape for Active Slide */
.swiper-pagination-bullet-active {
  background: #211470 !important;
  width: 35px;
  border-radius: 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .myServiceSwiper {
    padding: 10px 10px 60px 10px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
    /* Hide arrows on mobile for cleaner look, use touch swipe */
  }
}


.smv-head {
  text-align: center;
  margin-bottom: 56px;
}

.smv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.smv-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
}

.smv-eyebrow:has(.smv-eyebrow-text) .smv-eyebrow-line:last-child {
  background: linear-gradient(90deg, #211470, transparent);
}

.smv-eyebrow-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #211470;
}

.smv-h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.smv-h2 em {
  font-style: normal;
  color: #211470;
  position: relative;
}

/* underline decoration on em */
.smv-h2 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: smvUnderline 1s ease 0.6s forwards;
}

@keyframes smvUnderline {
  to {
    transform: scaleX(1);
  }
}

.smv-lead {
  font-size: 17px;
  color: #5a5a7a;
  /* max-width: 540px; */
  margin: 0 auto;
  line-height: 1.8;
}

.feature-box {
  background: var(--white);
  padding: 40px 15px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Icon Styling */
.icon-wrapper {
  font-size: 45px;
  color: var(--chakra-blue);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.feature-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Decorative line that appears on hover */
.feature-line {
  width: 0;
  height: 3px;
  background: var(--chakra-red);
  margin: 15px auto 0;
  transition: width 0.4s ease;
}

/* --- Hover Animations --- */

.feature-box:hover {
  background: #fff;
  border-color: var(--chakra-blue);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 119, 182, 0.1);
}

.feature-box:hover .icon-wrapper {
  color: var(--chakra-red);
  transform: scale(1.15) rotate(5deg);
}

.feature-box:hover .feature-line {
  width: 40px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .feature-box {
    padding: 30px 10px;
  }

  .icon-wrapper {
    font-size: 35px;
  }
}

.ckf-section {
  padding: 30px 0 20px;
  background: #f4f5fb;
  position: relative;
  overflow: hidden;
}

/* animated grid bg */
.ckf-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 20, 112, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 20, 112, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: ckfGrid 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ckfGrid {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 44px 44px;
  }
}

/* glow blobs */
.ckf-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ckf-blob-l {
  width: 440px;
  height: 360px;
  top: -80px;
  left: -100px;
  background: rgba(33, 20, 112, 0.07);
  animation: ckfBlob 7s ease-in-out infinite alternate;
}

.ckf-blob-r {
  width: 360px;
  height: 280px;
  bottom: -60px;
  right: -80px;
  background: rgba(107, 86, 240, 0.07);
  animation: ckfBlob 9s ease-in-out infinite alternate-reverse;
}

@keyframes ckfBlob {
  from {
    transform: scale(1);
    opacity: 0.6;
  }

  to {
    transform: scale(1.18);
    opacity: 1;
  }
}

.ckf-section .container {
  position: relative;
  z-index: 2;
}

/* ================================================
   HEADING
================================================ */
.ckf-head {
  text-align: center;
  margin-bottom: 54px;
}

.ckf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 14px;
}

.ckf-ebar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
  flex-shrink: 0;
  font-style: normal;
}

.ckf-eyebrow .ckf-ebar:last-child {
  background: linear-gradient(90deg, #211470, transparent);
}

.ckf-title {
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.ckf-title span {
  color: #211470;
}

.ckf-sub {
  font-size: 17px;
  color: #5a5a7a;
  /* max-width: 540px; */
  margin: 0 auto;
  line-height: 1.78;
}

/* ================================================
   CARDS ROW
================================================ */
.ckf-row {
  margin-top: 8px;
}

/* ---- card ---- */
.ckf-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(33, 20, 112, 0.08);
  padding: 36px 16px 30px;
  text-align: center;
  margin-bottom: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  /* entrance */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.35s,
    border-color 0.35s;
  box-shadow: 0 4px 20px rgba(33, 20, 112, 0.06);
}

/* staggered entrance delays */
.ckf-card--1 {
  transition-delay: 0s;
}

.ckf-card--2 {
  transition-delay: 0.08s;
}

.ckf-card--3 {
  transition-delay: 0.16s;
}

.ckf-card--4 {
  transition-delay: 0.24s;
}

.ckf-card--5 {
  transition-delay: 0.32s;
}

.ckf-card--6 {
  transition-delay: 0.40s;
}

.ckf-card.ckf-visible {
  opacity: 1;
  transform: translateY(0);
}

.ckf-card:hover {
  box-shadow: 0 20px 52px rgba(33, 20, 112, 0.14);
  border-color: rgba(33, 20, 112, 0.22);
  transform: translateY(-10px);
}

/* shimmer sweep on hover */
.ckf-card-glow {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(33, 20, 112, 0.06) 50%,
      transparent 70%);
  pointer-events: none;
  transition: left 0.6s ease;
}

.ckf-card:hover .ckf-card-glow {
  left: 120%;
}

/* top accent line sweep */
.ckf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0, #211470);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(.4, 0, .2, 1);
}

.ckf-card:hover::before {
  transform: scaleX(1);
  animation: ckfShimmer 1.5s linear infinite;
}

@keyframes ckfShimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* ---- icon wrapper ---- */
.ckf-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.ckf-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(33, 20, 112, 0.12);
  background: rgba(33, 20, 112, 0.05);
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.ckf-card:hover .ckf-icon-ring {
  background: #211470;
  border-color: #211470;
  transform: scale(1.08) rotate(-6deg);
}

.ckf-svg {
  width: 55px;
  height: 55px;
  color: #211470;
  position: relative;
  z-index: 1;
  transition: color 0.35s, transform 0.35s;
}

.ckf-card:hover .ckf-svg {
  color: #ffffff;
  transform: scale(1.1);
}

/* ---- title ---- */
.ckf-name {
  font-size: 14px;
  font-weight: 800;
  color: #0e0c2a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.28s;
}

.ckf-card:hover .ckf-name {
  color: #211470;
}

/* ---- desc ---- */
.ckf-desc {
  font-size: 12.5px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 18px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- bottom line ---- */
.ckf-bottom-line {
  width: 28px;
  height: 2px;
  background: rgba(33, 20, 112, 0.18);
  border-radius: 1px;
  transition: width 0.35s, background 0.35s;
  margin-top: auto;
}

.ckf-card:hover .ckf-bottom-line {
  width: 50px;
  background: #211470;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 991px) {
  .ckf-card {
    padding: 28px 14px 24px;
  }
}

@media (max-width: 767px) {
  .ckf-section {
    padding: 60px 0 48px;
  }

  .ckf-head {
    margin-bottom: 36px;
  }

  .ckf-icon-wrap {
    width: 64px;
    height: 64px;
  }

  .ckf-svg {
    width: 28px;
    height: 28px;
  }

  .ckf-name {
    font-size: 12.5px;
    min-height: auto;
  }

  .ckf-desc {
    font-size: 12px;
    min-height: auto;
  }

  .ckf-card {
    padding: 24px 12px 20px;
  }
}

@media (max-width: 480px) {
  .ckf-title {
    letter-spacing: 0;
  }

  .ckf-eyebrow {
    letter-spacing: 4px;
    font-size: 9px;
  }
}

.cct-section {
  position: relative;
  padding: 0;
  height: 400px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
}

/* bg image */
.cct-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.02);
  animation: cctZoom 12s ease-in-out infinite alternate;
}

@keyframes cctZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* overlay */
.cct-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(33, 20, 112, 0.88) 0%,
      rgba(8, 6, 30, 0.82) 50%,
      rgba(33, 20, 112, 0.88) 100%);
  z-index: 1;
}

/* floating particles */
.cct-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cct-p {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: cctFloat linear infinite;
}

.cct-p1 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 5%;
  animation-duration: 14s;
  animation-delay: 0s;
}

.cct-p2 {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 15%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.cct-p3 {
  width: 140px;
  height: 140px;
  top: 20%;
  right: 8%;
  animation-duration: 16s;
  animation-delay: 1s;
}

.cct-p4 {
  width: 70px;
  height: 70px;
  bottom: 15%;
  right: 20%;
  animation-duration: 20s;
  animation-delay: 3s;
}

.cct-p5 {
  width: 90px;
  height: 90px;
  bottom: 25%;
  left: 35%;
  animation-duration: 22s;
  animation-delay: 4s;
}

@keyframes cctFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }

  25% {
    transform: translateY(-30px) rotate(45deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-60px) rotate(90deg);
    opacity: 0.3;
  }

  75% {
    transform: translateY(-30px) rotate(135deg);
    opacity: 0.6;
  }
}

/* content layer */
.cct-section .container {
  position: relative;
  z-index: 3;
}

/* ---- eyebrow ---- */
.cct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 18px;
}

.cct-ebar {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.40);
  flex-shrink: 0;
  font-style: normal;
}

/* ---- heading ---- */
.cct-heading {
  font-size: clamp(30px, 4.5vw, 35px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cct-heading span {
  color: white;
  position: relative;
}

.cct-heading span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #211470, transparent);
  border-radius: 2px;
  animation: cctUnderline 0.8s ease 0.5s both;
}

@keyframes cctUnderline {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ---- sub text ---- */
.cct-sub {
  font-size: 17px;
  color: white;
  line-height: 1.8;
  /* max-width: 520px; */
  margin: 0 auto 15px;
}

/* ---- divider ---- */
.cct-divider {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.cct-div-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.20);
}

.cct-div-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #211470;
  animation: cctSpin 8s linear infinite;
}

@keyframes cctSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ================================================
   BUTTONS
================================================ */
.cct-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

/* phone button */
.cct-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px 14px 18px;
  background: #ffffff;
  color: #211470;
  text-decoration: none;
  border-radius: 60px;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: background 0.30s, color 0.30s, transform 0.22s, box-shadow 0.30s;
}

.cct-btn-phone:hover {
  background: #211470;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cct-btn-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #211470;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.30s;
  animation: cctRing 2.4s ease-in-out infinite;
}

@keyframes cctRing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.cct-btn-phone:hover .cct-btn-phone-icon {
  background: rgba(255, 255, 255, 0.20);
}

.cct-btn-phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.cct-btn-phone-text small {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
}

.cct-btn-phone-text strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* contact button */
.cct-btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.40);
  border-radius: 60px;
  transition: background 0.30s, border-color 0.30s, gap 0.28s, transform 0.22s;
}

.cct-btn-contact:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  gap: 16px;
  transform: translateY(-3px);
}

.cct-btn-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.28s, transform 0.28s;
}

.cct-btn-contact:hover .cct-btn-ic {
  background: rgba(255, 255, 255, 0.30);
  transform: translateX(3px);
}

/* ================================================
   INFO STRIP
================================================ */
.cct-info-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  backdrop-filter: blur(6px);
}

.cct-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.cct-info-item svg {
  opacity: 0.70;
  flex-shrink: 0;
}

.cct-info-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 767px) {
  .cct-section {
    padding: 72px 0 68px;
    height: auto;
  }

  .cct-btns {
    flex-direction: column;
    align-items: center;
  }

  .cct-btn-phone {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cct-btn-contact {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cct-info-strip {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
  }

  .cct-info-sep {
    display: none;
  }

  .cct-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .cct-eyebrow {
    letter-spacing: 4px;
    font-size: 9px;
  }

  .cct-btn-phone-text strong {
    font-size: 15px;
  }
}

.wcu-section {
  padding: 20px 0 30px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.wcu-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 20, 112, 0.065) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ================================================
   HEADING
================================================ */
.wcu-head {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 16px;
}

.wcu-ebar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
  flex-shrink: 0;
  font-style: normal;
}

.wcu-eyebrow .wcu-ebar:last-child {
  background: linear-gradient(90deg, #211470, transparent);
}

.wcu-h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.wcu-h2 span {
  color: #211470;
  position: relative;
}

.wcu-h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0, transparent);
  border-radius: 2px;
  animation: wcuLine 0.9s ease 0.3s both;
  transform-origin: left;
}

@keyframes wcuLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.wcu-lead {
  font-size: 17px;
  color: #5a5a7a;
  /* max-width: 560px; */
  margin: 0 auto;
  line-height: 1.8;
}

/* ================================================
   CARDS ROW
================================================ */
.wcu-row {
  position: relative;
  align-items: flex-start;
}

.wcu-col {
  padding-left: 12px;
  padding-right: 12px;
}

/* ================================================
   CONNECTING STEP LINE
   Sits at the top of each card, spanning full width
   Last card has no right connector
================================================ */
.wcu-step-wrap {
  position: relative;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  z-index: 2;
}

/* full-width track line through card top */
.wcu-step-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(33, 20, 112, 0.10);
  transform: translateY(-50%);
}

/* numbered circle on track */
.wcu-step-dot {
  position: relative;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(33, 20, 112, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(33, 20, 112, 0.08);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.wcu-step-dot span {
  font-size: 13px;
  font-weight: 800;
  color: #211470;
  letter-spacing: 1px;
  transition: color 0.28s;
}

/* right-side connector between cards */
.wcu-line-right {
  position: absolute;
  top: 25px;
  /* aligns with step dot center */
  right: -12px;
  width: 24px;
  height: 2px;
  background: rgba(33, 20, 112, 0.10);
  z-index: 1;
}

/* ================================================
   CARD
================================================ */
.wcu-card {
  background: #f8f8fd;
  border: 1px solid rgba(33, 20, 112, 0.08);
  border-radius: 18px;
  padding: 0 26px 30px;
  text-align: center;
  position: relative;
  overflow: visible;
  margin-bottom: 24px;
  transition:
    transform 0.36s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.36s,
    border-color 0.36s;
  /* CSS entrance */
  animation: wcuRise 0.65s ease both;
}

.wcu-card-1 {
  animation-delay: 0.00s;
}

.wcu-card-2 {
  animation-delay: 0.12s;
}

.wcu-card-3 {
  animation-delay: 0.24s;
}

.wcu-card-4 {
  animation-delay: 0.36s;
}

@keyframes wcuRise {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wcu-card:hover {
  transform: translateY(-12px);
  border-color: rgba(33, 20, 112, 0.22);
  box-shadow: 0 24px 56px rgba(33, 20, 112, 0.12);
}

/* hovered step dot fills purple */
.wcu-card:hover .wcu-step-dot {
  background: #211470;
  border-color: #211470;
  box-shadow: 0 6px 22px rgba(33, 20, 112, 0.30);
  transform: scale(1.08);
}

.wcu-card:hover .wcu-step-dot span {
  color: #ffffff;
}

/* glowing top bar on hover */
.wcu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #211470, #6b56f0, transparent);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transition: transform 0.40s cubic-bezier(.4, 0, .2, 1);
}

.wcu-card:hover::before {
  transform: scaleX(1);
}

/* active track highlight on hover */
.wcu-card:hover .wcu-step-track {
  background: linear-gradient(90deg, rgba(33, 20, 112, 0.08), rgba(33, 20, 112, 0.25), rgba(33, 20, 112, 0.08));
  transition: background 0.35s;
}

/* ================================================
   ICON
================================================ */
.wcu-icon {
  width: 70px;
  height: 70px;
  background: rgba(33, 20, 112, 0.06);
  border: 1px solid rgba(33, 20, 112, 0.10);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.35s, border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.wcu-icon svg {
  width: 50px;
  height: 50px;
  color: #211470;
  transition: color 0.35s, transform 0.32s;
}

.wcu-card:hover .wcu-icon {
  background: #211470;
  border-color: #211470;
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 8px 24px rgba(33, 20, 112, 0.22);
}

.wcu-card:hover .wcu-icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

/* ================================================
   TEXT
================================================ */
.wcu-title {
  font-size: 22px;
  font-weight: 800;
  color: #0e0c2a;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  transition: color 0.28s;
}

.wcu-card:hover .wcu-title {
  color: #211470;
}

.wcu-text {
  font-size: 17px;
  color: #6b6b8a;
  line-height: 1.72;
  margin-bottom: 18px;
}

/* badge */
.wcu-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #211470;
  background: rgba(33, 20, 112, 0.07);
  border: 1px solid rgba(33, 20, 112, 0.15);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
}

.wcu-card:hover .wcu-badge {
  background: #211470;
  color: #ffffff;
  border-color: #211470;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 991px) {
  .wcu-head {
    margin-bottom: 50px;
  }

  .wcu-line-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .wcu-section {
    padding: 64px 0 52px;
  }

  .wcu-card {
    padding: 0 20px 26px;
  }

  .wcu-icon {
    width: 60px;
    height: 60px;
  }

  .wcu-icon svg {
    width: 26px;
    height: 26px;
  }

  .wcu-title {
    font-size: 15px;
  }

  .wcu-text {
    font-size: 12.5px;
  }
}

@media (max-width: 480px) {
  .wcu-eyebrow {
    letter-spacing: 4px;
    font-size: 9px;
  }
}

.csa-section {
  padding: 30px 0 40px;
  background: #f4f5fb;
  position: relative;
  overflow: hidden;
}

.csa-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 20, 112, 0.065) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.csa-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: csaBlob 8s ease-in-out infinite alternate;
}

.csa-glow-l {
  width: 380px;
  height: 300px;
  top: -60px;
  left: -80px;
  background: rgba(33, 20, 112, 0.07);
}

.csa-glow-r {
  width: 320px;
  height: 260px;
  bottom: -50px;
  right: -60px;
  background: rgba(107, 86, 240, 0.06);
  animation-direction: alternate-reverse;
}

@keyframes csaBlob {
  from {
    transform: scale(1);
    opacity: 0.6;
  }

  to {
    transform: scale(1.18);
    opacity: 1;
  }
}

.csa-section .container {
  position: relative;
  z-index: 2;
}

/* ================================================
   HEADING
================================================ */
.csa-head {
  text-align: center;
  margin-bottom: 52px;
}

.csa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 14px;
}

.csa-ebar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
  flex-shrink: 0;
  font-style: normal;
}

.csa-eyebrow .csa-ebar:last-child {
  background: linear-gradient(90deg, #211470, transparent);
}

.csa-h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.csa-h2 span {
  color: #211470;
  position: relative;
}

.csa-h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0, transparent);
  border-radius: 2px;
  animation: csaUnder 0.9s ease 0.3s both;
  transform-origin: left;
}

@keyframes csaUnder {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.csa-lead {
  font-size: 17px;
  color: #5a5a7a;
  /* max-width: 580px; */
  margin: 0 auto;
  line-height: 1.8;
}

/* ================================================
   HQ BANNER
================================================ */
.csa-hq {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #211470;
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 28px;
  animation: csaRise 0.6s ease both;
}

.csa-hq-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.csa-hq-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.csa-hq-text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.csa-hq-text span {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* ================================================
   STATES GRID
================================================ */
.csa-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

/* ---- state block ---- */
.csa-state-block {
  background: #ffffff;
  border: 1px solid rgba(33, 20, 112, 0.09);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.32s, border-color 0.32s;
  animation: csaRise 0.65s ease both;
}

.csa-tn {
  animation-delay: 0.08s;
}

.csa-ap {
  animation-delay: 0.18s;
}

@keyframes csaRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.csa-state-block:hover {
  border-color: rgba(33, 20, 112, 0.20);
  box-shadow: 0 16px 48px rgba(33, 20, 112, 0.09);
}

/* state header */
.csa-state-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(33, 20, 112, 0.07);
}

.csa-state-icon {
  width: 42px;
  height: 42px;
  background: rgba(33, 20, 112, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #211470;
  flex-shrink: 0;
  transition: background 0.28s;
}

.csa-state-block:hover .csa-state-icon {
  background: #211470;
  color: #ffffff;
}

.csa-state-name {
  font-size: 23px;
  font-weight: 800;
  color: #0e0c2a;
  line-height: 1.1;
  margin: 0 0 3px;
}

.csa-state-count {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(33, 20, 112, 0.45);
}

/* state abbreviation badge */
.csa-state-badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #211470;
  background: rgba(33, 20, 112, 0.08);
  border: 1px solid rgba(33, 20, 112, 0.14);
  padding: 5px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}

.csa-badge-ap {
  color: #0f7d5a;
  background: rgba(15, 125, 90, 0.08);
  border-color: rgba(15, 125, 90, 0.18);
}

/* districts grid */
.csa-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.csa-district {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #f6f7fd;
  border: 1px solid rgba(33, 20, 112, 0.08);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #3a3a5a;
  cursor: default;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.22s;
}

.csa-district:hover {
  background: #211470;
  border-color: #211470;
  color: #ffffff;
  transform: translateY(-2px);
}

.csa-district:hover .csa-pin svg path {
  fill: #ffffff;
}

/* featured districts slightly larger */
.csa-d-featured {
  background: rgba(33, 20, 112, 0.06);
  border-color: rgba(33, 20, 112, 0.16);
  font-weight: 700;
  color: #211470;
}

/* pin icon */
.csa-pin {
  display: inline-flex;
  align-items: center;
  color: #211470;
  flex-shrink: 0;
}

.csa-pin-ap {
  color: #0f7d5a;
}

.csa-district:hover .csa-pin {
  color: #ffffff;
}

/* HQ tag */
.csa-hq-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: #211470;
  padding: 2px 6px;
  border-radius: 4px;
  font-style: normal;
  margin-left: 2px;
}

/* ================================================
   BOTTOM STRIP
================================================ */
.csa-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(33, 20, 112, 0.08);
  border-radius: 12px;
  padding: 16px 28px;
  animation: csaRise 0.7s ease 0.28s both;
}

.csa-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #5a5a7a;
}

.csa-strip-item svg {
  color: #211470;
  flex-shrink: 0;
}

.csa-strip-sep {
  width: 1px;
  height: 20px;
  background: rgba(33, 20, 112, 0.12);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 767px) {
  .csa-section {
    padding: 64px 0 52px;
  }

  .csa-states {
    grid-template-columns: 1fr;
  }

  .csa-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .csa-strip-sep {
    display: none;
  }

  .csa-hq {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .csa-state-block {
    padding: 20px 16px;
  }

  .csa-eyebrow {
    letter-spacing: 4px;
    font-size: 9px;
  }
}

.ftr-footer {
  background: #12113a;
  position: relative;
  overflow: hidden
}

.ftr-wave {
  line-height: 0;
  margin-top: -1px
}

.ftr-wave svg {
  width: 100%;
  height: 60px;
  display: block
}

.ftr-main {
  padding: 60px 0 48px
}

.ftr-brand {
  padding-right: 24px
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.ftr-logo-icon img {
  border-radius: 10px;
}

.ftr-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.ftr-logo-name {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1
}

.ftr-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38)
}

.ftr-about {
  font-size: 16px;
  color: white;
  line-height: 1.78;
  margin-bottom: 6px
}

.ftr-tagline {
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 20px
}

.ftr-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.ftr-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: background .24s, color .24s, border-color .24s, transform .20s
}

.ftr-soc:hover {
  background: #211470;
  border-color: #211470;
  color: #fff;
  transform: translateY(-3px)
}

.ftr-soc-wa:hover {
  background: #25d366;
  border-color: #25d366
}

.ftr-col {
  padding-right: 12px
}

.ftr-col-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative
}

.ftr-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #6b56f0, transparent);
  border-radius: 1px
}

.ftr-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ftr-links li a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .20s, gap .20s;
  line-height: 1.4
}

.ftr-links li a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(107, 86, 240, 0.40);
  flex-shrink: 0;
  transition: background .20s, transform .20s
}

.ftr-links li a:hover {
  color: #fff;
  gap: 12px
}

.ftr-links li a:hover::before {
  background: #6b56f0;
  transform: scale(1.5)
}

.ftr-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ftr-contact-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start
}

.ftr-ci {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(107, 86, 240, 0.11);
  border: 1px solid rgba(107, 86, 240, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b56f0
}

.ftr-contact-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.ftr-contact-list li small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  line-height: 1
}

.ftr-contact-list li a,
.ftr-contact-list li span {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  line-height: 1.55;
  transition: color .20s
}

.ftr-contact-list li a:hover {
  color: #fff
}

/* road */
.ftr-road-section {
  position: relative;
  overflow: hidden
}

.ftr-road {
  position: relative;
  height: 50px;
  background: #090818;
  border-top: 2px solid rgba(107, 86, 240, 0.18);
  border-bottom: 2px solid rgba(107, 86, 240, 0.18);
  overflow: hidden
}

.ftr-road-dash {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 28px, transparent 28px, transparent 56px)
}

.ftr-tractor {
  position: absolute;
  bottom: 2px;
  animation: ftrTract 20s linear infinite
}

@keyframes ftrTract {
  from {
    left: -90px
  }

  to {
    left: 110%
  }
}

.ftr-lorry {
  position: absolute;
  top: 2px;
  animation: ftrLorr 15s linear infinite
}

@keyframes ftrLorr {
  from {
    right: -120px
  }

  to {
    right: 110%
  }
}

/* marquee */
.ftr-mq-wrap {
  overflow: hidden;
  background: rgba(33, 20, 112, 0.16);
  border-bottom: 1px solid rgba(107, 86, 240, 0.14)
}

.ftr-mq-track {
  display: flex;
  white-space: nowrap;
  animation: ftrMq 28s linear infinite
}

.ftr-mq-set {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
}

.ftr-mq-ico {
  font-style: normal;
  color: #6b56f0;
  margin: 0 10px;
  font-size: 10px
}

@keyframes ftrMq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* copyright */
.ftr-copy {
  background: rgba(0, 0, 0, 0.22);
  padding: 14px 0
}

.ftr-copy-l,
.ftr-copy-l a,
.ftr-copy-r {
  font-size: 16px;
  color: white;
  display: flex;
  justify-content: center;
  margin: 0;
  line-height: 1.6
}

.ftr-copy-l strong {
  color: white;
  font-weight: 700
}

.ftr-copy-r {
  text-align: right
}

.ftr-heart {
  color: #e85d5d;
  display: inline-block;
  animation: ftrHb 1.2s ease-in-out infinite
}

@keyframes ftrHb {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.3)
  }
}

@media(max-width:991px) {
  .ftr-brand {
    padding-right: 0
  }

  .ftr-copy-r {
    text-align: left;
    margin-top: 4px
  }
}

@media(max-width:767px) {
  .ftr-main {
    padding: 42px 0 36px
  }

  .ftr-col {
    padding-right: 0
  }

  .ftr-copy-r {
    text-align: left
  }
}

.tsl-section {
  padding: 30px 0 30px;
  background: #f4f5fb;
  position: relative;
  overflow: hidden;
}

.tsl-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 20, 112, 0.065) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tsl-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: tslBlob 8s ease-in-out infinite alternate;
}

.tsl-gl {
  width: 380px;
  height: 300px;
  top: -60px;
  left: -80px;
  background: rgba(33, 20, 112, 0.07);
}

.tsl-gr {
  width: 320px;
  height: 260px;
  bottom: -50px;
  right: -60px;
  background: rgba(107, 86, 240, 0.06);
  animation-direction: alternate-reverse;
}

@keyframes tslBlob {
  from {
    transform: scale(1);
    opacity: .6
  }

  to {
    transform: scale(1.18);
    opacity: 1
  }
}

.tsl-section .container {
  position: relative;
  z-index: 2;
}

/* ---- heading ---- */
.tsl-head {
  text-align: center;
  margin-bottom: 52px;
}

.tsl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 14px;
}

.tsl-ebar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
  flex-shrink: 0;
  font-style: normal;
}

.tsl-eyebrow .tsl-ebar:last-child {
  background: linear-gradient(90deg, #211470, transparent);
}

.tsl-h2 {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.4px;
}

.tsl-h2 span {
  color: #211470;
  position: relative;
}

.tsl-h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0, transparent);
  border-radius: 2px;
  animation: tslUnder .9s ease .3s both;
  transform-origin: left;
}

@keyframes tslUnder {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.tsl-lead {
  font-size: 17px;
  color: #5a5a7a;
  /* max-width: 520px; */
  margin: 0 auto;
  line-height: 1.8;
}

/* ================================================
   SLIDER — arrow outside clip
================================================ */
.tsl-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tsl-clip {
  flex: 1;
  overflow: hidden;
  padding: 12px 0 16px;
}

.tsl-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ================================================
   CARD  — col-lg-4 equivalent = 1/3 width
================================================ */
.tsl-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(33, 20, 112, 0.08);
  box-shadow: 0 4px 24px rgba(33, 20, 112, 0.07);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .34s cubic-bezier(.4, 0, .2, 1), box-shadow .34s;
}

.tsl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
}

.tsl-card:hover::before {
  transform: scaleX(1);
}

.tsl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(33, 20, 112, 0.13);
}

/* card top row */
.tsl-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* quote icon */
.tsl-quote {
  color: rgba(33, 20, 112, 0.18);
  flex-shrink: 0;
  margin-top: 2px;
}

/* stars */
.tsl-stars {
  display: flex;
  gap: 2px;
  color: #f0c040;
  flex-shrink: 0;
}

/* text */
.tsl-text {
  font-size: 17px;
  color: #555;
  line-height: 1.78;
  margin-bottom: 22px;
  flex: 1;
  text-align: justify;
}

/* footer */
.tsl-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 20, 112, 0.07);
}

/* avatar */
.tsl-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #211470, #6b56f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.tsl-av2 {
  background: linear-gradient(135deg, #0f7d5a, #25b589);
}

.tsl-av3 {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.tsl-av4 {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.tsl-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tsl-name {
  font-size: 14px;
  font-weight: 800;
  color: #0e0c2a;
  line-height: 1.2;
}

.tsl-role {
  font-size: 13px;
  font-weight: 500;
  color: rgba(33, 20, 112, 0.50);
  letter-spacing: .5px;
}

/* ================================================
   NAV ARROWS — outside clip, always visible
================================================ */
.tsl-nav {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 2px solid rgba(33, 20, 112, 0.14);
  border-radius: 50%;
  color: #211470;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(33, 20, 112, 0.10);
  transition: border-color .28s, transform .22s, box-shadow .28s;
}

.tsl-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #211470;
  transform: scale(0);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.tsl-nav:hover::before {
  transform: scale(1);
}

.tsl-nav:hover {
  border-color: #211470;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(33, 20, 112, 0.20);
}

.tsl-nav svg {
  position: relative;
  z-index: 1;
  transition: color .28s;
}

.tsl-nav:hover svg {
  color: #ffffff;
}

/* ================================================
   DOTS
================================================ */
.tsl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.tsl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(33, 20, 112, 0.18);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: background .28s, transform .28s, width .32s;
  flex-shrink: 0;
}

.tsl-dot.tsl-on {
  background: #211470;
  width: 28px;
  border-radius: 5px;
  transform: scale(1);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width:991px) {
  .tsl-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width:600px) {
  .tsl-section {
    padding: 62px 0 52px;
  }

  .tsl-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .tsl-text {
    font-size: 13px;
  }

  .tsl-nav {
    width: 40px;
    height: 40px;
  }

  .tsl-nav svg {
    width: 15px;
    height: 15px;
  }

  .tsl-slider {
    gap: 8px;
  }
}

.cnt-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

/* bg image */
.cnt-bg-img {
  position: absolute;
  inset: 0;
  background-image: url(../images/chakra/counter.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: cntZoom 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes cntZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* dark gradient overlay */
.cnt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(14, 10, 50, 0.92) 0%,
      rgba(33, 20, 112, 0.85) 50%,
      rgba(14, 10, 50, 0.92) 100%);
  z-index: 1;
}

/* subtle grid overlay */
.cnt-overlay-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 2;
  pointer-events: none;
}

.cnt-section .container {
  position: relative;
  z-index: 3;
}

/* ================================================
   ROW
================================================ */
.cnt-row {
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ================================================
   SEPARATOR COLUMNS
================================================ */
.cnt-sep-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: auto;
  flex: 0 0 auto;
}

.cnt-sep {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.20), transparent);
}

/* ================================================
   CARD
================================================ */
.cnt-card {
  text-align: center;
  padding: 12px 20px;
  position: relative;
  /* entrance animation */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cnt-card.cnt-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger per card */
.col-lg-3:nth-child(1) .cnt-card {
  transition-delay: 0.00s;
}

.col-lg-3:nth-child(3) .cnt-card {
  transition-delay: 0.12s;
}

.col-lg-3:nth-child(5) .cnt-card {
  transition-delay: 0.24s;
}

.col-lg-3:nth-child(7) .cnt-card {
  transition-delay: 0.36s;
}

/* ---- icon ---- */
.cnt-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.32s, transform 0.32s;
}

.cnt-card:hover .cnt-icon-wrap {
  background: rgba(107, 86, 240, 0.25);
  transform: scale(1.08) rotate(-4deg);
}

/* ---- number ---- */
.cnt-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.cnt-num {
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
}

.cnt-suffix {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: #ffffff;
  position: relative;
  line-height: 1;
  margin-left: 5px;
  top: -7px;
}

/* ---- animated underbar ---- */
.cnt-bar {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  margin: 0 auto 14px;
  overflow: hidden;
}

.cnt-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6b56f0, #a092ff);
  border-radius: 2px;
  transition: width 1.4s ease 0.4s;
}

.cnt-card.cnt-visible .cnt-bar-fill {
  width: 100%;
}

/* ---- label ---- */
.cnt-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin: 0;
  line-height: 1.4;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 991px) {
  .cnt-sep-col {
    display: none;
  }

  .cnt-row {
    row-gap: 32px;
  }

  .cnt-section {
    padding: 72px 0;
  }
}

@media (max-width: 575px) {
  .cnt-section {
    padding: 56px 0;
  }

  .cnt-card {
    padding: 8px 12px;
  }

  .cnt-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .cnt-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  .cnt-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

.abt-section {
  padding: 30px 0 30px;
  background: #ffffff;
  position: relative;
  overflow: hidden
}

.abt-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(33, 20, 112, 0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0
}

.abt-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: abtBlob 9s ease-in-out infinite alternate
}

.abt-gl {
  width: 420px;
  height: 340px;
  top: -80px;
  left: -100px;
  background: rgba(33, 20, 112, 0.06)
}

.abt-gr {
  width: 360px;
  height: 280px;
  bottom: -60px;
  right: -80px;
  background: rgba(107, 86, 240, 0.06);
  animation-direction: alternate-reverse
}

@keyframes abtBlob {
  from {
    transform: scale(1);
    opacity: .6
  }

  to {
    transform: scale(1.2);
    opacity: 1
  }
}

.abt-section .container {
  position: relative;
  z-index: 2
}

/* heading */
.abt-head {
  text-align: center;
  margin-bottom: 60px
}

.abt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #211470;
  margin-bottom: 14px
}

.abt-ebar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
  flex-shrink: 0;
  font-style: normal
}

.abt-eyebrow .abt-ebar:last-child {
  background: linear-gradient(90deg, #211470, transparent)
}

.abt-h1 {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.4px
}

.abt-h1 span {
  color: #211470
}

.abt-head-sub {
  font-size: 17px;
  color: #5a5a7a;
  /* max-width: 620px; */
  margin: 0 auto;
  line-height: 1.78
}

/* content row */
.abt-content-row {
  row-gap: 48px
}

/* image */
.abt-img-block {
  position: relative;
  padding: 0 0 32px
}

.abt-img-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(33, 20, 112, 0.14)
}

.abt-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease
}

.abt-img-block:hover .abt-img-main img {
  transform: scale(1.04)
}

.abt-img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(33, 20, 112, 0.30) 100%)
}

/* badges */
.abt-badge-exp {
  position: absolute;
  bottom: 0;
  left: -18px;
  background: #211470;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 36px rgba(33, 20, 112, 0.30);
  animation: abtFloat 4s ease-in-out infinite alternate;
  z-index: 4
}

@keyframes abtFloat {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-8px)
  }
}

.abt-badge-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px
}

.abt-badge-num sup {
  font-size: 23px;
  color: white;
  top: 0px;
  /* vertical-align: super */
}

.abt-badge-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.4;
  margin-top: 4px
}

.abt-badge-stat {
  position: absolute;
  bottom: 0;
  right: -18px;
  background: #fff;
  border: 1px solid rgba(33, 20, 112, 0.10);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(33, 20, 112, 0.10);
  z-index: 4;
  animation: abtFloat2 5s ease-in-out infinite alternate
}

@keyframes abtFloat2 {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-6px)
  }
}

.abt-stat-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px
}

.abt-stat-n {
  font-size: 20px;
  font-weight: 900;
  color: #211470;
  line-height: 1;
  letter-spacing: -.5px
}

.abt-stat-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap
}

.abt-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(33, 20, 112, 0.10)
}

.abt-corner-tl,
.abt-corner-br {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: rgba(33, 20, 112, 0.20);
  border-style: solid;
  border-radius: 4px;
  z-index: 3
}

.abt-corner-tl {
  top: -10px;
  left: -10px;
  border-width: 3px 0 0 3px
}

.abt-corner-br {
  bottom: 22px;
  right: -10px;
  border-width: 0 3px 3px 0
}

/* content */
.abt-content {
  padding-left: 20px
}

.abt-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #211470;
  background: rgba(33, 20, 112, 0.07);
  border: 1px solid rgba(33, 20, 112, 0.14);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px
}

.abt-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #211470;
  flex-shrink: 0;
  animation: abtDot 2s ease-in-out infinite
}

@keyframes abtDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 20, 112, 0.4)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(33, 20, 112, 0)
  }
}

.abt-h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color: #0e0c2a;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -.3px
}

.abt-h2 em {
  font-style: normal;
  color: #211470;
  position: relative
}

.abt-h2 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0, transparent);
  border-radius: 2px;
  animation: abtLine .9s ease .4s both;
  transform-origin: left
}

@keyframes abtLine {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.abt-para {
  font-size: 16px;
  color: #555;
  line-height: 1.82;
  text-align: justify;
  margin-bottom: 14px
}

.abt-para strong {
  color: #0e0c2a;
  font-weight: 700
}

.abt-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.abt-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.55
}

.abt-list li strong {
  color: #0e0c2a;
  font-weight: 700
}

.abt-list-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(33, 20, 112, 0.08);
  border: 1px solid rgba(33, 20, 112, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #211470;
  transition: background .26s
}

.abt-list li:hover .abt-list-icon {
  background: #211470;
  color: #fff
}

.abt-info-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f6f7fd;
  border: 1px solid rgba(33, 20, 112, 0.09);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 26px
}

.abt-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1
}

.abt-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(33, 20, 112, 0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #211470
}

.abt-info-item div {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.abt-info-item small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(33, 20, 112, 0.45)
}

.abt-info-item strong {
  font-size: 13px;
  font-weight: 800;
  color: #0e0c2a
}

.abt-info-sep {
  width: 1px;
  height: 36px;
  background: rgba(33, 20, 112, 0.10);
  margin: 0 16px;
  flex-shrink: 0
}

.abt-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.abt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #211470, #3d2bac);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 0 6px 24px rgba(33, 20, 112, 0.26);
  transition: background .30s, color .30s, border-color .30s, box-shadow .30s, gap .26s
}

.abt-btn-primary:hover {
  background: transparent;
  color: #211470;
  border-color: #211470;
  box-shadow: none;
  gap: 14px
}

.abt-btn-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .26s, transform .26s
}

.abt-btn-primary:hover .abt-btn-ic {
  background: #211470;
  transform: translateX(4px)
}

.abt-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: transparent;
  color: #211470;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(33, 20, 112, 0.22);
  transition: background .28s, color .28s, border-color .28s, transform .22s
}

.abt-btn-outline:hover {
  background: #211470;
  color: #fff;
  border-color: #211470;
  transform: translateY(-2px)
}

.abt-btn-phone-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(33, 20, 112, 0.08);
  border-radius: 50%;
  color: #211470;
  flex-shrink: 0;
  transition: background .26s, color .26s
}

.abt-btn-outline:hover .abt-btn-phone-ic {
  background: rgba(255, 255, 255, 0.18);
  color: #fff
}

/* responsive */
@media(max-width:991px) {
  .abt-content {
    padding-left: 0;
    margin-top: 40px
  }

  .abt-badge-exp {
    left: 10px
  }

  .abt-badge-stat {
    right: 10px
  }
}

@media(max-width:767px) {
  .abt-section {
    padding: 62px 0 56px
  }

  .abt-head {
    margin-bottom: 40px
  }

  .abt-img-main img {
    height: 280px
  }

  .abt-badge-exp {
    padding: 12px 16px
  }

  .abt-badge-num {
    font-size: 28px
  }

  .abt-info-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .abt-info-sep {
    display: none
  }

  .abt-btns {
    flex-direction: column
  }

  .abt-btn-primary,
  .abt-btn-outline {
    width: 100%;
    justify-content: center
  }
}

@media(max-width:480px) {
  .abt-eyebrow {
    letter-spacing: 4px;
    font-size: 9px
  }

  .abt-corner-tl,
  .abt-corner-br {
    display: none
  }
}
.mvv-section {
  padding: 20px 0 30px;
  background: #f4f5fb;
  position: relative;
  overflow: hidden;
}
.mvv-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* heading */
.mvv-head { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.mvv-eyebrow { display:inline-flex; align-items:center; gap:12px; font-size:14px; font-weight:800; letter-spacing:7px; text-transform:uppercase; color:#211470; margin-bottom:14px; }
.mvv-ebar { display:inline-block; width:28px; height:2px; background:linear-gradient(90deg,transparent,#211470); flex-shrink:0; font-style:normal; }
.mvv-eyebrow .mvv-ebar:last-child { background:linear-gradient(90deg,#211470,transparent); }
.mvv-h2 { font-size:clamp(26px,3.6vw,44px); font-weight:900; color:#0e0c2a; line-height:1.15; margin-bottom:12px; letter-spacing:-.3px; }
.mvv-h2 span { color:#211470; }
.mvv-lead { font-size:17px; color:#5a5a7a;  margin:0 auto; line-height:1.75; }

/* row */
.mvv-row { row-gap: 32px; }

/* ---- card ---- */
.mvv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  /* entrance */
  opacity: 0;
  transform: translateY(40px);
  animation: mvvRise 0.7s cubic-bezier(.4,0,.2,1) forwards;
}
.mvv-card-1 { animation-delay: 0.05s; }
.mvv-card-2 { animation-delay: 0.18s; }
.mvv-card-3 { animation-delay: 0.31s; }
@keyframes mvvRise {
  to { opacity:1; transform:translateY(0); }
}

/* ---- circle wrap ---- */
.mvv-circle-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 8px;
  flex-shrink: 0;
}

/* arc SVG fills the whole wrap */
.mvv-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}

/* arc stroke draw animation */
.mvv-svg circle:last-child {
  stroke-dasharray: 0 628;
  animation: mvvArc 1.3s cubic-bezier(.4,0,.2,1) 0.4s forwards;
}
@keyframes mvvArc {
  to { stroke-dasharray: 502 126; }
}

/* inner white filled circle — sits above SVG */
.mvv-circle-inner {
  position: absolute;
  inset: 14px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 40px rgba(33,20,112,0.12),
    0 2px 10px rgba(33,20,112,0.06);
  transition: transform 0.34s cubic-bezier(.4,0,.2,1), box-shadow 0.34s;
  z-index: 2;
}
.mvv-card:hover .mvv-circle-inner {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 22px 56px rgba(33,20,112,0.18),
    0 4px 16px rgba(33,20,112,0.08);
}

/* icon inside circle */
.mvv-icon {
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.30s;

}

.mvv-icon svg { width: 60px; height: 60px; }
.mvv-card:hover .mvv-icon { transform: scale(1.10) rotate(-4deg); }

/* reflection below circle */
.mvv-reflect {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 1;
  transition: opacity 0.3s;
}
.mvv-card:hover .mvv-reflect { opacity: 0.8; }

/* ---- title ---- */
.mvv-title {
  font-size: 22px;
  font-weight: 900;
  color: #0e0c2a;
  letter-spacing: 3px;
  margin: 24px 0 10px;
  position: relative;
  transition: color 0.26s;
}
.mvv-title::after {
  content: '';
  display: block;
  width: 30px; height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0);
  border-radius: 2px;
  margin: 8px auto 0;
  transition: width 0.32s;
}
.mvv-card:hover .mvv-title { color: #211470; }
.mvv-card:hover .mvv-title::after { width: 52px; }

/* ---- text ---- */
.mvv-text {
  font-size: 17px;
  color: #666;
  line-height: 1.78;
  /* max-width: 290px; */
  margin: 0 auto;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 991px) {
  .mvv-circle-wrap { width: 190px; height: 190px; }
}
@media (max-width: 767px) {
  .mvv-section { padding: 62px 0 52px; }
  .mvv-head { margin-bottom: 40px; }
  .mvv-circle-wrap { width: 180px; height: 180px; }
  .mvv-icon svg { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .mvv-circle-wrap { width: 165px; height: 165px; }
  .mvv-text { font-size: 13px; }
}
.hmh-section {
  padding: 88px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.hmh-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.hmh-section .container { position: relative; z-index: 2; }

/* ================================================
   HEADING
================================================ */
.hmh-head {
  text-align: center;
  margin-bottom: 56px;
}
.hmh-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 800; letter-spacing: 6px;
  text-transform: uppercase; color: #211470; margin-bottom: 14px;
}
.hmh-ebar {
  display: inline-block; width: 26px; height: 2px;
  background: linear-gradient(90deg, transparent, #211470);
  flex-shrink: 0; font-style: normal;
}
.hmh-eyebrow .hmh-ebar:last-child { background: linear-gradient(90deg, #211470, transparent); }

.hmh-h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900; color: #0e0c2a;
  line-height: 1.12; margin-bottom: 14px; letter-spacing: -.4px;
}
.hmh-h1 span { color: #211470; }
.hmh-head-sub {
  font-size: 17px; color: #5a5a7a;
  margin: 0 auto; line-height: 1.78;
}

/* ================================================
   MAIN ROW
================================================ */
.hmh-main-row { row-gap: 40px; margin-bottom: 64px; }

/* ---- image ---- */
.hmh-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(33,20,112,0.13);
}
.hmh-img {
  width: 100%; height: 440px;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}
.hmh-img-wrap:hover .hmh-img { transform: scale(1.04); }

.hmh-img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 7px;
  background: #211470;
  color: #ffffff;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px; border-radius: 20px;
  box-shadow: 0 4px 14px rgba(33,20,112,0.30);
}

/* ---- content ---- */
.hmh-content { padding-left: 12px; }

.hmh-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: #211470;
  background: rgba(33,20,112,0.07);
  border: 1px solid rgba(33,20,112,0.14);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 16px;
}
.hmh-tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #211470;
  flex-shrink: 0; animation: hmhDot 2s ease-in-out infinite;
}
@keyframes hmhDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(33,20,112,.4); }
  50%     { box-shadow: 0 0 0 5px rgba(33,20,112,0); }
}

.hmh-h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900; color: #0e0c2a;
  line-height: 1.25; margin-bottom: 18px; letter-spacing: -.2px;
}
.hmh-h2 em {
  font-style: normal; color: #211470; position: relative;
}
.hmh-h2 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: linear-gradient(90deg, #211470, #6b56f0, transparent);
  border-radius: 2px; transform-origin: left;
  animation: hmhLine .9s ease .4s both;
}
@keyframes hmhLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.hmh-para {
  font-size: 17px; color: #555;
  line-height: 1.82; margin-bottom: 14px;
  text-align: justify;
}
.hmh-para strong { color: #0e0c2a; font-weight: 700; }

/* 2-col features */
.hmh-features {
  display: flex; gap: 12px;
  margin: 20px 0 26px;
}
.hmh-feat-col {
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.hmh-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: #0e0c2a;
  line-height: 1.3;
}
.hmh-feat-ic {
  width: 8px; height: 8px; flex-shrink: 0;
  background: #211470; border-radius: 50%;
  position: relative;
}
.hmh-feat-ic::after {
  content: '';
  position: absolute; inset: -3px;
  border: 1.5px solid rgba(33,20,112,0.25);
  border-radius: 50%;
}

/* buttons */
.hmh-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hmh-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #211470, #3d2bac);
  color: #fff; text-decoration: none;
  font-size: 17px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 50px; border: 2px solid transparent;
  box-shadow: 0 6px 22px rgba(33,20,112,0.25);
  transition: background .28s, color .28s, border-color .28s, gap .24s;
}
.hmh-btn-primary:hover { background: transparent; color: #211470; border-color: #211470; box-shadow: none; gap: 14px; }
.hmh-btn-ic {
  width: 24px; height: 24px; background: rgba(255,255,255,0.18);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .24s, transform .24s;
}
.hmh-btn-primary:hover .hmh-btn-ic { background: #211470; transform: translateX(4px); }

.hmh-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent; color: #211470;
  font-size: 17px; font-weight: 700; letter-spacing: .5px;
  text-decoration: none; border-radius: 50px;
  border: 2px solid rgba(33,20,112,0.22);
  transition: background .28s, color .28s, border-color .28s, transform .22s;
}
.hmh-btn-outline:hover { background: #211470; color: #fff; border-color: #211470; transform: translateY(-2px); }

/* ================================================
   BOTTOM CONTENT — col-lg-12
================================================ */
.hmh-bottom-row { }
.hmh-bottom { }

.hmh-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.hmh-block {
  background: #f6f7fd;
  border: 1px solid rgba(33,20,112,0.08);
  border-radius: 14px;
  padding: 26px 20px;
  transition: transform .32s, box-shadow .32s, border-color .32s;
  position: relative;
}
.hmh-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #211470, #6b56f0);
  border-radius: 14px 14px 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .34s;
}
.hmh-block:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(33,20,112,0.11); border-color: rgba(33,20,112,0.18); }
.hmh-block:hover::before { transform: scaleX(1); }

.hmh-block-icon {
  width: 52px; height: 52px;
  background: rgba(33,20,112,0.07);
  border: 1px solid rgba(33,20,112,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #211470; margin-bottom: 14px;
  transition: background .28s, transform .28s;
}
.hmh-block:hover .hmh-block-icon { background: #211470; color: #fff; transform: rotate(-5deg) scale(1.05); }

.hmh-block-title {
  font-size: 23px; font-weight: 800; color: #0e0c2a;
  margin-bottom: 8px; line-height: 1.3;
  transition: color .26s;
}
.hmh-block:hover .hmh-block-title { color: #211470; }

.hmh-block-text {
  font-size: 17px; color: #666; line-height: 1.72;
  text-align: justify;
}

/* SEO paragraph */
.hmh-seo-para {
  background: #f6f7fd;
  border-left: 4px solid #211470;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}
.hmh-seo-para p {
  font-size: 17px; color: #555; line-height: 1.82; margin: 0;
  text-align: justify;
}
.hmh-seo-para strong { color: #0e0c2a; font-weight: 700; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1199px) {
  .hmh-bottom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .hmh-content { padding-left: 0; margin-top: 8px; }
}
@media (max-width: 767px) {
  .hmh-section { padding: 62px 0 52px; }
  .hmh-head { margin-bottom: 36px; }
  .hmh-img { height: 280px; }
  .hmh-bottom-grid { grid-template-columns: 1fr; gap: 16px; }
  .hmh-btns { flex-direction: column; }
  .hmh-btn-primary, .hmh-btn-outline { width: 100%; justify-content: center; }
  .hmh-features { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .hmh-eyebrow { letter-spacing: 3px; font-size: 9px; }
}
.ish-section {
  padding: 88px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.ish-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.ish-section .container { position: relative; z-index: 2; }

/* ---- heading ---- */
.ish-head { text-align: center; margin-bottom: 56px; }
.ish-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:14px; font-weight:800; letter-spacing:6px; text-transform:uppercase; color:#211470; margin-bottom:14px; }
.ish-ebar { display:inline-block; width:26px; height:2px; background:linear-gradient(90deg,transparent,#211470); flex-shrink:0; font-style:normal; }
.ish-eyebrow .ish-ebar:last-child { background:linear-gradient(90deg,#211470,transparent); }
.ish-h1 { font-size:clamp(28px,3.8vw,48px); font-weight:900; color:#0e0c2a; line-height:1.12; margin-bottom:14px; letter-spacing:-.4px; }
.ish-h1 span { color:#211470; }
.ish-head-sub { font-size:17px; color:#5a5a7a;  margin:0 auto; line-height:1.78; }

/* ---- main row ---- */
.ish-main-row { row-gap: 40px; margin-bottom: 60px; }

/* ---- content ---- */
.ish-content { padding-right: 16px; }

.ish-tag { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:#211470; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.14); padding:6px 14px; border-radius:20px; margin-bottom:16px; }
.ish-tag-dot { width:7px; height:7px; border-radius:50%; background:#211470; flex-shrink:0; animation:ishDot 2s ease-in-out infinite; }
@keyframes ishDot { 0%,100%{box-shadow:0 0 0 0 rgba(33,20,112,.4)} 50%{box-shadow:0 0 0 5px rgba(33,20,112,0)} }

.ish-h2 { font-size:clamp(22px,2.6vw,32px); font-weight:900; color:#0e0c2a; line-height:1.25; margin-bottom:18px; letter-spacing:-.2px; }
.ish-h2 em { font-style:normal; color:#211470; position:relative; }
.ish-h2 em::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; background:linear-gradient(90deg,#211470,#6b56f0,transparent); border-radius:2px; transform-origin:left; animation:ishLine .9s ease .4s both; }
@keyframes ishLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.ish-para { font-size: 17px; color:#555; line-height:1.82; margin-bottom:14px; text-align:justify; }
.ish-para strong { color:#0e0c2a; font-weight:700; }

/* 2-col features */
.ish-features { display:flex; gap:16px; margin:20px 0 26px; }
.ish-feat-col  { display:flex; flex-direction:column; gap:11px; flex:1; }
.ish-feat { display:flex; align-items:center; gap:10px; font-size:16px; font-weight:700; color:#0e0c2a; line-height:1.3; }
.ish-feat-ic { width:8px; height:8px; flex-shrink:0; background:#211470; border-radius:50%; position:relative; }
.ish-feat-ic::after { content:''; position:absolute; inset:-3px; border:1.5px solid rgba(33,20,112,0.25); border-radius:50%; }

/* buttons */
.ish-btns { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.ish-btn-primary { display:inline-flex; align-items:center; gap:10px; padding:13px 28px; background:linear-gradient(135deg,#211470,#3d2bac); color:#fff; text-decoration:none; font-size:16px; font-weight:700; letter-spacing:2px; text-transform:uppercase; border-radius:50px; border:2px solid transparent; box-shadow:0 6px 22px rgba(33,20,112,0.25); transition:background .28s,color .28s,border-color .28s,gap .24s; }
.ish-btn-primary:hover { background:transparent; color:#211470; border-color:#211470; box-shadow:none; gap:14px; }
.ish-btn-ic { width:24px; height:24px; background:rgba(255,255,255,0.18); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .24s,transform .24s; }
.ish-btn-primary:hover .ish-btn-ic { background:#211470; transform:translateX(4px); }
.ish-btn-outline { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; background:transparent; color:#211470; font-size:17px; font-weight:700; letter-spacing:.5px; text-decoration:none; border-radius:50px; border:2px solid rgba(33,20,112,0.22); transition:background .28s,color .28s,border-color .28s,transform .22s; }
.ish-btn-outline:hover { background:#211470; color:#fff; border-color:#211470; transform:translateY(-2px); }

/* ---- image ---- */
.ish-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* vertical accent bars — like reference image -->  */
.ish-img-bar {
  position: absolute; top: 0; bottom: 0;
  width: 5px; border-radius: 3px;
  background: linear-gradient(to bottom, transparent, #211470 30%, #211470 70%, transparent);
  z-index: 2;
}
.ish-bar-l { left: -10px; }
.ish-bar-r { right: -10px; }

.ish-img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(33,20,112,0.13);
  transition: transform .7s ease;
}
.ish-img-wrap:hover .ish-img { transform: scale(1.03); }

.ish-img-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: #211470; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 20px;
  box-shadow: 0 4px 14px rgba(33,20,112,0.30);
  z-index: 3;
}

/* ---- bottom grid ---- */
.ish-bottom-row { }
.ish-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.ish-block {
  background: #f6f7fd;
  border: 1px solid rgba(33,20,112,0.08);
  border-radius: 14px; padding: 24px 20px;
  position: relative;
  transition: transform .32s, box-shadow .32s, border-color .32s;
}
.ish-block::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,#211470,#6b56f0);
  border-radius:14px 14px 0 0; transform:scaleX(0); transform-origin:left;
  transition:transform .34s;
}
.ish-block:hover { transform:translateY(-8px); box-shadow:0 18px 44px rgba(33,20,112,0.11); border-color:rgba(33,20,112,0.18); }
.ish-block:hover::before { transform:scaleX(1); }
.ish-block-icon {
  width:50px; height:50px; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.12);
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  color:#211470; margin-bottom:14px;
  transition:background .28s,transform .28s;
}
.ish-block:hover .ish-block-icon { background:#211470; color:#fff; transform:rotate(-5deg) scale(1.05); }
.ish-block-title { font-size:22px; font-weight:800; color:#0e0c2a; margin-bottom:8px; line-height:1.3; transition:color .26s; }
.ish-block:hover .ish-block-title { color:#211470; }
.ish-block-text { font-size:17px; color:#666; line-height:1.72; text-align:justify; }

/* SEO para */
.ish-seo-para {
  background:#f6f7fd; border-left:4px solid #211470;
  border-radius:0 12px 12px 0; padding:20px 24px;
}
.ish-seo-para p { font-size:17px; color:#555; line-height:1.82; margin:0; text-align:justify; }
.ish-seo-para strong { color:#0e0c2a; font-weight:700; }

/* ================================================
   RESPONSIVE
================================================ */
@media(max-width:1199px){ .ish-bottom-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:991px){
  .ish-content{padding-right:0}
  .ish-img-wrap{margin-top:8px}
  .ish-bar-l{left:0} .ish-bar-r{right:0}
}
@media(max-width:767px){
  .ish-section{padding:62px 0 52px}
  .ish-head{margin-bottom:36px}
  .ish-img{height:270px}
  .ish-bottom-grid{grid-template-columns:1fr;gap:16px}
  .ish-btns{flex-direction:column}
  .ish-btn-primary,.ish-btn-outline{width:100%;justify-content:center}
  .ish-features{flex-direction:column;gap:8px}
}
@media(max-width:480px){
  .ish-eyebrow{letter-spacing:3px;font-size:9px}
  .ish-tag{
    font-size: 9px;
  }
}
.utp-section {
  padding: 88px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.utp-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.utp-section .container { position: relative; z-index: 2; }

/* heading */
.utp-head { text-align: center; margin-bottom: 56px; }
.utp-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:14px; font-weight:800; letter-spacing:6px; text-transform:uppercase; color:#211470; margin-bottom:14px; }
.utp-ebar { display:inline-block; width:26px; height:2px; background:linear-gradient(90deg,transparent,#211470); flex-shrink:0; font-style:normal; }
.utp-eyebrow .utp-ebar:last-child { background:linear-gradient(90deg,#211470,transparent); }
.utp-h1 { font-size:clamp(28px,3.8vw,48px); font-weight:900; color:#0e0c2a; line-height:1.12; margin-bottom:14px; letter-spacing:-.4px; }
.utp-h1 span { color:#211470; }
.utp-head-sub { font-size:17px; color:#5a5a7a;  margin:0 auto; line-height:1.78; }

/* main row */
.utp-main-row { row-gap: 40px; margin-bottom: 60px; }

/* image LEFT */
.utp-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.utp-img-bar {
  position: absolute; top: 0; bottom: 0;
  width: 5px; border-radius: 3px;
  background: linear-gradient(to bottom, transparent, #211470 30%, #211470 70%, transparent);
  z-index: 2;
}
.utp-bar-l { left: -10px; }
.utp-bar-r { right: -10px; }

.utp-img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(33,20,112,0.13);
  transition: transform .7s ease;
}
.utp-img-wrap:hover .utp-img { transform: scale(1.03); }

.utp-img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: #211470; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 20px;
  box-shadow: 0 4px 14px rgba(33,20,112,0.30);
  z-index: 3;
}

/* content RIGHT */
.utp-content { padding-left: 16px; }

.utp-tag { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:#211470; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.14); padding:6px 14px; border-radius:20px; margin-bottom:16px; }
.utp-tag-dot { width:7px; height:7px; border-radius:50%; background:#211470; flex-shrink:0; animation:utpDot 2s ease-in-out infinite; }
@keyframes utpDot { 0%,100%{box-shadow:0 0 0 0 rgba(33,20,112,.4)} 50%{box-shadow:0 0 0 5px rgba(33,20,112,0)} }

.utp-h2 { font-size:clamp(22px,2.6vw,32px); font-weight:900; color:#0e0c2a; line-height:1.25; margin-bottom:18px; letter-spacing:-.2px; }
.utp-h2 em { font-style:normal; color:#211470; position:relative; }
.utp-h2 em::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; background:linear-gradient(90deg,#211470,#6b56f0,transparent); border-radius:2px; transform-origin:left; animation:utpLine .9s ease .4s both; }
@keyframes utpLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.utp-para { font-size:17px; color:#555; line-height:1.82; margin-bottom:14px; text-align:justify; }
.utp-para strong { color:#0e0c2a; font-weight:700; }

.utp-features { display:flex; gap:16px; margin:20px 0 26px; }
.utp-feat-col  { display:flex; flex-direction:column; gap:11px; flex:1; }
.utp-feat { display:flex; align-items:center; gap:10px; font-size:16px; font-weight:700; color:#0e0c2a; line-height:1.3; }
.utp-feat-ic { width:8px; height:8px; flex-shrink:0; background:#211470; border-radius:50%; position:relative; }
.utp-feat-ic::after { content:''; position:absolute; inset:-3px; border:1.5px solid rgba(33,20,112,0.25); border-radius:50%; }

.utp-btns { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.utp-btn-primary { display:inline-flex; align-items:center; gap:10px; padding:13px 28px; background:linear-gradient(135deg,#211470,#3d2bac); color:#fff; text-decoration:none; font-size:16px; font-weight:700; letter-spacing:2px; text-transform:uppercase; border-radius:50px; border:2px solid transparent; box-shadow:0 6px 22px rgba(33,20,112,0.25); transition:background .28s,color .28s,border-color .28s,gap .24s; }
.utp-btn-primary:hover { background:transparent; color:#211470; border-color:#211470; box-shadow:none; gap:14px; }
.utp-btn-ic { width:24px; height:24px; background:rgba(255,255,255,0.18); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .24s,transform .24s; }
.utp-btn-primary:hover .utp-btn-ic { background:#211470; transform:translateX(4px); }
.utp-btn-outline { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; background:transparent; color:#211470; font-size:17px; font-weight:700; letter-spacing:.5px; text-decoration:none; border-radius:50px; border:2px solid rgba(33,20,112,0.22); transition:background .28s,color .28s,border-color .28s,transform .22s; }
.utp-btn-outline:hover { background:#211470; color:#fff; border-color:#211470; transform:translateY(-2px); }

/* bottom grid */
.utp-bottom-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-bottom:32px; }
.utp-block { background:#f6f7fd; border:1px solid rgba(33,20,112,0.08); border-radius:14px; padding:24px 20px; position:relative; transition:transform .32s,box-shadow .32s,border-color .32s; }
.utp-block::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#211470,#6b56f0); border-radius:14px 14px 0 0; transform:scaleX(0); transform-origin:left; transition:transform .34s; }
.utp-block:hover { transform:translateY(-8px); box-shadow:0 18px 44px rgba(33,20,112,0.11); border-color:rgba(33,20,112,0.18); }
.utp-block:hover::before { transform:scaleX(1); }
.utp-block-icon { width:50px; height:50px; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.12); border-radius:12px; display:flex; align-items:center; justify-content:center; color:#211470; margin-bottom:14px; transition:background .28s,transform .28s; }
.utp-block:hover .utp-block-icon { background:#211470; color:#fff; transform:rotate(-5deg) scale(1.05); }
.utp-block-title { font-size:22px; font-weight:800; color:#0e0c2a; margin-bottom:8px; line-height:1.3; transition:color .26s; }
.utp-block:hover .utp-block-title { color:#211470; }
.utp-block-text { font-size: 17px; color:#666; line-height:1.72; text-align:justify; }

.utp-seo-para { background:#f6f7fd; border-left:4px solid #211470; border-radius:0 12px 12px 0; padding:20px 24px; }
.utp-seo-para p { font-size:17px; color:#555; line-height:1.82; margin:0; text-align:justify; }
.utp-seo-para strong { color:#0e0c2a; font-weight:700; }

/* responsive */
@media(max-width:1199px){ .utp-bottom-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:991px){ .utp-content{padding-left:0;margin-top:8px} .utp-bar-l{left:0} .utp-bar-r{right:0} }
@media(max-width:767px){
  .utp-section{padding:62px 0 52px}
  .utp-head{margin-bottom:36px}
  .utp-img{height:270px}
  .utp-bottom-grid{grid-template-columns:1fr;gap:16px}
  .utp-btns{flex-direction:column}
  .utp-btn-primary,.utp-btn-outline{width:100%;justify-content:center}
  .utp-features{flex-direction:column;gap:8px}
}
@media(max-width:480px){ .utp-eyebrow{letter-spacing:3px;font-size:9px} }
.stt-section {
  padding: 88px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.stt-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.stt-section .container { position: relative; z-index: 2; }

/* heading */
.stt-head { text-align: center; margin-bottom: 56px; }
.stt-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:15px; font-weight:800; letter-spacing:6px; text-transform:uppercase; color:#211470; margin-bottom:14px; }
.stt-ebar { display:inline-block; width:26px; height:2px; background:linear-gradient(90deg,transparent,#211470); flex-shrink:0; font-style:normal; }
.stt-eyebrow .stt-ebar:last-child { background:linear-gradient(90deg,#211470,transparent); }
.stt-h1 { font-size:clamp(26px,3.6vw,46px); font-weight:900; color:#0e0c2a; line-height:1.15; margin-bottom:14px; letter-spacing:-.4px; }
.stt-h1 span { color:#211470; }
.stt-head-sub { font-size:17px; color:#5a5a7a;  margin:0 auto; line-height:1.78; }

/* main row */
.stt-main-row { row-gap: 40px; margin-bottom: 60px; }

/* content LEFT */
.stt-content { padding-right: 16px; }

.stt-tag { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:#211470; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.14); padding:6px 14px; border-radius:20px; margin-bottom:16px; }
.stt-tag-dot { width:7px; height:7px; border-radius:50%; background:#211470; flex-shrink:0; animation:sttDot 2s ease-in-out infinite; }
@keyframes sttDot { 0%,100%{box-shadow:0 0 0 0 rgba(33,20,112,.4)} 50%{box-shadow:0 0 0 5px rgba(33,20,112,0)} }

.stt-h2 { font-size:clamp(22px,2.6vw,32px); font-weight:900; color:#0e0c2a; line-height:1.25; margin-bottom:18px; letter-spacing:-.2px; }
.stt-h2 em { font-style:normal; color:#211470; position:relative; }
.stt-h2 em::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; background:linear-gradient(90deg,#211470,#6b56f0,transparent); border-radius:2px; transform-origin:left; animation:sttLine .9s ease .4s both; }
@keyframes sttLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.stt-para { font-size:17px; color:#555; line-height:1.82; margin-bottom:14px; text-align:justify; }
.stt-para strong { color:#0e0c2a; font-weight:700; }

.stt-features { display:flex; gap:16px; margin:20px 0 26px; }
.stt-feat-col  { display:flex; flex-direction:column; gap:11px; flex:1; }
.stt-feat { display:flex; align-items:center; gap:10px; font-size: 16px; font-weight:700; color:#0e0c2a; line-height:1.3; }
.stt-feat-ic { width:8px; height:8px; flex-shrink:0; background:#211470; border-radius:50%; position:relative; }
.stt-feat-ic::after { content:''; position:absolute; inset:-3px; border:1.5px solid rgba(33,20,112,0.25); border-radius:50%; }

.stt-btns { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.stt-btn-primary { display:inline-flex; align-items:center; gap:10px; padding:13px 28px; background:linear-gradient(135deg,#211470,#3d2bac); color:#fff; text-decoration:none; font-size:16px; font-weight:700; letter-spacing:2px; text-transform:uppercase; border-radius:50px; border:2px solid transparent; box-shadow:0 6px 22px rgba(33,20,112,0.25); transition:background .28s,color .28s,border-color .28s,gap .24s; }
.stt-btn-primary:hover { background:transparent; color:#211470; border-color:#211470; box-shadow:none; gap:14px; }
.stt-btn-ic { width:24px; height:24px; background:rgba(255,255,255,0.18); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .24s,transform .24s; }
.stt-btn-primary:hover .stt-btn-ic { background:#211470; transform:translateX(4px); }
.stt-btn-outline { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; background:transparent; color:#211470; font-size:1p7x; font-weight:700; letter-spacing:.5px; text-decoration:none; border-radius:50px; border:2px solid rgba(33,20,112,0.22); transition:background .28s,color .28s,border-color .28s,transform .22s; }
.stt-btn-outline:hover { background:#211470; color:#fff; border-color:#211470; transform:translateY(-2px); }

/* image RIGHT */
.stt-img-wrap { position:relative; display:flex; align-items:center; justify-content:center; }
.stt-img-bar { position:absolute; top:0; bottom:0; width:5px; border-radius:3px; background:linear-gradient(to bottom,transparent,#211470 30%,#211470 70%,transparent); z-index:2; }
.stt-bar-l { left:-10px; }
.stt-bar-r { right:-10px; }
.stt-img { width:100%; height:420px; object-fit:cover; display:block; border-radius:14px; box-shadow:0 18px 52px rgba(33,20,112,0.13); transition:transform .7s ease; }
.stt-img-wrap:hover .stt-img { transform:scale(1.03); }
.stt-img-badge { position:absolute; bottom:16px; right:16px; display:inline-flex; align-items:center; gap:7px; background:#211470; color:#fff; font-size:15px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:8px 16px; border-radius:20px; box-shadow:0 4px 14px rgba(33,20,112,0.30); z-index:3; }

/* bottom grid */
.stt-bottom-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-bottom:32px; }
.stt-block { background:#f6f7fd; border:1px solid rgba(33,20,112,0.08); border-radius:14px; padding:24px 20px; position:relative; transition:transform .32s,box-shadow .32s,border-color .32s; }
.stt-block::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#211470,#6b56f0); border-radius:14px 14px 0 0; transform:scaleX(0); transform-origin:left; transition:transform .34s; }
.stt-block:hover { transform:translateY(-8px); box-shadow:0 18px 44px rgba(33,20,112,0.11); border-color:rgba(33,20,112,0.18); }
.stt-block:hover::before { transform:scaleX(1); }
.stt-block-icon { width:50px; height:50px; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.12); border-radius:12px; display:flex; align-items:center; justify-content:center; color:#211470; margin-bottom:14px; transition:background .28s,transform .28s; }
.stt-block:hover .stt-block-icon { background:#211470; color:#fff; transform:rotate(-5deg) scale(1.05); }
.stt-block-title { font-size:22px; font-weight:800; color:#0e0c2a; margin-bottom:8px; line-height:1.3; transition:color .26s; }
.stt-block:hover .stt-block-title { color:#211470; }
.stt-block-text { font-size: 17px; color:#666; line-height:1.72; text-align:justify; }

.stt-seo-para { background:#f6f7fd; border-left:4px solid #211470; border-radius:0 12px 12px 0; padding:20px 24px; }
.stt-seo-para p { font-size:17px; color:#555; line-height:1.82; margin:0; text-align:justify; }
.stt-seo-para strong { color:#0e0c2a; font-weight:700; }

/* responsive */
@media(max-width:1199px){ .stt-bottom-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:991px){ .stt-content{padding-right:0} .stt-img-wrap{margin-top:8px} .stt-bar-l{left:0} .stt-bar-r{right:0} }
@media(max-width:767px){
  .stt-section{padding:62px 0 52px}
  .stt-head{margin-bottom:36px}
  .stt-img{height:270px}
  .stt-bottom-grid{grid-template-columns:1fr;gap:16px}
  .stt-btns{flex-direction:column}
  .stt-btn-primary,.stt-btn-outline{width:100%;justify-content:center}
  .stt-features{flex-direction:column;gap:8px}
  .page-header {
  position: relative;
  display: block;
  padding: 175px 0 60px;
  z-index: 1;
}
.page-header__inner h2{
  font-size: 30px;
}
.cba-plus {
    font-size: 35px;
    font-weight: 700;
    color: white;
    position: absolute;
    top: 30px;
    right: 35px;
}
}
@media(max-width:480px){ .stt-eyebrow{letter-spacing:3px;font-size:9px} }
.con-section {
  padding: 88px 0 0;
  background: #f4f5fb;
  position: relative;
  overflow: hidden;
}
.con-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.con-section .container { position: relative; z-index: 2; }

/* ---- heading ---- */
.con-head { text-align: center; margin-bottom: 56px; }
.con-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:15px; font-weight:800; letter-spacing:6px; text-transform:uppercase; color:#211470; margin-bottom:14px; }
.con-ebar { display:inline-block; width:26px; height:2px; background:linear-gradient(90deg,transparent,#211470); flex-shrink:0; font-style:normal; }
.con-eyebrow .con-ebar:last-child { background:linear-gradient(90deg,#211470,transparent); }
.con-h1 { font-size:clamp(28px,3.8vw,48px); font-weight:900; color:#0e0c2a; line-height:1.12; margin-bottom:14px; letter-spacing:-.4px; }
.con-h1 span { color:#211470; }
.con-head-sub { font-size:17px; color:#5a5a7a; margin:0 auto; line-height:1.78; }

/* ---- main row ---- */
.con-main-row { row-gap: 28px; margin-bottom: 40px; }

/* ================================================
   INFO BLOCK
================================================ */
.con-info-block {
  background: #ffffff;
  border: 1px solid rgba(33,20,112,0.08);
  border-radius: 18px;
  padding: 40px 36px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(33,20,112,0.06);
}

.con-tag { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:#211470; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.14); padding:6px 14px; border-radius:20px; margin-bottom:16px; }
.con-tag-dot { width:7px; height:7px; border-radius:50%; background:#211470; flex-shrink:0; animation:conDot 2s ease-in-out infinite; }
@keyframes conDot { 0%,100%{box-shadow:0 0 0 0 rgba(33,20,112,.4)} 50%{box-shadow:0 0 0 5px rgba(33,20,112,0)} }

.con-h2 { font-size:clamp(22px,2.6vw,30px); font-weight:900; color:#0e0c2a; line-height:1.25; margin-bottom:14px; letter-spacing:-.2px; }
.con-h2 em { font-style:normal; color:#211470; position:relative; }
.con-h2 em::after { content:''; position:absolute; left:0; right:0; bottom:-3px; height:3px; background:linear-gradient(90deg,#211470,#6b56f0,transparent); border-radius:2px; transform-origin:left; animation:conLine .9s ease .3s both; }
@keyframes conLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.con-desc { font-size:17px; color:#666; line-height:1.78; margin-bottom:28px; }

/* contact items */
.con-items { display:flex; flex-direction:column; gap:20px; margin-bottom:28px; }
.con-item  { display:flex; align-items:flex-start; gap:16px; }

.con-item-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(33,20,112,0.07);
  border: 1.5px solid rgba(33,20,112,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #211470;
  transition: background .28s, transform .28s, border-color .28s;
}
.con-item:hover .con-item-icon {
  background: #211470; color: #fff;
  transform: scale(1.06); border-color: #211470;
}

.con-item-body { display:flex; flex-direction:column; gap:2px; padding-top:4px; }
.con-item-body small { font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(33,20,112,0.45); }
.con-item-body a,
.con-item-body strong { font-size:13.5px; font-weight:700; color:#0e0c2a; text-decoration:none; line-height:1.55; transition:color .22s; }
.con-item-body a:hover { color:#211470; }

/* social */
.con-social-wrap { display:flex; align-items:center; gap:14px; padding-top:4px; }
.con-social-label { font-size:10px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:rgba(33,20,112,0.50); flex-shrink:0; }
.con-social { display:flex; gap:8px; flex-wrap:wrap; }
.con-soc { width:34px; height:34px; border-radius:8px; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.12); display:inline-flex; align-items:center; justify-content:center; color:#211470; text-decoration:none; transition:background .24s,color .24s,border-color .24s,transform .20s; }
.con-soc:hover { background:#211470; border-color:#211470; color:#fff; transform:translateY(-3px); }
.con-soc-wa:hover { background:#25d366; border-color:#25d366; }

/* ================================================
   FORM BLOCK
================================================ */
.con-form-block {
  background: #ffffff;
  border: 1px solid rgba(33,20,112,0.08);
  border-radius: 18px;
  padding: 40px 36px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(33,20,112,0.06);
}

.con-form-h2 { font-size:clamp(22px,2.6vw,30px); font-weight:900; color:#0e0c2a; line-height:1.25; margin-bottom:24px; letter-spacing:-.2px; }
.con-form-h2 em { font-style:normal; color:#211470; }

.con-form { display:flex; flex-direction:column; gap:16px; }

.con-row-fields { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.con-field { display:flex; flex-direction:column; gap:6px; }
.con-field-full { }

.con-label { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#555; }
.con-label span { color:#e04040; }

.con-input,
.con-textarea {
  width: 100%;
  padding: 13px 16px;
  background: #f6f7fd;
  border: 1.5px solid rgba(33,20,112,0.10);
  border-radius: 10px;
  font-size: 13.5px;
  color: #0e0c2a;
  outline: none;
  transition: border-color .26s, box-shadow .26s, background .26s;
  resize: none;
  box-sizing: border-box;
}
.con-input::placeholder,
.con-textarea::placeholder { color: rgba(0,0,0,0.30); }
.con-input:focus,
.con-textarea:focus {
  border-color: #211470;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(33,20,112,0.08);
}

.con-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 28px;
  background: linear-gradient(135deg, #211470, #3d2bac);
  color: #fff; border: 2px solid transparent;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: 50px; cursor: pointer;
  box-shadow: 0 6px 22px rgba(33,20,112,0.25);
  transition: background .28s, color .28s, border-color .28s, transform .22s;
  margin-top: 4px;
}
.con-submit:hover { background: transparent; color: #211470; border-color: #211470; box-shadow: none; transform: translateY(-2px); }
.con-submit-ic { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; background:rgba(255,255,255,0.18); border-radius:50%; flex-shrink:0; transition:background .24s,transform .24s; }
.con-submit:hover .con-submit-ic { background:#211470; transform:translateX(4px); }

/* ================================================
   MAP ROW
================================================ */
.con-map-row { margin-top: 0; }

.con-map-wrap {
  position: relative;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(33,20,112,0.10);
  border-bottom: none;
  box-shadow: 0 -4px 24px rgba(33,20,112,0.06);
}

.con-map-label {
  position: absolute;
  top: 16px; left: 16px; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  background: #211470; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 20px;
  box-shadow: 0 4px 14px rgba(33,20,112,0.30);
}

.con-map {
  width: 100%; height: 400px;
  border: none; display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter .4s;
}
.con-map-wrap:hover .con-map { filter: grayscale(0%) contrast(1); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 991px) {
  .con-info-block,
  .con-form-block { padding: 30px 24px; }
}
@media (max-width: 767px) {
  .con-section { padding: 62px 0 0; }
  .con-head { margin-bottom: 36px; }
  .con-row-fields { grid-template-columns: 1fr; }
  .con-map { height: 300px; }
  .con-info-block,
  .con-form-block { padding: 26px 20px; }
}
@media (max-width: 480px) {
  .con-eyebrow { letter-spacing: 3px; font-size: 9px; }
  .con-social-wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
}
.flt-wrap {
  position: fixed;
  top: 250px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* ---- base button ---- */
.flt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.28s;
}
.flt-btn:hover { transform: scale(1.12); }

/* icon wrapper */
.flt-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- CALL ---- */
.flt-call {
  background: #211470;
  box-shadow: 0 6px 20px rgba(33,20,112,0.40);
  color: #ffffff;
}
.flt-call:hover {
  box-shadow: 0 10px 30px rgba(33,20,112,0.55);
}

/* ring shake on call icon */
.flt-call .flt-icon {
  animation: fltRing 2.4s ease-in-out infinite;
}
@keyframes fltRing {
  0%,100%      { transform: rotate(0deg);   }
  10%,30%      { transform: rotate(-14deg); }
  20%,40%      { transform: rotate(14deg);  }
  50%          { transform: rotate(0deg);   }
}

/* ---- WHATSAPP ---- */
.flt-wa {
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37,211,102,0.42);
  color: #ffffff;
}
.flt-wa:hover {
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

/* ---- PULSE RINGS ---- */
.flt-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(33,20,112,0.30);
  animation: fltPulse 2.2s ease-out infinite;
  z-index: 1;
}
.flt-pulse-wa {
  background: rgba(37,211,102,0.30);
  animation-delay: 0.4s;
}
@keyframes fltPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0;   }
  100% { transform: scale(1.65); opacity: 0;   }
}

.flt-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  right: auto;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  background: #0e0c2a;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
}
.flt-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  right: auto;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #0e0c2a;
  border-left: none;
}
.flt-btn:hover .flt-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 600px) {
 .flt-wrap  { bottom: 20px; left: 16px; right: auto; gap: 12px; }
  .flt-btn   { width: 48px; height: 48px; }
  .flt-icon svg { width: 19px; height: 19px; }
  .flt-tooltip { display: none; }
}
.ftr-machine {
  position: absolute;
  bottom: 10px;
  left: 0;
  animation: ftrMachine 28s linear infinite;
}
@keyframes ftrMachine {
  from { transform: translateX(-140px); }
  to   { transform: translateX(calc(100vw + 140px)); }
}

.cfr-section {
  padding: 88px 0 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.cfr-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(33,20,112,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.cfr-section .container { position: relative; z-index: 2; }

/* heading */
.cfr-head { text-align: center; margin-bottom: 56px; }
.cfr-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:15px; font-weight:800; letter-spacing:6px; text-transform:uppercase; color:#211470; margin-bottom:14px; }
.cfr-ebar { display:inline-block; width:26px; height:2px; background:linear-gradient(90deg,transparent,#211470); flex-shrink:0; font-style:normal; }
.cfr-eyebrow .cfr-ebar:last-child { background:linear-gradient(90deg,#211470,transparent); }
.cfr-h1 { font-size:clamp(26px,3.6vw,46px); font-weight:900; color:#0e0c2a; line-height:1.15; margin-bottom:14px; letter-spacing:-.4px; }
.cfr-h1 span { color:#211470; }
.cfr-head-sub { font-size:17px; color:#5a5a7a; margin:0 auto; line-height:1.78; }

/* main row */
.cfr-main-row { row-gap: 40px; margin-bottom: 60px; }

/* content LEFT */
.cfr-content { padding-right: 16px; }

.cfr-tag { display:inline-flex; align-items:center; gap:8px; font-size:15px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:#211470; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.14); padding:6px 14px; border-radius:20px; margin-bottom:16px; }
.cfr-tag-dot { width:7px; height:7px; border-radius:50%; background:#211470; flex-shrink:0; animation:cfrDot 2s ease-in-out infinite; }
@keyframes cfrDot { 0%,100%{box-shadow:0 0 0 0 rgba(33,20,112,.4)} 50%{box-shadow:0 0 0 5px rgba(33,20,112,0)} }

.cfr-h2 { font-size:clamp(22px,2.6vw,32px); font-weight:900; color:#0e0c2a; line-height:1.25; margin-bottom:18px; letter-spacing:-.2px; }
.cfr-h2 em { font-style:normal; color:#211470; position:relative; }
.cfr-h2 em::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; background:linear-gradient(90deg,#211470,#6b56f0,transparent); border-radius:2px; transform-origin:left; animation:cfrLine .9s ease .4s both; }
@keyframes cfrLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.cfr-para { font-size:17px; color:#555; line-height:1.82; margin-bottom:14px; text-align:justify; }
.cfr-para strong { color:#0e0c2a; font-weight:700; }

.cfr-features { display:flex; gap:16px; margin:20px 0 26px; }
.cfr-feat-col  { display:flex; flex-direction:column; gap:11px; flex:1; }
.cfr-feat { display:flex; align-items:center; gap:10px; font-size:16px; font-weight:700; color:#0e0c2a; line-height:1.3; }
.cfr-feat-ic { width:8px; height:8px; flex-shrink:0; background:#211470; border-radius:50%; position:relative; }
.cfr-feat-ic::after { content:''; position:absolute; inset:-3px; border:1.5px solid rgba(33,20,112,0.25); border-radius:50%; }

.cfr-btns { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.cfr-btn-primary { display:inline-flex; align-items:center; gap:10px; padding:13px 28px; background:linear-gradient(135deg,#211470,#3d2bac); color:#fff; text-decoration:none; font-size:16px; font-weight:700; letter-spacing:2px; text-transform:uppercase; border-radius:50px; border:2px solid transparent; box-shadow:0 6px 22px rgba(33,20,112,0.25); transition:background .28s,color .28s,border-color .28s,gap .24s; }
.cfr-btn-primary:hover { background:transparent; color:#211470; border-color:#211470; box-shadow:none; gap:14px; }
.cfr-btn-ic { width:24px; height:24px; background:rgba(255,255,255,0.18); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .24s,transform .24s; }
.cfr-btn-primary:hover .cfr-btn-ic { background:#211470; transform:translateX(4px); }
.cfr-btn-outline { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; background:transparent; color:#211470; font-size:17px; font-weight:700; letter-spacing:.5px; text-decoration:none; border-radius:50px; border:2px solid rgba(33,20,112,0.22); transition:background .28s,color .28s,border-color .28s,transform .22s; }
.cfr-btn-outline:hover { background:#211470; color:#fff; border-color:#211470; transform:translateY(-2px); }

/* image RIGHT */
.cfr-img-wrap { position:relative; display:flex; align-items:center; justify-content:center; }
.cfr-img-bar { position:absolute; top:0; bottom:0; width:5px; border-radius:3px; background:linear-gradient(to bottom,transparent,#211470 30%,#211470 70%,transparent); z-index:2; }
.cfr-bar-l { left:-10px; }
.cfr-bar-r { right:-10px; }
.cfr-img { width:100%; height:420px; object-fit:cover; display:block; border-radius:14px; box-shadow:0 18px 52px rgba(33,20,112,0.13); transition:transform .7s ease; }
.cfr-img-wrap:hover .cfr-img { transform:scale(1.03); }
.cfr-img-badge { position:absolute; bottom:16px; right:16px; display:inline-flex; align-items:center; gap:7px; background:#211470; color:#fff; font-size:15px; font-weight:700; letter-spacing:2px; text-transform:uppercase; padding:8px 16px; border-radius:20px; box-shadow:0 4px 14px rgba(33,20,112,0.30); z-index:3; }

/* bottom grid */
.cfr-bottom-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-bottom:32px; }
.cfr-block { background:#f6f7fd; border:1px solid rgba(33,20,112,0.08); border-radius:14px; padding:24px 20px; position:relative; transition:transform .32s,box-shadow .32s,border-color .32s; }
.cfr-block::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#211470,#6b56f0); border-radius:14px 14px 0 0; transform:scaleX(0); transform-origin:left; transition:transform .34s; }
.cfr-block:hover { transform:translateY(-8px); box-shadow:0 18px 44px rgba(33,20,112,0.11); border-color:rgba(33,20,112,0.18); }
.cfr-block:hover::before { transform:scaleX(1); }
.cfr-block-icon { width:50px; height:50px; background:rgba(33,20,112,0.07); border:1px solid rgba(33,20,112,0.12); border-radius:12px; display:flex; align-items:center; justify-content:center; color:#211470; margin-bottom:14px; transition:background .28s,transform .28s; }
.cfr-block:hover .cfr-block-icon { background:#211470; color:#fff; transform:rotate(-5deg) scale(1.05); }
.cfr-block-title { font-size:22px; font-weight:800; color:#0e0c2a; margin-bottom:8px; line-height:1.3; transition:color .26s; }
.cfr-block:hover .cfr-block-title { color:#211470; }
.cfr-block-text { font-size:17px; color:#666; line-height:1.72; text-align:justify; }

.cfr-seo-para { background:#f6f7fd; border-left:4px solid #211470; border-radius:0 12px 12px 0; padding:20px 24px; }
.cfr-seo-para p { font-size:17px; color:#555; line-height:1.82; margin:0; text-align:justify; }
.cfr-seo-para strong { color:#0e0c2a; font-weight:700; }

/* responsive */
@media(max-width:1199px){ .cfr-bottom-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:991px){ .cfr-content{padding-right:0} .cfr-img-wrap{margin-top:8px} .cfr-bar-l{left:0} .cfr-bar-r{right:0} }
@media(max-width:767px){
  .cfr-section{padding:62px 0 52px}
  .cfr-head{margin-bottom:36px}
  .cfr-img{height:270px}
  .cfr-bottom-grid{grid-template-columns:1fr;gap:16px}
  .cfr-btns{flex-direction:column}
  .cfr-btn-primary,.cfr-btn-outline{width:100%;justify-content:center}
  .cfr-features{flex-direction:column;gap:8px}
}

.ers-section { padding: 80px 0 72px; background: #ffffff; }
.ers-top-row  { align-items: center; row-gap: 36px; margin-bottom: 0; }
.ers-img-col  { padding-right: 36px; }
.ers-content-col { padding-left: 8px; }

.ers-img { width:100%; height:420px; object-fit:cover; border-radius:14px; display:block; border:1px solid rgba(0,0,0,0.08); box-shadow:0 8px 28px rgba(0,0,0,0.07); }

.ers-label { display:inline-flex; align-items:center; gap:7px; font-size:11px; font-weight:700; letter-spacing:3.5px; text-transform:uppercase; color:#534AB7; background:#EEEDFE; border:1px solid #CECBF6; padding:5px 13px; border-radius:20px; margin-bottom:18px; }
.ers-label-dot { width:6px; height:6px; border-radius:50%; background:#534AB7; flex-shrink:0; }

.ers-h2 { font-size:clamp(22px,2.6vw,34px); font-weight:900; color:#0e0c2a; line-height:1.22; margin-bottom:20px; letter-spacing:-.3px; }
.ers-h2 span { color:#534AB7; border-bottom:3px solid #AFA9EC; padding-bottom:2px; }

.ers-para { font-size:16px; color:#555; line-height:1.85; margin-bottom:16px; text-align:justify; }
.ers-para strong { color:#0e0c2a; font-weight:700; }

.ers-pills { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.ers-pill { font-size:12px; font-weight:600; color:#534AB7; background:#EEEDFE; border:1px solid #CECBF6; padding:5px 14px; border-radius:20px; }

.ers-divider { height:1px; background:rgba(0,0,0,0.07); margin:56px 0 48px; }

/* VIDEO CARDS */
.ers-video-row { row-gap: 0; }
.ers-vcard { background:#fff; border:1px solid rgba(0,0,0,0.09); border-radius:14px; overflow:hidden; transition:transform .3s,box-shadow .3s,border-color .3s; }
.ers-vcard:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(83,74,183,0.13); border-color:rgba(83,74,183,0.28); }

.ers-vthumb-wrap { position:relative; aspect-ratio:16/9; background:#f0eff8; overflow:hidden; cursor:pointer; }
.ers-vthumb { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s; }
.ers-vcard:hover .ers-vthumb { transform:scale(1.04); }

.ers-voverlay { position:absolute; inset:0; background:rgba(14,12,42,0.28); display:flex; align-items:center; justify-content:center; transition:background .25s; }
.ers-vcard:hover .ers-voverlay { background:rgba(14,12,42,0.18); }

.ers-vplay { width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,0.95); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 16px rgba(0,0,0,0.18); transition:transform .22s,box-shadow .22s; pointer-events:none; }
.ers-vcard:hover .ers-vplay { transform:scale(1.1); box-shadow:0 6px 22px rgba(83,74,183,0.38); }

.ers-vnum { position:absolute; top:10px; left:12px; font-size:11px; font-weight:700; letter-spacing:2.5px; color:#CECBF6; background:rgba(38,33,92,0.65); padding:3px 9px; border-radius:6px; }

.ers-vinfo { padding:16px 18px 20px; }
.ers-vtitle { font-size:16px; font-weight:800; color:#0e0c2a; margin-bottom:6px; line-height:1.3; transition:color .22s; }
.ers-vcard:hover .ers-vtitle { color:#534AB7; }
.ers-vdesc { font-size:14px; color:#666; line-height:1.65; margin:0; }

/* MODAL */
.ers-modal-bg { position:fixed; inset:0; background:rgba(8,7,26,0.90); z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .28s; }
.ers-modal-bg.open { opacity:1; pointer-events:auto; }
.ers-modal { background:#0e0c2a; border-radius:16px; overflow:hidden; width:90vw; max-width:1080px; transform:scale(0.95); transition:transform .28s; box-shadow:0 32px 80px rgba(0,0,0,0.6); }
.ers-modal-bg.open .ers-modal { transform:scale(1); }
.ers-modal-bar { display:flex; align-items:center; justify-content:space-between; padding:12px 18px; }
.ers-modal-title { font-size:14px; font-weight:600; color:#d0caf0; letter-spacing:.3px; }
.ers-modal-close { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.18); cursor:pointer; display:flex; align-items:center; justify-content:center; color:#fff; transition:background .2s; }
.ers-modal-close:hover { background:rgba(255,255,255,0.22); }
#ersModalVideo { width:100%; display:block; max-height:78vh; background:#000; object-fit:contain; }

@media(max-width:991px){ .ers-img-col{padding-right:0;margin-bottom:28px} .ers-content-col{padding-left:0} .ers-img{height:300px} }
@media(max-width:767px){ .ers-section{padding:56px 0 52px} .ers-img{height:240px} .ers-divider{margin:40px 0 36px} }


.cba-proprietor-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff8e1;
  border-left: 4px solid var(--zeinet-base);
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cba-prop-label {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--zeinet-base);
}

.cba-prop-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.cba-prop-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-deep);
  text-decoration: none;
}

.cba-prop-phone:hover {
  color: #d4891a;
}