/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --espartyox-font: "Inter", sans-serif;
  --espartyox-font2: "Jost", sans-serif;
  --espartyox-font3: "Work Sans", sans-serif;
  --espartyox-text: #737373;
  --espartyox-text-rgb: 115, 115, 115;
  --espartyox-white: #fff;
  --espartyox-white-rgb: 255, 255, 255;
  --espartyox-base: #212ED0;
  --espartyox-base-rgb: 33, 46, 208;
  --espartyox-primary: #000;
  --espartyox-primary-rgb: 23, 64, 53;
  --espartyox-gray: #DDDDDD;
  --espartyox-gray-rgb: 221, 221, 221;
  --espartyox-gray2: #F6F6F4;
  --espartyox-gray2-rgb: 246, 246, 244;
  --espartyox-gray3: #F0F7F3;
  --espartyox-gray3-rgb: 240, 247, 243;
  --espartyox-black: #001A3D;
  --espartyox-black-rgb: 0, 26, 61;
  --espartyox-black2: #030A15;
  --espartyox-black2-rgb: 3, 10, 21;
  --espartyox-black3: #000;
  --espartyox-black3-rgb: 0, 0, 0;
  --espartyox-border-color: #d9d9d9;
  --espartyox-border-color-rgb: 217, 217, 217;
  --espartyox-letter-space: 0.1em;
  --espartyox-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.espartyox-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-radius: 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 100%;
  transition: 500ms;
  padding: 19px 25px;
}
.espartyox-btn span {
  z-index: 1;
}
.espartyox-btn__icon {
  margin-left: 5px;
}
.espartyox-btn:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}
.espartyox-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--espartyox-black, #001A3D);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.espartyox-btn-two {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-radius: 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 100%;
  transition: 500ms;
  padding: 19px 25px;
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 400ms ease-in-out;
  border: 1px solid var(--espartyox-base, #212ED0);
  padding: 18px 25px;
}
.espartyox-btn-two i {
  margin-left: 7px;
}
.espartyox-btn-two::after {
  content: "";
  width: 0;
  height: 320%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  background-color: var(--espartyox-white, #fff);
  transition: 1000ms cubic-bezier(0.83, 0, 0.17, 1);
  z-index: -1;
}
.espartyox-btn-two:hover {
  color: var(--espartyox-base, #212ED0);
  transform: scale(0.98);
}
.espartyox-btn-two:hover::after {
  width: 130%;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(2deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-2deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
.espartyox-btn-three {
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-radius: 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 100%;
  transition: 500ms;
  padding: 19px 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  border-radius: 4px;
  box-shadow: 12px 24px 50px 0 rgba(255, 123, 71, 0.1);
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  border: 1px solid var(--espartyox-base, #212ED0);
}
.espartyox-btn-three__text {
  z-index: 20;
  position: relative;
}
.espartyox-btn-three::after {
  background-color: #212ED0;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.espartyox-btn-three:hover {
  animation: rotate624 0.7s ease-in-out both;
  background-color: var(--espartyox-white, #fff);
}
.espartyox-btn-three:hover i,
.espartyox-btn-three:hover .espartyox-btn-three__text {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
  color: var(--espartyox-black, #001A3D);
}
.espartyox-btn-three:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
  }
}
.sec-title__tagline {
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 17px;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 100px;
  background-color: var(--espartyox-base, #212ED0);
}
.sec-title__title {
  margin: 0;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  text-shadow: 0 0 1px currentColor;
  font-size: 40px;
  font-weight: 600;
  word-spacing: 2px;
  line-height: 125%;
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .sec-title__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sec-title__title br {
    display: none;
  }
}

.sec-title-two {
  position: relative;
  line-height: 1;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .sec-title-two {
    padding-bottom: 50px;
  }
}
.sec-title-two__tagline {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 20px;
  padding: 10px;
  display: inline-block;
  border-radius: 0px;
  background-color: #F5F6FA;
}
.sec-title-two__title {
  margin: 0;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 38px;
  font-weight: 600;
  word-spacing: 2px;
  line-height: 126.316%;
  text-shadow: 8px 40px 60px rgba(0, 0, 0, 0.1);
}
.sec-title-two__title span {
  color: var(--espartyox-base, #212ED0);
  text-shadow: 8px 40px 60px rgba(254, 140, 18, 0.1);
}
@media (max-width: 767px) {
  .sec-title-two__title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .sec-title-two__title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sec-title-two__title br {
    display: none;
  }
}

.sec-title-three {
  position: relative;
  line-height: 1;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .sec-title-three {
    padding-bottom: 47px;
  }
}
.sec-title-three__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.sec-title-three__icon {
  font-size: 24px;
  color: var(--espartyox-base, #212ED0);
  display: flex;
  line-height: 1;
}
@media (max-width: 575px) {
  .sec-title-three__icon {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .sec-title-three__icon {
    font-size: 18px;
  }
}
.sec-title-three__icon:first-child {
  animation: right 2s ease-in infinite;
}
.sec-title-three__icon:last-child {
  animation: left 2s ease-in infinite;
}
.sec-title-three__tagline {
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.44px;
  text-decoration: underline;
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  color: var(--espartyox-base, #212ED0);
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .sec-title-three__tagline {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .sec-title-three__tagline {
    font-size: 16px;
  }
}
.sec-title-three__title {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  color: var(--espartyox-black, #001A3D);
  font-size: 46px;
  font-weight: 600;
  line-height: 127.778%;
  letter-spacing: 0.92px;
  text-shadow: 8px 40px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
.sec-title-three__title span {
  color: var(--espartyox-base, #212ED0);
}
@media (max-width: 767px) {
  .sec-title-three__title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .sec-title-three__title {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--espartyox-font, "Inter", sans-serif);
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--espartyox-base, #212ED0);
  transition: all 400ms ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--espartyox-black, #001A3D);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  line-height: 162.5%;
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

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

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

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

@media (min-width: 992px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

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

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

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

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

.gutter-x-50 {
  --bs-gutter-x: 50px;
}

.section-space {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-top {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--espartyox-base, #212ED0);
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--espartyox-black, #001A3D);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--espartyox-base, #212ED0);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--espartyox-black, #001A3D);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-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-repeat: no-repeat;
  background-position: center center;
  background-size: 150px auto;
  width: 100%;
  height: 100%;
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--espartyox-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  right: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 30px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* post paginations */
.post-pagination {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.post-pagination.text-center {
  justify-content: center;
}
.post-pagination.text-end {
  justify-content: flex-end;
}
.post-pagination--mt0 {
  margin-top: 0px;
}
.post-pagination a {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--espartyox-white, #fff);
  border: 1px solid var(--espartyox-border-color, #d9d9d9);
  align-items: center;
  justify-content: center;
  color: var(--espartyox-text, #737373);
  transition: all 400ms ease;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.post-pagination a.active, .post-pagination a:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-base, #212ED0);
}
.post-pagination .dots {
  color: var(--espartyox-black, #001A3D);
  font-size: 16px;
  font-weight: 500;
  margin: 0 13px;
}

.espartyox-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.espartyox-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.espartyox-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.espartyox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--espartyox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--espartyox-white, #fff);
  transition: all 500ms ease;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-base, #212ED0);
  border-color: var(--espartyox-base, #212ED0);
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: rgba(var(--espartyox-text-rgb, 115, 115, 115), 0.4);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .espartyox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--espartyox-base, #212ED0);
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.espartyox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* progress bar */
.progress-box + .progress-box {
  margin-top: 28px;
}

.progress-box__title {
  margin-bottom: 7px;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--espartyox-primary, #000);
}

.progress-box__bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--espartyox-gray2, #F6F6F4);
}

.progress-box__bar__inner {
  position: relative;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: var(--espartyox-base, #212ED0);
  border-radius: inherit;
  transition: all 800ms linear;
}

.progress-box__number {
  position: absolute;
  bottom: calc(100% + 3px);
  right: 0;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  font-weight: 400;
  font-size: 14px;
  color: var(--espartyox-primary, #000);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.team-card {
  position: relative;
  z-index: 1;
  border-radius: 135px;
  overflow: hidden;
  padding: 30px 30px 55px;
  background-color: #F5F6FA;
}
.team-card__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.85);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.team-card__image {
  border-radius: 214px;
  border: 5px solid var(--espartyox-base, #212ED0);
  background-color: #D9D9D9;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
}
.team-card__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.team-card__content {
  text-align: center;
}
.team-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.33px;
  margin-bottom: 18px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .team-card__title {
    font-size: 18px;
  }
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__designation {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.24px;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.team-card__social a {
  color: var(--espartyox-base, #212ED0);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.team-card:hover::after,
.team-card:hover .team-card__bg {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.team-card:hover .team-card__image {
  border-color: var(--espartyox-white, #fff);
}
.team-card:hover .team-card__image img {
  transform: rotateY(-180deg);
}
.team-card:hover .team-card__title,
.team-card:hover .team-card__designation,
.team-card:hover .team-card__social a {
  color: var(--espartyox-white, #fff);
}

.team-page {
  padding-bottom: 245px;
}
@media (max-width: 991px) {
  .team-page {
    padding-bottom: 220px;
  }
}
@media (max-width: 767px) {
  .team-page {
    padding-bottom: 200px;
  }
}
.team-page__top {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .team-page__top {
    margin-bottom: 47px;
  }
}
.team-page__top .sec-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
.team-page__count {
  text-align: end;
}
.team-page__count-box {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}
.team-page__count__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 75%;
  color: var(--espartyox-base, #212ED0);
  margin-bottom: 4px;
}
.team-page__count__title span {
  color: inherit;
}
.team-page__count__text {
  margin-bottom: 0;
  line-height: 30px;
}

.team-card-one {
  position: relative;
}
.team-card-one__content-box {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 16px 16px 0 0;
  background-color: #F5F6FA;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.team-card-one__content-box__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.team-card-one__content-box__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 46, 208, 0.7);
}
.team-card-one__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.33px;
  margin-bottom: 20px;
}
.team-card-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-one__title a:hover {
  background-size: 100% 1px;
}
.team-card-one__dec {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.24px;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.team-card-one__social i {
  line-height: 1;
  font-size: 24px;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.4s ease-in-out;
}
.team-card-one__thumb {
  position: relative;
  z-index: 2;
  background-color: #D9D9D9;
  overflow: hidden;
}
.team-card-one__thumb img {
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
  width: 100%;
}
.team-card-one__thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-black3-rgb, 0, 0, 0), 0.7);
  transition: all 0.4s ease-in-out;
  transform: translateY(-70%);
  opacity: 0;
  visibility: hidden;
}
.team-card-one__hover {
  width: 100%;
  height: 252px;
  border-radius: 0 0 10000px 10000px;
  position: absolute;
  bottom: -127px;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 40px;
  transform: translateY(-130px);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.team-card-one__hover__bg {
  border-radius: 0 0 10000px 10000px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  overflow: hidden;
}
.team-card-one__hover__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 46, 208, 0.7);
}
.team-card-one__hover__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.24px;
  margin-bottom: 20px;
  color: var(--espartyox-white, #fff);
}
.team-card-one__hover__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.team-card-one__hover__social a {
  font-size: 20px;
  color: var(--espartyox-white, #fff);
}
.team-card-one:hover .team-card-one__title,
.team-card-one:hover .team-card-one__dec,
.team-card-one:hover .team-card-one__social i {
  color: var(--espartyox-white, #fff);
}
.team-card-one:hover .team-card-one__hover {
  transform: translateY(0);
}
.team-card-one:hover .team-card-one__thumb img {
  transform: scale(1.1);
}
.team-card-one:hover .team-card-one__thumb::after {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.team-card-one:hover .team-card-one__content-box {
  background-color: transparent;
}
.team-card-one:hover .team-card-one__content-box__bg {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.team-card-two {
  position: relative;
  z-index: 1;
}
.team-card-two__image {
  background-color: #F6F6F4;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}
.team-card-two__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.team-card-two__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 26, 61, 0.75);
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
.team-card-two__social {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 20px;
  transition: all 0.4s ease-in-out;
  transform: translate(-50px, -50%);
  z-index: 1;
}
.team-card-two__social a {
  color: var(--espartyox-white, #fff);
}
.team-card-two__social a:hover {
  color: var(--espartyox-base, #212ED0);
}
.team-card-two__social a + a {
  margin-top: 15px;
}
.team-card-two__content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-card-two__title {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.36px;
  margin-bottom: 10px;
}
.team-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-two__title a:hover {
  background-size: 100% 1px;
}
.team-card-two__designation {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.27px;
  margin-bottom: 0;
}
.team-card-two__btn a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-base, #212ED0);
  font-size: 20px;
  color: var(--espartyox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.team-card-two__btn a:hover {
  color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-black3, #000);
}
.team-card-two:hover .team-card-two__image img {
  transform: scale(1.1);
}
.team-card-two:hover .team-card-two__image::after {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}
.team-card-two:hover .team-card-two__social {
  transform: translate(0px, -50%);
}

.team-card-three {
  position: relative;
  z-index: 1;
}
.team-card-three__image {
  background-color: #F6F6F4;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.team-card-three__image__item {
  display: block;
}
.team-card-three__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.team-card-three__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 26, 61, 0.75);
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
.team-card-three__hover__box {
  background-color: rgba(0, 0, 0, 0.65);
  height: 100%;
  display: block;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}
.team-card-three__hover__box--1 {
  left: 0;
  transition-delay: 0.105s;
}
.team-card-three__hover__box--2 {
  left: 25%;
  transition-delay: 0.105s;
}
.team-card-three__hover__box--3 {
  left: 50%;
  transition-delay: 0.105s;
}
.team-card-three__hover__box--4 {
  left: 75%;
  transition-delay: 0s;
}
.team-card-three__social {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  position: absolute;
  bottom: 0%;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(23, 64, 53, 0.8);
  left: 0px;
  transition: all 0.4s ease-in-out;
  transform: translateY(50px);
  visibility: hidden;
  opacity: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 2;
}
.team-card-three__social a {
  line-height: 1;
  font-size: 20px;
  color: var(--espartyox-white, #fff);
}
.team-card-three__social a:hover {
  color: var(--espartyox-base, #212ED0);
}
.team-card-three__content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-card-three__title {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  color: #030A15;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.36px;
  margin-bottom: 10px;
}
.team-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-three__title a:hover {
  background-size: 100% 1px;
}
.team-card-three__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.team-card-three__designation {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.27px;
  margin: 0;
}
.team-card-three__btn a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-base, #212ED0);
  font-size: 18px;
  color: var(--espartyox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.team-card-three__btn a:hover {
  color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-black3, #000);
}
.team-card-three:hover .team-card-three__hover__box {
  opacity: 1;
  transform: scale(1);
}
.team-card-three:hover .team-card-three__image img {
  transform: scale(1.1);
}
.team-card-three:hover .team-card-three__social {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.team-details {
  position: relative;
  z-index: 1;
}
.team-details__thumb-item {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .team-details__thumb-item {
    margin-right: 10px;
  }
}
.team-details__thumb-item img {
  width: 100%;
  object-fit: cover;
}
.team-details__list {
  margin-bottom: 40px;
}
.team-details__list-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--espartyox-text, #737373);
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.4s ease-in-out;
}
.team-details__list-item a:hover {
  color: var(--espartyox-base, #212ED0);
}
.team-details__list-item a i {
  color: var(--espartyox-base, #212ED0);
  font-size: 20px;
}
.team-details__list-item + .team-details__list-item {
  margin-top: 30px;
}
.team-details__btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 450px) {
  .team-details__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.team-details__btn .espartyox-btn:last-child {
  background: #F5F6FA;
  color: var(--espartyox-base, #212ED0);
}
.team-details__btn .espartyox-btn:last-child i {
  margin-left: 0;
  margin-right: 6px;
}
.team-details__btn .espartyox-btn:last-child::after {
  background-color: var(--espartyox-base, #212ED0);
}
.team-details__btn .espartyox-btn:last-child:hover {
  color: var(--espartyox-white, #fff);
}
.team-details__author__name {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.45px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .team-details__author__name {
    font-size: 25px;
  }
}
.team-details__author__dec {
  margin-bottom: 20px;
  text-transform: capitalize;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.team-details__author__dec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 40px;
  border-radius: 50px;
  height: 4px;
  background-color: var(--espartyox-base, #212ED0);
  z-index: -1;
}
.team-details__text {
  margin-bottom: 30px;
}
.team-details__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.45px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .team-details__title {
    font-size: 25px;
  }
}
.team-details__progress-box {
  border-radius: 16px;
  background: #F5F6FA;
  padding: 30px 40px;
  margin-bottom: 30px;
  max-width: 550px;
  width: 100%;
}
.team-details__progress__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 27px;
}
.team-details__progress__bar {
  width: 100%;
  height: 6px;
  position: relative;
  background-color: var(--espartyox-gray, #DDDDDD);
  border-radius: 50px;
}
.team-details__progress__inner {
  background-color: var(--espartyox-base, #212ED0);
  height: 100%;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.team-details__progress__inner::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--espartyox-base, #212ED0);
  border: 2px solid var(--espartyox-white, #fff);
  position: absolute;
  top: -8px;
  right: -5px;
}
.team-details__progress__number {
  position: absolute;
  bottom: 30px;
  right: 0;
  color: var(--espartyox-black, #001A3D);
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
.team-details__progress + .team-details__progress {
  margin-top: 30px;
}

.blog-card {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.blog-card__image {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-card__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.blog-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-black3-rgb, 0, 0, 0), 0.7);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.blog-card__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.blog-card__shape::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--espartyox-base, #212ED0);
  z-index: -1;
  opacity: 0.9;
}
.blog-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 100px;
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 4px;
  background-color: var(--espartyox-base, #212ED0);
  padding: 8px;
  z-index: 1;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card__tag {
    font-size: 14px;
  }
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card__meta {
    gap: 12px;
  }
}
.blog-card__meta a {
  line-height: 1;
  color: inherit;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card__meta a {
    font-size: 14px;
  }
}
.blog-card__meta a:hover {
  color: var(--espartyox-white, #fff);
}
.blog-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 127.273%;
  margin-bottom: 20px;
}
@media (max-width: 991px) and (min-width: 767px), (max-width: 425px) {
  .blog-card__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--espartyox-white, #fff);
}
.blog-card__text {
  margin-bottom: -4px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card__text {
    font-size: 14px;
  }
}
.blog-card__content {
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  border-top: none;
  transition: all 0.4s ease-in-out;
}
.blog-card__content__inner {
  padding: 14px 20px 30px;
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
}
.blog-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 29px 20px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card__bottom {
    padding: 15px 20px;
  }
}
.blog-card__bottom li {
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.blog-card__bottom li span {
  color: inherit;
}
.blog-card__bottom li a {
  color: var(--espartyox-base, #212ED0);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.blog-card__bottom li a i {
  font-weight: 900;
}
.blog-card__bottom li a:hover {
  letter-spacing: 1px;
}
.blog-card:hover {
  box-shadow: 8px 36px 60px 2px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-card__shape {
  opacity: 1;
  visibility: visible;
}
.blog-card:hover .blog-card__image::after {
  visibility: visible;
  opacity: 1;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}
.blog-card:hover .blog-card__content {
  border-color: var(--espartyox-base, #212ED0);
}
.blog-card:hover .blog-card__meta a,
.blog-card:hover .blog-card__title,
.blog-card:hover .blog-card__text,
.blog-card:hover .blog-card__bottom,
.blog-card:hover .blog-card__bottom span,
.blog-card:hover .blog-card__bottom a {
  color: var(--espartyox-white, #fff);
}

.blog-list__card {
  position: relative;
  z-index: 1;
}
.blog-list__card__image {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 27px;
  border-radius: 16px;
}
.blog-list__card__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  border-radius: 16px;
}
.blog-list__card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-black3-rgb, 0, 0, 0), 0.7);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.blog-list__card img {
  border-radius: 16px;
}
.blog-list__card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 100px;
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 4px;
  background-color: var(--espartyox-base, #212ED0);
  padding: 8px;
  z-index: 1;
}
@media (max-width: 425px) {
  .blog-list__card__tag {
    font-size: 14px;
  }
}
.blog-list__card__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.blog-list__card__meta a {
  line-height: 1;
  color: inherit;
  transition: all 0.4s ease-in-out;
}
.blog-list__card__meta a:hover {
  color: var(--espartyox-base, #212ED0);
}
.blog-list__card__title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 575px) {
  .blog-list__card__title {
    font-size: 25px;
  }
}
@media (max-width: 425px) {
  .blog-list__card__title {
    font-size: 20px;
  }
}
.blog-list__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-list__card__title a:hover {
  background-size: 100% 1px;
}
.blog-list__card__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.blog-list__card__text {
  margin-bottom: -4px;
  transition: all 0.4s ease-in-out;
}
.blog-list__card__text + .blog-list__card__title {
  margin-top: 30px;
}
.blog-list__card__text + .blog-list__card__image {
  margin-top: 20px;
}
.blog-list__card__content {
  border-top: none;
  transition: all 0.4s ease-in-out;
}
.blog-list__card__text + .blog-list__card__list {
  margin-top: 30px;
}
.blog-list__card__list {
  margin-bottom: 0;
}
.blog-list__card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.blog-list__card__list li i {
  color: var(--espartyox-base, #212ED0);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.blog-list__card__list li:hover i {
  color: var(--espartyox-black, #001A3D);
}
.blog-list__card__list li + li {
  margin-top: 20px;
}
.blog-list__card:hover .hover::after {
  opacity: 1;
  visibility: visible;
}

.blog-card-two {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.blog-card-two__image {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-card-two__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.blog-card-two__image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}
.blog-card-two__content {
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background-color: var(--espartyox-white, #fff);
  border-top: none;
  padding: 20px 20px 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card-two__content {
    padding: 20px 15px;
  }
}
.blog-card-two__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 4px;
  background-color: var(--espartyox-base, #212ED0);
  padding: 8px;
  z-index: 1;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card-two__meta {
    gap: 12px;
  }
}
.blog-card-two__meta a {
  line-height: 1;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.4s ease-in-out;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card-two__meta a {
    font-size: 14px;
  }
}
.blog-card-two__meta a:hover {
  color: var(--espartyox-black, #001A3D);
}
.blog-card-two__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 127.273%;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: 20px;
}
@media (max-width: 991px) and (min-width: 767px), (max-width: 425px) {
  .blog-card-two__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.blog-card-two__text {
  margin-bottom: 30px;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .blog-card-two__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.blog-card-two__btn a {
  padding: 15px;
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.blog-card-two__btn a::after {
  background-color: var(--espartyox-base, #212ED0);
}
.blog-card-two__btn a:hover {
  border-color: transparent;
  color: var(--espartyox-white, #fff);
}
.blog-card-two:hover {
  box-shadow: 12px 24px 50px 2px rgba(0, 0, 0, 0.1);
}
.blog-card-two:hover .blog-card-two__content {
  border-color: transparent;
}
.blog-card-two:hover .blog-card-two__image img {
  transform: scale(1.1);
}
.blog-card-two:hover .blog-card-two__image::after {
  height: 250%;
  transition: all 0.6s linear;
  background-color: rgba(0, 0, 0, 0);
}

.blog-card-three {
  border-radius: 4px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background: var(--espartyox-white, #fff);
  padding: 30px 20px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.blog-card-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.5s ease-in-out;
}
.blog-card-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 64, 53, 0.85);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.5s ease-in-out;
}
.blog-card-three__title {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.36px;
  margin-bottom: 18px;
}
.blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__title a:hover {
  background-size: 100% 1px;
}
.blog-card-three__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.blog-card-three__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.blog-card-three__meta li {
  line-height: 1;
}
.blog-card-three__meta a {
  line-height: 1;
  color: var(--espartyox-text, #737373);
  transition: all 0.3s ease-in-out;
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
}
.blog-card-three__meta a i {
  color: var(--espartyox-base, #212ED0);
  transition: all 0.3s ease-in-out;
}
.blog-card-three__meta a:hover {
  color: var(--espartyox-base, #212ED0);
}
.blog-card-three__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 19px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
  transition: all 0.3s ease-in-out;
}
.blog-card-three__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card-three__bottom .admin {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.32px;
  margin-bottom: 0;
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  color: var(--espartyox-black, #001A3D);
  transition: all 0.3s ease-in-out;
}
.blog-card-three__bottom a {
  color: var(--espartyox-base, #212ED0);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.32px;
  transition: all 0.3s ease-in-out;
}
.blog-card-three:hover {
  border-color: rgba(23, 64, 53, 0.75);
  box-shadow: 12px 36px 70px 1px rgba(0, 0, 0, 0.1);
}
.blog-card-three:hover::after,
.blog-card-three:hover .blog-card-three__bg {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.blog-card-three:hover::after {
  opacity: 90%;
}
.blog-card-three:hover .blog-card-three__text {
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-white, #fff);
}
.blog-card-three:hover .blog-card-three__title,
.blog-card-three:hover .blog-card-three__meta a,
.blog-card-three:hover .blog-card-three__meta a i,
.blog-card-three:hover .blog-card-three__bottom p,
.blog-card-three:hover .blog-card-three__bottom a {
  color: var(--espartyox-white, #fff);
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  color: var(--espartyox-black, #001A3D);
  cursor: pointer;
  margin: 0 0 7px;
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--espartyox-text, #737373);
  font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input,
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 56px;
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-text, #737373);
  border: none;
  outline: none;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  transition: all 500ms ease;
  padding: 0 20px;
}
.form-one .bootstrap-select > .dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input:focus,
.form-one input[type=email]:focus,
.form-one textarea:focus {
  color: var(--espartyox-black, #001A3D);
  border-color: var(--espartyox-base, #212ED0);
}
.form-one textarea {
  height: 185px;
  padding-top: 20px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one .checkbox {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}
.form-one .checkbox input {
  display: none;
}
.form-one .checkbox .custom-checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  background-image: url(../images/shapes/check-vector.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.form-one .checkbox .custom-checkbox::after {
  height: 11px;
  width: 14px;
  background-image: url(../images/shapes/check-box.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  top: 1px;
  right: -1px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form-one .checkbox input[type=checkbox]:checked + .custom-checkbox::after {
  opacity: 1;
}
.form-one .checkbox__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.32px;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--espartyox-base, #212ED0);
  -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(--espartyox-base, #212ED0);
  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(--espartyox-base, #212ED0);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  z-index: 1;
  padding-top: 220px;
  padding-bottom: 40px;
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.main-footer__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  transform: rotate(180deg);
  background: linear-gradient(250deg, #222DBE 10.48%, #020A6E 94.44%);
}
.main-footer__top {
  margin-bottom: 90px;
}
.main-footer .footer-logo {
  display: block;
  margin-bottom: 30px;
}
.main-footer__bottom {
  position: relative;
}
.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding-top: 20px;*/
  /*border-top: 1px solid rgba(245, 242, 240, 0.4);*/
}
@media (max-width: 991px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.main-footer__bottom__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  margin-bottom: 0;
}
.main-footer__bottom__list li > a {
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.main-footer__copyright {
  color: var(--espartyox-white, #fff);
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
}
.main-footer__copyright span {
  font-weight: 700;
}
.main-footer__copyright a {
  color: var(--espartyox-white, #fff);
  font-weight: 700;
  text-decoration: underline;
}
.main-footer--two {
  padding-bottom: 40px;
}
.main-footer--two .footer-widget__links a i,
.main-footer--two .footer-widget__info a i {
  color: var(--espartyox-base, #212ED0);
}
.main-footer--two .footer-widget__links a:hover {
  color: var(--espartyox-base, #212ED0);
  padding-left: 0;
}
.main-footer--two .main-footer__copyright .espartyox,
.main-footer--two .main-footer__copyright a {
  color: var(--espartyox-base, #212ED0);
}
.main-footer--two .main-footer__bg::after {
  background: none;
  background-color: rgba(2, 22, 35, 0.75);
}
.main-footer--three {
  padding: 40px 0px;
  background: #000;
}
.main-footer--three .main-footer__bg::after {
  background: none;
  background-color: rgba(1, 24, 50, 0.8);
}
.main-footer--three .footer-widget__links a i,
.main-footer--three .footer-widget__info a i {
  color: var(--espartyox-base, #212ED0);
}
.main-footer--three .footer-widget__links a:hover {
  color: var(--espartyox-base, #212ED0);
  padding-left: 0;
}
.main-footer--three .main-footer__copyright .espartyox,
.main-footer--three .main-footer__copyright a {
  color: var(--espartyox-base, #212ED0);
}
.main-footer--three .main-footer__bottom__inner {
  /*padding-top: 30px;*/
  /*border-top: 0.3px solid #737373;*/
}
.main-footer--three .back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.main-footer--three .back-to-top:hover {
  background-color: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
}

.footer-widget__box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer-widget__box--one {
  margin-left: -13px;
  margin-right: 90px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .footer-widget__box--one {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .footer-widget__box--one {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.footer-widget__box--two {
  margin-left: -30px;
}
@media (max-width: 991px) {
  .footer-widget__box--two {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.footer-widget__info {
  margin-bottom: 30px;
}
.footer-widget__info li > a {
  display: flex;
  align-items: center;
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  gap: 10px;
}
.footer-widget__info li + li {
  margin-top: 30px;
}
.footer-widget__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--espartyox-white, #fff);
}
.footer-widget__social a:nth-child(1) {
  background-color: #37B1E2;
}
.footer-widget__social a:nth-child(2) {
  background-color: #4B69B1;
}
.footer-widget__social a:nth-child(3) {
  background-color: #C23772;
}
.footer-widget__social a:nth-child(4) {
  background-color: #E83F3A;
}
.footer-widget__social a:hover {
  color: var(--espartyox-white, #fff);
}
.footer-widget__title {
  color: var(--espartyox-white, #fff);
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.footer-widget__links {
  margin-bottom: 0;
}
.footer-widget__links li > a {
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.4s ease-in-out;
}
.footer-widget__links li > a i {
  margin-right: 2px;
}
.footer-widget__links li > a:hover {
  padding-left: 8px;
}
.footer-widget__links li + li {
  margin-top: 17px;
}

.footer-cta {
  position: relative;
  z-index: 2;
}
.footer-cta__inner {
  padding: 50px;
  background: linear-gradient(250deg, #222DBE 10.48%, #020A6E 94.44%);
  box-shadow: 8px 16px 60px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .footer-cta__inner {
    padding: 50px 30px;
  }
}
.footer-cta__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.footer-cta__inner__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  background: var(--espartyox-base, #212ED0);
}
.footer-cta__title__text {
  color: var(--espartyox-white, #fff);
  font-size: 40px;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 0;
}
@media (max-width: 991px) and (min-width: 992px) {
  .footer-cta__title__text {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .footer-cta__title__text {
    font-size: 30px;
  }
}
.footer-cta__right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .footer-cta__right {
    gap: 10px;
    margin-left: -30px;
  }
}
@media (max-width: 991px) {
  .footer-cta__right {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .footer-cta__right {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.footer-cta .espartyox-btn {
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-base, #212ED0);
}
.footer-cta .espartyox-btn:hover {
  color: var(--espartyox-white, #fff);
}
.footer-cta .footer-cta__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}
.footer-cta .footer-cta__call__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--espartyox-white, #fff);
  font-size: 30px;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.4s ease-in-out;
}
.footer-cta .footer-cta__call__text {
  color: var(--espartyox-white, #fff);
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 12px;
}
.footer-cta .footer-cta__call a {
  color: var(--espartyox-white, #fff);
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 0;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-cta .footer-cta__call a:hover {
  background-size: 100% 1px;
}
.footer-cta .footer-cta__call:hover .footer-cta__call__icon {
  background-color: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
}
.footer-cta .footer-cta__call:hover .footer-cta__call__icon i {
  animation: bellshake 1s ease-in-out infinite;
}
.footer-cta--two .footer-cta__title__text {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
}
.footer-cta--two .footer-cta__inner {
  background: none;
}
.footer-cta--two .espartyox-btn-two {
  background-color: var(--espartyox-black, #001A3D);
  border: none;
}
.footer-cta--three .footer-cta__inner {
  background: none;
  background-color: var(--espartyox-base, #212ED0);
  border-radius: 8px;
  box-shadow: 12px 48px 90px 2px rgba(247, 87, 9, 0.1);
}
.footer-cta--three .espartyox-btn-three {
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-black, #001A3D);
}
.footer-cta--three .espartyox-btn-three:hover {
  border-color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-base, #212ED0);
}
.footer-cta--three .espartyox-btn-three:hover i,
.footer-cta--three .espartyox-btn-three:hover .espartyox-btn-three__text {
  color: var(--espartyox-white, #fff);
}
.footer-cta--three .footer-cta__title__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-area .container {
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}
.contact-area__list {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 100px;
}
@media (max-width: 575px) {
  .contact-area__list {
    gap: 30px;
  }
}
@media (max-width: 430px) {
  .contact-area__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991px) {
  .contact-area__list {
    max-width: 600px;
  }
}
.contact-area__list .icon {
  font-size: 45px;
  color: var(--espartyox-base, #212ED0);
  line-height: 1;
  margin-bottom: 25px;
  transition: all 0.4s ease-in-out;
}
.contact-area__list__text {
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  margin-bottom: 0;
  display: block;
  transition: all 0.4s ease-in-out;
}
.contact-area__list a:hover {
  color: var(--espartyox-base, #212ED0);
  letter-spacing: 1px;
}
.contact-area__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 133.333%;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .contact-area__title {
    margin-bottom: 50px;
  }
}
.contact-area__list__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10px;
}
.contact-area .footer-widget__social a:hover {
  color: var(--espartyox-white, #fff);
}
.contact-area__form label {
  color: var(--espartyox-black, #001A3D);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 18px;
}
.contact-area .form-one__group {
  grid-gap: 20px;
}
.contact-area .form-one .bootstrap-select > .dropdown-toggle,
.contact-area .form-one input,
.contact-area .form-one input[type=text],
.contact-area .form-one input[type=email],
.contact-area .form-one textarea {
  border-radius: 8px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  height: 52px;
}
.contact-area .form-one .bootstrap-select > .dropdown-toggle::placeholder,
.contact-area .form-one input::placeholder,
.contact-area .form-one input[type=text]::placeholder,
.contact-area .form-one input[type=email]::placeholder,
.contact-area .form-one textarea::placeholder {
  color: #BEBEBE;
  font-size: 16px;
  font-weight: 400;
}
.contact-area .form-one .bootstrap-select > .dropdown-toggle:focus,
.contact-area .form-one input:focus,
.contact-area .form-one input[type=text]:focus,
.contact-area .form-one input[type=email]:focus,
.contact-area .form-one textarea:focus {
  border-color: var(--espartyox-base, #212ED0);
}
.contact-area .form-one textarea {
  height: 125px;
}
.contact-area .contact-area__form__title {
  color: var(--espartyox-base, #212ED0);
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 30px;
}

.contact-location .google-map iframe {
  height: 500px;
}

.contact-three__wrapper {
  border-radius: 10px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background-color: var(--espartyox-white, #fff);
  box-shadow: 24px 96px 150px 2px rgba(0, 0, 0, 0.1);
}
.contact-three__thumb img {
  object-fit: cover;
}
@media (max-width: 991px) {
  .contact-three__thumb {
    padding: 40px;
    padding-top: 0;
  }
  .contact-three__thumb img {
    width: 100%;
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .contact-three__thumb {
    padding: 20px;
    padding-top: 0;
  }
}
.contact-three__content {
  padding: 40px 0px 40px 40px;
}
.contact-three__content .sec-title-three {
  padding-bottom: 40px;
}
.contact-three__content .sec-title-three__tagline {
  font-size: 20px;
}
.contact-three__content .sec-title-three__title {
  font-size: 36px;
  letter-spacing: 0.72px;
}
@media (max-width: 991px) {
  .contact-three__content {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .contact-three__content {
    padding: 20px;
    padding-bottom: 0;
  }
}
.contact-three .form-one__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .contact-three .form-one__top {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
}
.contact-three .form-one__top__title {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.44px;
  margin-bottom: 0;
}
.contact-three .form-one__top__active {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 0;
}
.contact-three .form-one .form-one__group {
  grid-gap: 20px;
}
.contact-three .form-one__control {
  position: relative;
}
.contact-three .form-one__control .orm-one__control-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--espartyox-text, #737373);
}
.contact-three .form-one__control .bootstrap-select > .dropdown-toggle,
.contact-three .form-one__control textarea,
.contact-three .form-one__control input {
  border-radius: 8px;
  border: 1px solid #DDD;
  color: var(--espartyox-text, #737373);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.32px;
  padding-right: 50px;
}
.contact-three .form-one__control .bootstrap-select > .dropdown-toggle::placeholder,
.contact-three .form-one__control textarea::placeholder,
.contact-three .form-one__control input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.32px;
}
.contact-three .form-one__control textarea {
  height: 140px;
}
.contact-three .form-one__control.message .orm-one__control-icon {
  top: 20px;
  transform: translateY(0);
}
.contact-three .form-one__control input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.contact-three .form-one__control input[type=date] {
  -moz-appearance: textfield;
}
.contact-three .form-one__control .bootstrap-select > .dropdown-toggle {
  padding-right: 20px;
}
.contact-three .form-one__control .bootstrap-select > .dropdown-toggle:after {
  display: none;
}
.contact-three .form-one__control .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "icomoon" !important;
  content: "\e923";
  font-weight: 700;
  line-height: 56px;
  font-size: 16px;
  color: var(--espartyox-black, #001A3D);
}
.contact-three .form-one__control .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  color: var(--espartyox-white, #fff);
  background: var(--espartyox-black, #001A3D);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.contact-three .form-one__control .bootstrap-select .dropdown-menu > li:hover > a,
.contact-three .form-one__control .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-gray, #DDDDDD);
}
.contact-three .form-one__control .espartyox-btn-three {
  width: 100%;
  justify-content: center;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  background-color: var(--espartyox-base, #212ED0);
}
@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}
.topbar__info {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
}
.topbar__info li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--espartyox-white, #fff);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.32px;
}
.topbar__info p, .topbar__info a {
  transition: all 0.4s ease-in-out;
  color: inherit;
  margin-bottom: 0;
}
.topbar__info a:hover {
  color: var(--espartyox-text, #737373);
}
.topbar .topbar__info__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.user-info__btn {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  transition: all 0.4s ease-in-out;
  color: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.32px;
}

.user-info {
  position: relative;
}
.user-info__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 11px);
  width: 130px;
  background-color: var(--espartyox-white, #fff);
  padding: 15px 20px;
  z-index: 99;
  display: none;
  border-radius: 10px;
}
.user-info__dropdown a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  gap: 5px;
  font-weight: 500;
  color: var(--espartyox-black, #001A3D);
  line-height: 12px;
  padding-right: 15px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
}
.user-info__dropdown a i {
  color: var(--espartyox-base, #212ED0);
}
.user-info__dropdown a:hover {
  color: var(--espartyox-base, #212ED0);
}
.user-info__dropdown a:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.topbar-two {
  background-color: #021623;
  border-bottom: 0.5px solid rgba(245, 246, 250, 0.5);
}
@media (max-width: 991px) {
  .topbar-two {
    display: none;
  }
}
.topbar-two__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-two .topbar-two__info__icon {
  line-height: 1;
}
.topbar-two__info {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
}
.topbar-two__info li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--espartyox-white, #fff);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.32px;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  padding: 19px 20px;
  border-left: 0.5px solid rgba(245, 246, 250, 0.5);
}
.topbar-two__info li:last-child {
  border-right: 0.5px solid rgba(245, 246, 250, 0.5);
}
.topbar-two__info p, .topbar-two__info a {
  color: inherit;
  margin-bottom: 0;
}
.topbar-two__info a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-two__info a:hover {
  background-size: 100% 1px;
}
.topbar-two__info a:hover {
  color: var(--espartyox-base, #212ED0);
}
.topbar-two__social {
  display: flex;
  align-items: center;
}
.topbar-two__social a {
  font-size: 20px;
  color: var(--espartyox-white, #fff);
  padding: 19px 20px;
  line-height: 1;
  border-left: 0.5px solid rgba(var(--espartyox-white-rgb, 255, 255, 255), 0.5);
}
.topbar-two__social a:last-child {
  border-right: 0.5px solid rgba(var(--espartyox-white-rgb, 255, 255, 255), 0.5);
}
.topbar-two.topbar--three {
  background-color: var(--espartyox-black, #001A3D);
  border-bottom: none;
}
.topbar-two.topbar--three .topbar-two__info {
  gap: 0;
}
.topbar-two.topbar--three .topbar-two__info li {
  padding: 19px 20px;
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  border-color: rgba(var(--espartyox-white-rgb, 255, 255, 255), 0.5);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  background-color: transparent;
}
.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 5px;
  position: relative;
}
.main-header__logo {
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: auto;
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header .main-header__search {
  font-size: 22px;
  color: var(--espartyox-white, #fff);
  margin-right: 30px;
}
.main-header--one {
  margin-bottom: -90px;
}
@media (max-width: 991px) {
  .main-header--one {
    margin-bottom: 0;
    background-color: var(--espartyox-black, #001A3D);
  }
}
.main-header--one .main-header__inner {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .main-header--one .main-header__inner {
    padding: 15px 0;
  }
}
.main-header--one .espartyox-btn {
  background-color: transparent;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  color: var(--espartyox-white, #fff);
}
.main-header--one .espartyox-btn::after {
  background-color: var(--espartyox-base, #212ED0);
}
.main-header--one .espartyox-btn:hover {
  border-color: var(--espartyox-base, #212ED0);
}
@media (max-width: 575px) {
  .main-header--one .espartyox-btn {
    display: none;
  }
}
.main-header--two {
  margin-bottom: -88px;
}
@media (max-width: 991px) {
  .main-header--two {
    margin-bottom: 0;
    background-color: var(--espartyox-black, #001A3D);
  }
  .main-header--two .main-header__inner {
    padding: 10px 0;
  }
}
.main-header--two .main-menu .main-menu__list > li > a {
  color: var(--espartyox-white, #fff);
}
.main-header--two .main-header__inner {
  padding-top: 30px;
}
@media (max-width: 991px) {
  .main-header--two .main-header__inner {
    padding: 10px 0;
  }
}
.main-header--two .main-header__btn {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .main-header--two .main-header__btn .main-header__search {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__btn .espartyox-btn-two {
    display: none;
  }
}
.main-header--three {
  margin-bottom: 0;
  background-color: var(--espartyox-white, #fff);
}
@media (max-width: 991px) {
  .main-header--three {
    padding: 10px 0;
  }
}
.main-header--three::after {
  content: "";
  position: absolute;
  bottom: -0.6px;
  left: 0;
  width: 100%;
  height: 0.6px;
  background-color: var(--espartyox-gray, #DDDDDD);
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-header--three .main-header__btn {
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}
.main-header--three .main-header__search {
  font-size: 22px;
  color: var(--espartyox-black, #001A3D);
  font-weight: 700;
}
.main-header--three .main-menu .main-menu__list > li.current > a,
.main-header--three .main-menu .main-menu__list > li:hover > a {
  color: var(--espartyox-base, #212ED0);
  text-shadow: 0 0 0.5px currentColor;
}
.main-header--three .mobile-nav__btn span {
  background-color: var(--espartyox-black, #001A3D);
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--espartyox-black, #001A3D);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--espartyox-black-rgb, 0, 26, 61), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned .main-header__inner {
  padding: 0px 0;
}
@media (max-width: 991px) {
  .sticky-header--cloned .main-header__inner {
    padding: 10px 0;
  }
}
.sticky-header--cloned .main-menu .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-header--three.sticky-header--cloned {
  background-color: var(--espartyox-white, #fff);
}
.main-header--three.sticky-header--cloned::after {
  background-color: var(--espartyox-black, #001A3D);
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 991px) {
  .mobile-nav__btn {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .mobile-nav__btn, .main-header__right {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--espartyox-white, #fff);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 992px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 30px;
}
.main-menu .main-menu__list > li > a {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.main-menu .main-menu__list > li > a > i {
  margin-left: 4px;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--espartyox-white, #fff);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--espartyox-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--espartyox-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: -15px !important;
  right: -15px !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  transition: all 300ms linear 0ms;
  transform: perspective(500px) rotateX(-20deg);
  transform-origin: 50% 0%;
  pointer-events: none;
}
.main-menu .main-menu__list li.megamenu:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: perspective(500px) rotateX(0);
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
.main-menu .main-menu__list li ul li:last-child {
  margin-bottom: 0px;
}
.main-menu .main-menu__list li.megamenu ul li {
  margin: 0;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 16px;
  line-height: 100%;
  color: var(--espartyox-text, #737373);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 12px 20px;
  transition: 400ms;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: var(--espartyox-white, #fff);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

.main-menu-five .main-menu__list > li.current > a,
.main-menu-five .main-menu__list > li:hover > a {
  color: var(--espartyox-primary, #000) !important;
  text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 992px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# 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(--espartyox-white, #fff);
  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(--espartyox-black, #001A3D);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--espartyox-base, #212ED0);
}
.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);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--espartyox-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--espartyox-black-rgb, 0, 26, 61), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--espartyox-black, #001A3D);
  font-weight: 600;
}
.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 {
  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__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--espartyox-black3-rgb, 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: 15px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__btns .espartyox-btn {
  margin: 0 !important;
  width: 155px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  text-align: center;
  justify-content: center;
  font-size: 14px;
}
.demo-one__btn > i {
  border: none;
  padding: 7px 15px;
  width: 130px;
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 28px;
  padding-bottom: 28px;
}

.home-showcase .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  max-height: 90vh;
  overflow-y: scroll;
  padding: 40px 40px 21px;
  background-color: var(--espartyox-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--espartyox-black-rgb, 0, 26, 61), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 17px;
  margin-top: 20px;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  padding: 70px 0px;
  position: relative;
  z-index: 1;
}
.funfact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.funfact-one::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.85);
  z-index: -1;
}
.funfact-one__list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .funfact-one__list {
    flex-wrap: wrap;
  }
}
.funfact-one__list__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .funfact-one__list__item {
    flex: 45%;
    width: 55%;
  }
}
@media (max-width: 475px) {
  .funfact-one__list__item {
    flex: 100%;
    width: 100%;
    gap: 30px;
  }
}
.funfact-one__list__item:hover .funfact-one__list__icon {
  animation: flipInY 1s ease-in-out 1;
}
.funfact-one__list__icon {
  font-size: 70px;
  color: var(--espartyox-white, #fff);
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 767px) {
  .funfact-one__list__icon {
    font-size: 50px;
  }
}
.funfact-one__list__content {
  text-align: center;
}
@media (max-width: 475px) {
  .funfact-one__list__content {
    text-align: left;
  }
}
.funfact-one__list__count {
  color: var(--espartyox-white, #fff);
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 767px) {
  .funfact-one__list__count {
    font-size: 30px;
  }
}
.funfact-one__list__text {
  color: var(--espartyox-white, #fff);
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 767px) {
  .funfact-one__list__text {
    font-size: 20px;
  }
}
.funfact-one--two {
  background-color: #F5F6FA;
}
.funfact-one--two .funfact-one__list__count {
  color: #021623;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 48px;
}
.funfact-one--two .funfact-one__list__text {
  color: var(--espartyox-base, #212ED0);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 500px) {
  .funfact-one--two .funfact-one__list__text {
    font-size: 18px;
  }
}
.funfact-one--three::after {
  background-color: #000;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background: var(--espartyox-white, #fff);
  padding: 30px 20px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px) {
  .testimonials-card {
    padding: 20px 15px;
  }
}
.testimonials-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-70%);
  transition: all 0.5s ease-in-out;
}
.testimonials-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--espartyox-base, #212ED0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-70%);
  transition: all 0.5s ease-in-out;
}
.testimonials-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.testimonials-card__text {
  letter-spacing: 0.32px;
  margin-bottom: 19px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
  transition: all 0.5s ease-in-out;
}
.testimonials-card__auth__thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--espartyox-base, #212ED0);
  transition: all 0.5s ease-in-out;
}
.testimonials-card__auth__thumb img {
  width: 100%;
  object-fit: cover;
}
.testimonials-card__quite i {
  font-size: 50px;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.5s ease-in-out;
  visibility: visible;
  opacity: 1;
}
.testimonials-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-card__name {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .testimonials-card__name {
    font-size: 16px;
  }
}
.testimonials-card__deception {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.28px;
  margin-bottom: -2px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 425px) {
  .testimonials-card__deception {
    font-size: 12px;
  }
}
.testimonials-card__rating {
  font-size: 16px;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.5s ease-in-out;
}
.testimonials-card:hover {
  border-color: var(--espartyox-base, #212ED0);
  box-shadow: 8px 36px 60px 2px rgba(0, 0, 0, 0.1);
}
.testimonials-card:hover::after,
.testimonials-card:hover .testimonials-card__bg {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.testimonials-card:hover::after {
  opacity: 90%;
}
.testimonials-card:hover .testimonials-card__quite i {
  color: var(--espartyox-white, #fff);
}
.testimonials-card:hover .testimonials-card__auth__thumb {
  border-color: var(--espartyox-white, #fff);
}
.testimonials-card:hover .testimonials-card__auth__thumb img {
  animation: scaleUpToscaleDown 1s linear 1;
}
.testimonials-card:hover .testimonials-card__text {
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-white, #fff);
}
.testimonials-card:hover .testimonials-card__name,
.testimonials-card:hover .testimonials-card__deception,
.testimonials-card:hover .testimonials-card__rating {
  color: var(--espartyox-white, #fff);
}
.testimonials-card--three {
  border-radius: 4px;
  border-color: var(--espartyox-gray, #DDDDDD);
}
.testimonials-card--three .testimonials-card__top {
  line-height: 1;
}
.testimonials-card--three .testimonials-card__quite i {
  font-size: 24px;
}
.testimonials-card--three .testimonials-card__rating i {
  font-size: 14px;
}
.testimonials-card--three .testimonials-card__name,
.testimonials-card--three .testimonials-card__deception,
.testimonials-card--three .testimonials-card__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
}
.testimonials-card--three::after {
  background-color: rgba(23, 64, 53, 0.8);
}
.testimonials-card--three:hover {
  border-color: rgba(23, 64, 53, 0.8);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-two {
  position: relative;
  z-index: 1;
}
.cta-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.cta-two__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background-color: #021623;
}
.cta-two__content {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-two__title {
  color: var(--espartyox-white, #fff);
  text-shadow: 8px 40px 60px rgba(0, 0, 0, 0.1);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 126.316%;
  letter-spacing: 0.76px;
  margin-bottom: 20px;
}
.cta-two__text {
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 40px;
}
.cta-two .form-one {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .cta-two .form-one {
    flex-wrap: wrap;
  }
}
.cta-two .form-one .espartyox-btn-two {
  padding: 17.5px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  height: 58px;
}
.cta-two .form-one input {
  max-width: 265px;
}
.cta-two .form-one .form-one__control .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}
.sidebar__single {
  border-radius: 16px;
  background-color: #F0F2F8;
  padding: 40px 30px;
}
@media (min-width: 992px) and (max-width: 991px) {
  .sidebar__single {
    padding: 35px 20px 35px;
  }
}
@media (max-width: 767px) {
  .sidebar__single {
    padding: 30px 25px 30px;
  }
}
.sidebar__single__search {
  padding: 30px;
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  color: var(--espartyox-base, #212ED0);
  margin-bottom: 20px;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 56px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
  border-radius: 8px;
  border: 0.2px solid var(--espartyox-base, #212ED0);
  background: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  color: var(--espartyox-text, #737373);
}
.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
  font-size: 16px;
  font-weight: 400;
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: auto;
  font-size: 18px;
  color: var(--espartyox-base, #212ED0);
  transition: all 500ms ease;
}
.sidebar__categories {
  margin: 0;
  padding: 0;
  margin-top: -8px;
}
.sidebar__categories li {
  position: relative;
  display: block;
}
.sidebar__categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 500ms ease;
  padding: 20px 0px;
  border-bottom: 1px solid var(--espartyox-border-color, #d9d9d9);
  position: relative;
  z-index: 1;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.sidebar__categories li a i {
  color: var(--espartyox-base, #212ED0);
}
.sidebar__categories li a span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar__categories li.current a, .sidebar__categories li:hover a {
  border-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-base, #212ED0);
}
.sidebar__categories li.current a i, .sidebar__categories li:hover a i {
  color: var(--espartyox-base, #212ED0);
}
.sidebar__categories li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  border-bottom: 1px solid var(--espartyox-border-color, #d9d9d9);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.sidebar__posts__item:hover .sidebar__posts__image img {
  transform: scale(1.1) rotate(5deg);
}
.sidebar__posts__image {
  width: 97px;
  height: 89px;
  flex-shrink: 0;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 4px;
}
.sidebar__posts__image img {
  transition: all 0.4s ease-in-out;
  object-fit: cover;
  width: 100%;
}
.sidebar__posts__meta {
  margin: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.sidebar__posts__meta i {
  position: relative;
  top: 1px;
  color: var(--espartyox-base, #212ED0);
}
.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: var(--espartyox-text, #737373);
  max-width: 170px;
  margin-bottom: 10px;
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
  margin-right: -15px;
}
@media (min-width: 992px) and (max-width: 991px) {
  .sidebar__comments__item {
    margin-right: -5px;
  }
}
@media (max-width: 767px) {
  .sidebar__comments__item {
    margin-right: -5px;
  }
}
.sidebar__comments__item:not(:last-of-type) {
  padding-bottom: 24px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F1F2FD;
  font-size: 20px;
  color: var(--espartyox-base, #212ED0);
  margin-right: 10px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.sidebar__comments__title {
  margin: 0;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  color: var(--espartyox-text, #737373);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.sidebar__comments__title a {
  font-family: var(--espartyox-font, "Inter", sans-serif);
  color: var(--espartyox-black, #001A3D);
  transition: all 500ms ease;
  display: block;
}
.sidebar__comments__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.sidebar__tags a {
  transition: all 500ms ease;
  display: inline-flex;
  padding: 10px 15px;
  color: #77779B;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 1000px;
  border: 1px solid #77779B;
}
.sidebar__tags a:hover {
  color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-base, #212ED0);
  border-color: var(--espartyox-base, #212ED0);
}
.sidebar .sidebar__text {
  margin-bottom: 30px;
  margin-top: 4px;
}
.sidebar__subscribe input[type=email],
.sidebar__subscribe input[type=text] {
  outline: none;
  width: 100%;
  height: 56px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
  border-radius: 8px;
  border: 0.2px solid var(--espartyox-base, #212ED0);
  background: var(--espartyox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  color: var(--espartyox-text, #737373);
}
.sidebar__subscribe input[type=email]::placeholder,
.sidebar__subscribe input[type=text]::placeholder {
  font-size: 16px;
  font-weight: 400;
}
.sidebar__subscribe .subscribe__item {
  position: relative;
}
.sidebar__subscribe .subscribe__item .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--espartyox-base, #212ED0);
}
.sidebar__subscribe .espartyox-btn {
  margin-top: 20px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  z-index: 1;
}
.blog-details__post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 567px) {
  .blog-details__post-meta {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
  }
}
.blog-details__tags, .blog-details__posts {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__tags__title, .blog-details__posts__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: var(--espartyox-text, #737373);
  margin-bottom: 0;
}
.blog-details .sidebar__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details .sidebar__tags a {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 16px;
  border: 0.4px solid var(--espartyox-gray, #DDDDDD);
  background-color: #E1E4FF;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.4s ease-in-out;
}
.blog-details .sidebar__tags a:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-base, #212ED0);
}
.blog-details .blog-list__card + .blog-details__post-meta {
  padding-top: 30px;
  margin-top: 30px;
  padding-bottom: 30px;
  border-top: 0.4px solid var(--espartyox-gray, #DDDDDD);
  border-bottom: 0.4px solid var(--espartyox-gray, #DDDDDD);
}
.blog-details .blog-details__post-meta + .comments-one {
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  position: relative;
  z-index: 1;
}
.comments-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 30px;
}
.comments-one__card {
  padding: 30px;
  border-radius: 16px;
  background: #F0F2F8;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 567px) {
  .comments-one__card {
    align-items: start;
  }
}
.comments-one__card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.comments-one__card__title span {
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  margin-left: 40px;
}
@media (max-width: 567px) {
  .comments-one__card__title span {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
.comments-one__card__image {
  max-width: 90px;
  width: 100%;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments-one__card__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}
.comments-one__card__btn a {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .comments-one__card__btn a {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
  }
}
.comments-one__card__btn a i {
  transform: rotateX(180deg);
  color: var(--espartyox-base, #212ED0);
}
.comments-one__card__btn a:hover {
  color: var(--espartyox-base, #212ED0);
}
.comments-one__card__text {
  margin-bottom: 0;
}

.comments-one + .comments-form {
  margin-top: 40px;
}

.comments-form {
  position: relative;
  z-index: 1;
}
.comments-form__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 30px;
}
.comments-form .form-one textarea,
.comments-form .form-one input {
  border-radius: 8px;
  border: 0.7px solid var(--espartyox-gray, #DDDDDD);
  background: var(--espartyox-white, #fff);
  color: #77779B;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.comments-form .form-one textarea::placeholder,
.comments-form .form-one input::placeholder {
  color: #77779B;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.comments-form .form-one label {
  color: #77779B;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.comments-form__checked-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.comments-form__checked-box label span:before {
  position: absolute;
  top: 5px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--espartyox-base, #212ED0);
  border-right: 2px solid var(--espartyox-base, #212ED0);
  content: "";
  width: 5px;
  height: 8px;
  pointer-events: none;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.comments-form__checked-box input[type=checkbox] {
  display: none;
}
.comments-form__checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border: 1px solid var(--espartyox-base, #212ED0);
}
.comments-form__checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  /** Product Item**/
}
.product__sidebar {
  position: relative;
}
.product__sidebar--title {
  position: relative;
  margin-bottom: 22px;
  color: var(--espartyox-black, #001A3D);
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}
.product__search {
  background-color: var(--espartyox-gray2, #F6F6F4);
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.product__sidebar__search {
  position: relative;
}
.product__sidebar__search input[type=search],
.product__sidebar__search input[type=text] {
  outline: none;
  border-radius: 6px;
  width: 100%;
  height: 55px;
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
  border: none;
}
.product__sidebar__search input[type=search]:focus,
.product__sidebar__search input[type=text]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.product__sidebar__search input[type=search]::placeholder,
.product__sidebar__search input[type=text]::placeholder {
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
}
.product__sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: auto;
  font-size: 16px;
  color: var(--espartyox-white, #fff);
  width: 34px;
  height: 34px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-self: center;
  justify-content: center;
  background-color: var(--espartyox-base, #212ED0);
  transition: all 500ms ease;
}
.product__sidebar__search button[type=submit] i {
  line-height: 30px;
  font-size: 16px;
}
.product__sidebar__search button[type=submit]:hover {
  background-color: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
}
.product__price-ranger {
  background-color: var(--espartyox-gray2, #F6F6F4);
  padding: 24px 28px 28px;
  margin-bottom: 30px;
  border-radius: 6px;
}
.product__price-ranger .product__sidebar--title {
  margin-bottom: 15px;
}
.product__price-ranger #slider-range {
  margin: 15px 0 23px 0px;
  background: var(--espartyox-gray, #DDDDDD);
  border: none;
  height: 6px;
  border-radius: 10px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--espartyox-base, #212ED0);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--espartyox-base, #212ED0);
  border: 0;
  height: 15px;
  width: 15px !important;
  border-radius: 50%;
  margin-left: -3px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 0 0px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--espartyox-black, #001A3D);
  width: 45px;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--espartyox-black, #001A3D);
  font-size: 16px;
  font-weight: 700;
  left: -2px;
}
.product__price-ranger .ranger-min-max-block button[type=submit] {
  position: relative;
  display: block;
  float: right;
  text-align: center;
  border: none;
  margin: 0;
  cursor: pointer;
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 185.714%;
  text-transform: capitalize;
  z-index: 1;
  border-radius: 5px;
  background: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.product__price-ranger .ranger-min-max-block button[type=submit]::after, .product__price-ranger .ranger-min-max-block button[type=submit]::before {
  display: none;
}
.product__price-ranger .ranger-min-max-block button[type=submit]:hover {
  color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-base, #212ED0);
}
.product__categories {
  background-color: var(--espartyox-gray2, #F6F6F4);
  padding: 24px 28px 28px;
  border-radius: 8px;
}
.product__categories ul {
  margin-bottom: 0;
}
.product__categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  transition: all 500ms ease;
  background-color: var(--espartyox-white, #fff);
  border-radius: 30px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  line-height: 100%;
  font-weight: 600;
}
.product__categories ul li a i {
  margin-right: 6px;
  transition: all 500ms ease;
  color: var(--espartyox-base, #212ED0);
}
.product__categories ul li a:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.product__categories ul li a:hover i {
  color: var(--espartyox-white, #fff);
}
.product__categories ul li + li {
  margin-top: 20px;
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .product__info-top {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .product__info-top {
    display: block;
    margin-top: 40px;
  }
}
.product__showing-text {
  margin: 0;
  color: var(--espartyox-black, #001A3D);
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 15px;
  }
}
.product__showing-sort {
  margin: 0;
  font-size: 16px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 210px !important;
}
@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 210px !important;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  border-radius: 0;
  position: relative;
  height: 50px;
  outline: none !important;
  border: 0;
  background-color: var(--espartyox-gray2, #F6F6F4) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 50px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "icomoon" !important;
  content: "\e923";
  font-weight: 700;
  font-size: 16px;
  color: var(--espartyox-black, #001A3D);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(var(--espartyox-gray-rgb, 221, 221, 221), 0.4);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  color: var(--espartyox-white, #fff);
  background: var(--espartyox-black, #001A3D);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-gray, #DDDDDD);
}
.product__item {
  position: relative;
  background-color: var(--espartyox-white, #fff);
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  transition: all 500ms ease;
  padding: 0px 20px 40px;
  border-radius: 8px;
}
.product__item:hover {
  border: 1px solid var(--espartyox-base, #212ED0);
}
.product__item__img {
  background-color: var(--espartyox-white, #fff);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.product__item__img__item {
  max-width: 220px;
  width: 100%;
  height: 210px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 20px;
}
.product__item__img__item img {
  object-fit: cover;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item__btn {
  position: absolute;
  right: 0px;
  top: 20px;
  z-index: 2;
}
.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #F1F5F6;
  border-radius: 50%;
  color: var(--espartyox-base, #212ED0);
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.product__item__btn a:nth-child(1) {
  transition: transform 300ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(2) {
  transition: transform 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(3) {
  transition: transform 500ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(4) {
  transition: transform 600ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a + a {
  margin-top: 10px;
}
.product__item:hover .product__item__img img {
  transform: scale(1.05);
}
.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.product__item__content {
  position: relative;
  text-align: center;
}
.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: var(--espartyox-base, #212ED0);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.product__item__title {
  margin-bottom: 4px;
  color: var(--espartyox-black, #001A3D);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}
.product__item__title a {
  color: inherit;
}
.product__item__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 600;
}
.product__item .espartyox-btn {
  color: var(--espartyox-white, #fff);
  font-size: 13.959px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 13px 18px;
  background: var(--espartyox-black, #001A3D);
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.product__item .espartyox-btn::before, .product__item .espartyox-btn::after {
  background-color: var(--espartyox-base, #212ED0);
}
.product__item .espartyox-btn:hover {
  color: var(--espartyox-white, #fff);
}

@media (min-width: 992px) {
  .product-one__carousel .owl-nav {
    display: none;
  }
}
.product-one__carousel .product__item__img__item img {
  width: auto !important;
}

/***Category Area***/
.category-area {
  position: relative;
  z-index: 1;
  background-color: var(--espartyox-white, #fff);
}
.category-area .sec-title {
  padding-bottom: 80px;
}

.product-three {
  transition: all 0.4s ease-in-out;
}
.product-three__thumb {
  width: 117px;
  height: 117px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E9F6EB;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.product-three__title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.product-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-three__title a:hover {
  background-size: 100% 1px;
}
.product-three__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.product-three__inner {
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 20px;
  padding: 50px 30px 0;
  transition: all 0.6s ease-in-out;
}
.product-three__inner .product-three__box {
  position: relative;
  margin-bottom: -20px;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-base, #212ED0);
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease-in-out;
}
.product-three__inner .product-three__box::after {
  content: "";
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  position: absolute;
  background-color: transparent;
  border-radius: 50%;
  border: 1px dashed var(--espartyox-black, #001A3D);
  animation: rotated 8s ease-in-out infinite;
}
.product-three__inner::after {
  content: "";
  width: 330px;
  height: 330px;
  background-color: var(--espartyox-base, #212ED0);
  border-radius: 330px;
  background: var(--espartyox-base, #212ED0);
  position: absolute;
  top: -330px;
  left: 50%;
  visibility: hidden;
  transform: translateX(-50%);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.product-three__btn {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.product-three__btn a {
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-black, #001A3D);
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
}
.product-three__btn a:hover {
  color: var(--espartyox-white, #fff);
  background-color: var(--espartyox-base, #212ED0);
}
.product-three:hover {
  transform: translateY(-20px);
}
.product-three:hover .product-three__inner {
  background-color: var(--espartyox-black, #001A3D);
  box-shadow: none;
}
.product-three:hover .product-three__inner::after {
  visibility: visible;
  opacity: 1;
  top: -205px;
}
.product-three:hover .product-three__title {
  color: var(--espartyox-white, #fff);
}
.product-three:hover .product-three__btn {
  visibility: visible;
  opacity: 1;
}
.product-three:hover .product-three__thumb {
  background-color: var(--espartyox-white, #fff);
}
.product-three:hover .product-three__thumb img {
  animation: iconTranslateX 0.4s forwards;
}
.product-three:hover .product-three__box::after {
  border-color: var(--espartyox-base, #212ED0);
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
}
.product-details__product {
  display: flex;
  gap: 30px 22px;
}
@media (max-width: 991px) {
  .product-details__product {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-details__thumb-box {
  width: 120px;
}
@media (max-width: 991px) {
  .product-details__thumb-box {
    width: 100%;
  }
}
.product-details__carousel-box {
  margin-bottom: 5px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
}
@media (max-width: 991px) {
  .product-details__carousel-box {
    width: 100%;
    margin: 0;
  }
}
.product-details__thumb {
  --slick-gutter: 13px;
  width: 126px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .product-details__thumb {
    width: 100%;
  }
}
.product-details__thumb .slick-list {
  clip-path: inset(0 calc(var(--slick-gutter) / 2) 0 calc(var(--slick-gutter) / 2));
  margin: 0;
  padding: 0;
}
.product-details__thumb .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-details__thumb .slick-slide {
    margin-left: calc(var(--slick-gutter) / 2);
    margin-right: calc(var(--slick-gutter) / 2);
  }
}
@media (min-width: 992px) {
  .product-details__thumb .slick-slide {
    margin-top: calc(var(--slick-gutter) / 2);
    margin-bottom: calc(var(--slick-gutter) / 2);
  }
}
.product-details__thumb__item {
  position: relative;
  cursor: pointer;
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  z-index: 2;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 991px) {
  .product-details__thumb__item {
    width: 114px;
    height: 114px;
  }
}
@media (max-width: 991px) {
  .product-details__thumb__item {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 767px) {
  .product-details__thumb__item {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 575px) {
  .product-details__thumb__item {
    width: 95px;
    height: 95px;
  }
}
@media (max-width: 480px) {
  .product-details__thumb__item {
    width: 83px;
    height: 83px;
  }
}
@media (max-width: 430px) {
  .product-details__thumb__item {
    width: 105px;
    height: 105px;
  }
}
@media (max-width: 390px) {
  .product-details__thumb__item {
    width: 95px;
    height: 95px;
  }
}
@media (max-width: 360px) {
  .product-details__thumb__item {
    width: 83px;
    height: 83px;
  }
}
.product-details__thumb__item img {
  position: relative;
  cursor: pointer;
  max-width: 100%;
  height: auto;
  z-index: 1;
}
.product-details__thumb__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-70%);
  background-color: RGBA(var(--espartyox-black-rgb, 0, 26, 61), 0.6);
  transition: all 500ms ease;
  z-index: 1;
}
.product-details__thumb__hover .img-popup {
  display: inline-block;
  font-size: 27px;
  color: var(--espartyox-white, #fff);
}
.product-details__thumb__hover .img-popup:hover {
  color: var(--espartyox-base, #212ED0);
}
.product-details__thumb .slick-slide.slick-current .product-details__thumb__hover {
  opacity: 1;
  transform: translateY(0%);
}
.product-details__carousel {
  --slick-gutter: 10px;
}
@media (max-width: 991px) {
  .product-details__carousel {
    width: 100%;
  }
}
.product-details__carousel .slick-list {
  clip-path: inset(0 calc(var(--slick-gutter) / 2) 0 calc(var(--slick-gutter) / 2));
  margin: 0;
  padding: 0;
}
.product-details__carousel .slick-slide {
  margin-top: calc(var(--slick-gutter) / 2);
  margin-bottom: calc(var(--slick-gutter) / 2);
}
.product-details__image {
  height: 491px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-details__image {
    height: 100%;
    padding: 20px 20px 43px;
  }
}
.product-details__image__title {
  display: inline-block;
  padding: 7px 14px;
  font-size: 16px;
  color: var(--espartyox-white, #fff);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
  border-radius: 5px;
  background-color: var(--espartyox-base, #212ED0);
  position: absolute;
  top: 20px;
  left: 20px;
}
.product-details__image img {
  max-width: 100%;
  object-fit: cover;
}
.product-details__content {
  margin-right: 65px;
}
@media (max-width: 991px) {
  .product-details__content {
    margin-right: 0;
  }
}
.product-details__title {
  margin: 0 0 16px;
  font-size: 25px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}
.product-details__price-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
}
@media (max-width: 575px) {
  .product-details__price-inner {
    flex-direction: column;
    justify-content: start;
    gap: 5px;
    align-items: start;
  }
}
.product-details__price__regular {
  color: var(--espartyox-base, #212ED0);
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}
.product-details__color-inner {
  margin-bottom: 30px;
}
.product-details__review {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--espartyox-base, #212ED0);
  display: flex;
  align-items: center;
}
.product-details__review a {
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
}
.product-details__excerpt {
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-details__color__title {
  color: #788284;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  margin-bottom: 8px;
}
.product-details__color {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 35px;
}
.product-details__color button {
  width: 22px;
  height: 22px;
  border-radius: 1px;
  background-color: transparent;
  transition: all 500ms ease;
}
.product-details__color button:nth-child(1) {
  background-color: #151212;
  border: 2px solid rgba(205, 168, 141, 0.72);
}
.product-details__color button:nth-child(2) {
  background-color: #EE2761;
  border: 2px solid rgba(143, 142, 142, 0.7215686275);
}
.product-details__color button:nth-child(3) {
  background-color: #9033E6;
  border: 2px solid rgba(231, 173, 190, 0.72);
}
.product-details__color button:nth-child(4) {
  background-color: #33B387;
  border: 2px solid rgba(231, 173, 190, 0.72);
}
.product-details__color button:nth-child(5) {
  background-color: #FF9601;
  border: 2px solid rgba(231, 173, 190, 0.72);
}
.product-details__buttons {
  margin-bottom: 30px;
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details__socials__title {
  color: var(--espartyox-gray, #DDDDDD);
  font-family: var(--espartyox-font, "Inter", sans-serif);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  margin-right: 12px;
}
.product-details__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background-color: var(--espartyox-gray, #DDDDDD);
  color: var(--espartyox-black, #001A3D);
}
.product-details__socials a:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.product-details__description {
  margin-top: 50px;
  padding-top: 45px;
  border-top: 1px solid var(--espartyox-gray, #DDDDDD);
}
.product-details__description__title {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.product-details__description__text {
  margin: 0;
}
.product-details__description__text + .product-details__description__lists {
  margin-top: 24px;
}
.product-details__description__lists {
  max-width: 780px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px 50px;
  margin: 0;
}
@media (min-width: 576px) {
  .product-details__description__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-details__description__lists li {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 8px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
}
.product-details__description__lists li i {
  transition: all 0.4s ease-in-out;
  margin-top: 5px;
  font-size: 18px;
  color: var(--espartyox-black, #001A3D);
}
.product-details__description__lists li:hover i {
  color: var(--espartyox-base, #212ED0);
}
.product-details__description__lists + .product-details__description__text {
  margin-top: 24px;
}
.product-details__comment {
  border-top: 1px solid var(--espartyox-gray, #DDDDDD);
  margin: 30px 0 0;
  padding: 30px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .product-details__comment {
    margin: 44px 0 0;
    padding: 43px 0 0;
  }
}
.product-details__review-title {
  margin-bottom: 35px;
  font-size: 22px;
  font-weight: 700;
}
.product-details__comment-box {
  position: relative;
  padding: 11px 0 52px 200px;
  margin-bottom: 45px;
  min-height: 166px;
}
@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.product-details__comment-box__thumb {
  width: 168px;
  height: 168px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  margin: 0;
  border: none;
}
@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0 0 20px;
  }
}
.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.product-details__comment-box__meta {
  margin: 0 0 20px;
  color: var(--espartyox-black, #001A3D);
  font-size: 22px;
  font-weight: 700;
  line-height: 108.333%;
}
.product-details__comment-box__date {
  margin-left: 20px;
  display: inline-block;
  text-transform: inherit;
  letter-spacing: 0;
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.product-details__comment-box__date::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 20px;
  height: 1px;
  background-color: var(--espartyox-base, #212ED0);
}
.product-details__comment-box__text {
  margin: 0;
}
.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 16px;
  color: var(--espartyox-base, #212ED0);
}
@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}
.product-details__form {
  position: relative;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  margin-bottom: 18px;
  color: var(--espartyox-black, #001A3D);
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 25px;
  color: var(--espartyox-base, #212ED0);
  margin: 0 0 40px;
}
.product-details__form-ratings i {
  color: var(--espartyox-base, #212ED0);
  /*font-size: 400;*/
}
.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--espartyox-text, #737373);
  margin: 0 17px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.product-details__form__form {
  margin-top: 0;
}
.product-details__form__form .form-one__control input,
.product-details__form__form .form-one__control textarea {
  background: var(--espartyox-gray, #DDDDDD);
  border-color: transparent;
  color: var(--espartyox-text, #737373);
  font-weight: 500;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
.product-details__form__form .form-one__control input::placeholder,
.product-details__form__form .form-one__control textarea::placeholder {
  color: var(--espartyox-text, #737373);
  font-weight: 500;
  font-size: 16px;
}

.quantity-box {
  position: relative;
  width: auto;
  height: 46px;
  display: flex;
  margin-bottom: 30px;
}
.quantity-box input {
  width: 70px;
  height: 46px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  color: var(--espartyox-black, #001A3D);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  background-color: transparent;
}
.quantity-box button {
  width: 60px;
  height: auto;
  color: var(--espartyox-text, #737373);
  font-size: 13px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.quantity-box button:hover, .quantity-box button:focus, .quantity-box button:active {
  background: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-gray, #DDDDDD);
}
.quantity-box button.sub {
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  bottom: 1px;
  top: auto;
  border-radius: 0;
}
.quantity-box button.add {
  border-radius: 0;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
}
.quantity-box button.add::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.quantity-box button:hover {
  color: var(--espartyox-white, #fff);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  background-color: var(--espartyox-white, #fff);
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr {
  border-bottom: 1px solid var(--espartyox-border-color, #d9d9d9);
}
.cart-page__table thead tr th {
  padding: 0 30px 20px;
  font-size: 25px;
  color: var(--espartyox-black, #001A3D);
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border: 0 !important;
  box-shadow: none;
}
@media (max-width: 767px) {
  .cart-page__table thead tr th {
    font-size: 20px;
  }
}
.cart-page__table thead tr th:first-child {
  padding-left: 0;
}
.cart-page__table thead tr th:last-child {
  padding-right: 0;
  text-align: right;
}
.cart-page__table tbody tr td {
  font-size: 19px;
  font-weight: 500;
  color: var(--espartyox-black, #001A3D);
  text-transform: capitalize;
  line-height: normal;
  vertical-align: middle;
  border-top: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 0 !important;
  border-right: 1px solid var(--espartyox-border-color, #d9d9d9);
  border-bottom: 1px solid var(--espartyox-border-color, #d9d9d9);
  padding: 28.5px 30px;
  letter-spacing: 0;
}
.cart-page__table tbody tr td.cart-page__table__total {
  text-align: center;
}
.cart-page__table tbody tr td .cart-page__table__remove {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espartyox-black, #001A3D);
  font-size: 19px;
  line-height: 1;
}
.cart-page__table tbody tr td .cart-page__table__remove:hover {
  color: var(--espartyox-base, #212ED0);
}
.cart-page__table tbody tr td:first-child {
  padding-left: 0px;
}
.cart-page__table tbody tr td:last-child {
  padding-right: 0px;
  border-right: 0px;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cart-page__table__meta__img {
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--espartyox-border-color, #d9d9d9);
}
.cart-page__table__meta__img img {
  max-width: 100%;
  height: auto;
}
.cart-page__table__meta__title {
  margin: 0;
  font-size: 25px;
  color: var(--espartyox-black, #001A3D);
  font-weight: 600;
  line-height: 1.318;
}
@media (max-width: 767px) {
  .cart-page__table__meta__title {
    font-size: 20px;
  }
}
.cart-page__table__meta__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cart-page__table__meta__title a:hover {
  color: var(--espartyox-base, #212ED0);
}
.cart-page__table__meta__title a:hover {
  background-size: 100% 1px;
}
.cart-page__table__quantity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  /* Chrome, Safari, Edge */
  /* Firefox */
}
.cart-page__table__quantity__title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.cart-page__table__quantity .quantity-box {
  position: relative;
  width: 172px;
  height: 41px;
  border-radius: 50px;
  border: 1px solid var(--espartyox-border-color, #d9d9d9);
}
.cart-page__table__quantity .quantity-box__input {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-color: transparent;
  width: 50px;
  height: 100%;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  padding: 0;
  outline: none;
  font-size: 19px;
  font-weight: 500;
  color: var(--espartyox-black, #001A3D);
  line-height: 1;
  background-color: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  transition: all 500ms ease;
}
.cart-page__table__quantity input::-webkit-outer-spin-button,
.cart-page__table__quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-page__table__quantity input[type=number] {
  -moz-appearance: textfield;
}
.cart-page__table__quantity .quantity-box__btn {
  border: none;
  outline: none;
  background-color: var(--espartyox-white, #fff);
  padding: 0;
  display: inline-flex;
  font-size: 8px;
  color: var(--espartyox-black, #001A3D);
  transition: all 500ms ease;
}
.cart-page__table__quantity .quantity-box__btn.add {
  width: 16px;
  background-color: #F5F2EF;
  height: 12px;
  position: absolute;
  top: 8px;
  right: 21px;
  z-index: 1;
}
.cart-page__table__quantity .quantity-box__btn.add::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--espartyox-black, #001A3D);
  position: absolute;
  top: 3px;
  left: 6px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.cart-page__table__quantity .quantity-box__btn.sub {
  width: 16px;
  background-color: #F5F2EF;
  height: 12px;
  position: absolute;
  right: 21px;
  bottom: 8px;
  z-index: 1;
}
.cart-page__table__quantity .quantity-box__btn.sub::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--espartyox-black, #001A3D);
  position: absolute;
  bottom: 3px;
  left: 6px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.cart-page__table__quantity .quantity-box__btn:hover {
  color: var(--espartyox-base, #212ED0);
}
.cart-page__bottom {
  margin-top: 8px;
}
.cart-page__coupone__form {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .cart-page__coupone__form {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.cart-page__coupone__form input[type=text] {
  display: block;
  width: 270px;
  height: 50px;
  border: none;
  background-color: #F5F2EF;
  padding-left: 19px;
  padding-right: 19px;
  outline: none;
  border-radius: 0px;
  transition: all 500ms ease;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}
.cart-page__coupone__form input[type=text]:focus {
  color: var(--espartyox-black, #001A3D);
}
@media (max-width: 991px) {
  .cart-page__coupone__form input[type=text] {
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone__form input[type=text] {
    width: 100%;
  }
}
.cart-page__coupone .cart-page__btn {
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 6px;
  font-size: 15px;
}
.cart-page__coupone .cart-page__btn:hover {
  color: var(--espartyox-white, #fff);
}
.cart-page__cart-total {
  max-width: 260px;
  position: relative;
  margin: 0px 0px 30px auto;
}
@media (max-width: 991px) {
  .cart-page__cart-total {
    margin: 0px 0px 30px;
  }
}
.cart-page__cart-total li + li {
  margin-top: 17px;
}
.cart-page__cart-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.cart-page__cart-total li span {
  text-transform: uppercase;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: block;
}
.cart-page__cart-total li .cart-page__cart-total__title {
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.318;
  text-transform: capitalize;
  display: block;
  color: var(--espartyox-black, #001A3D);
}
.cart-page__button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 54px;
}
@media (max-width: 991px) {
  .cart-page__button {
    gap: 25px;
    justify-content: flex-start;
  }
}
.cart-page__button .espartyox-btn {
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 6px;
  font-size: 16px;
}
.cart-page__button .espartyox-btn::after {
  display: none;
}
.cart-page__button .espartyox-btn:hover {
  color: var(--espartyox-white, #fff);
}
.cart-page__button .espartyox-btn:first-child {
  background-color: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
}
.cart-page__button .espartyox-btn:first-child::before {
  background-color: var(--espartyox-base, #212ED0);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  margin: 0 0 20px;
  color: var(--espartyox-black, #001A3D);
  font-size: 18px;
  font-weight: 700;
}
.checkout-page__shipping-address {
  position: relative;
}
@media (max-width: 991px) {
  .checkout-page__shipping-address {
    margin: 50px 0 0;
  }
}
.checkout-page__shipping-address__title {
  margin: 0 0 20px;
  color: var(--espartyox-black, #001A3D);
  font-size: 18px;
  font-weight: 900;
}
.checkout-page__coupon h3 {
  color: var(--espartyox-black, #001A3D);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle,
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel],
.checkout-page__input-box textarea {
  height: 50px;
  width: 100%;
  border: none;
  background-color: var(--espartyox-gray2, #F6F6F4);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  display: block;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::placeholder,
.checkout-page__input-box input[type=text]::placeholder,
.checkout-page__input-box input[type=email]::placeholder,
.checkout-page__input-box input[type=tel]::placeholder,
.checkout-page__input-box textarea::placeholder {
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
}
.checkout-page__input-box textarea {
  height: 200px;
  padding-top: 20px;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  border-radius: 0;
  position: relative;
  height: 50px;
  outline: none !important;
  border: 0;
  background-color: var(--espartyox-gray2, #F6F6F4) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 50px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "icomoon" !important;
  content: "\e923";
  font-weight: 700;
  font-size: 16px;
  color: var(--espartyox-black, #001A3D);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(var(--espartyox-gray-rgb, 221, 221, 221), 0.4);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  color: var(--espartyox-white, #fff);
  background: var(--espartyox-black, #001A3D);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-gray, #DDDDDD);
}
.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--espartyox-text, #737373);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--espartyox-white, #fff);
  font-family: "Font Awesome 5 Free" !important;
  content: "\f00c";
  font-size: 10px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: var(--espartyox-base, #212ED0);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  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;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__details {
  margin-top: 25px;
  margin-bottom: 60px;
}
.checkout-page__details__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-shadow: 0 0 0.1px currentColor;
  text-transform: capitalize;
}
.checkout-page__details__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__details__check-box label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: var(--espartyox-gray, #DDDDDD);
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
  text-transform: uppercase;
}
.checkout-page__details__check-box label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 1px solid var(--espartyox-border-color, #d9d9d9);
  border-radius: 50%;
  vertical-align: middle;
  cursor: pointer;
  transition: all 300ms ease;
}
.checkout-page__details__check-box label span::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: var(--espartyox-black, #001A3D);
  position: absolute;
  font-size: 12px;
  left: 4px;
  bottom: 2px;
  font-weight: 900;
  visibility: hidden;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.checkout-page__details__check-box input[type=checkbox]:checked + label span:before {
  color: var(--espartyox-base, #212ED0);
  visibility: visible;
  opacity: 1;
}
.checkout-page__check-wrapper {
  margin-top: 30px;
  margin-bottom: 50px;
}
.checkout-page__shipping__title {
  font-weight: 500;
  margin-bottom: 20px;
}
.checkout-page__your-order {
  position: relative;
}
.checkout-page__your-order__title {
  margin-bottom: 35px;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .checkout-page__your-order__title {
    font-size: 28px;
  }
}
.checkout-page__cost-process-title {
  margin-bottom: 20px;
  font-weight: 500;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  color: var(--espartyox-black, #001A3D);
  font-size: 16px;
  font-weight: 600;
  line-height: 235%;
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--espartyox-border-color, #d9d9d9);
  border-bottom: 1px solid var(--espartyox-border-color, #d9d9d9);
  text-transform: uppercase;
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  color: var(--espartyox-black, #001A3D);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  padding: 0 0 24px;
  text-transform: uppercase;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table .pro__price {
  color: var(--espartyox-gray, #DDDDDD);
  font-size: 18px;
  font-weight: 700;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--espartyox-border-color, #d9d9d9);
}
.checkout-page__order-table tbody tr:last-child td.pro__price {
  color: var(--espartyox-black, #001A3D);
  font-weight: 700;
}
.checkout-page__payment {
  background-color: var(--espartyox-gray, #DDDDDD);
  padding: 40px 45px 17px;
  min-height: 295px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  cursor: pointer;
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
  text-transform: uppercase;
}
.checkout-page__payment__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid var(--espartyox-base, #212ED0);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}
.checkout-page__payment__title img {
  margin-left: 15px;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  border-color: var(--espartyox-base, #212ED0);
  content: "\f111";
  color: var(--espartyox-base, #212ED0);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 35px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.checkout-page .checkout-page__payment__btn a {
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.checkout-page .checkout-page__payment__btn a::after {
  display: none;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
}
.login-page__left {
  position: relative;
  z-index: 1;
}
.login-page__thumb {
  position: relative;
  z-index: 1;
  margin-right: 100px;
}
@media (max-width: 425px) {
  .login-page__thumb {
    margin-right: 0;
  }
}
.login-page__thumb img {
  width: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}
.login-page__thumb-two {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 1;
}
@media (max-width: 425px) {
  .login-page__thumb-two {
    position: relative;
    bottom: auto;
    margin-top: 20px;
  }
}
.login-page__thumb-two img {
  border: 10px solid var(--espartyox-white, #fff);
  border-radius: 20px;
}
.login-page__login-box {
  position: relative;
  background: #F5F6FA;
  padding: 55px 105px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .login-page__login-box {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .login-page__login-box {
    padding: 30px 20px;
  }
}
.login-page__content {
  max-width: 557px;
  margin-left: auto;
  margin-right: auto;
}
.login-page__logo {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
}
.login-page__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
}
.login-page__input-box {
  position: relative;
}
.login-page__input-box .login-page__input-box__toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: var(--espartyox-border-color, #d9d9d9);
  transition: background-color ease 0.3s;
}
.login-page__input-box .login-page__input-box__toggle::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: #fff;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}
.login-page__input-box .login-page__input-box__toggle:checked {
  background-color: var(--espartyox-base, #212ED0);
}
.login-page__input-box .login-page__input-box__toggle:checked::before {
  left: 22px;
}
.login-page__input-box--bottom {
  padding-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-page__input-box__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-page__input-box__inner .remember-policy {
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  letter-spacing: 0.3px;
  color: var(--espartyox-text, #737373);
}
.login-page__input-box .remember-policy {
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 16px;
}
.login-page__input-box input[type=text],
.login-page__input-box input[type=password] {
  margin-top: -3px;
  height: 48px;
  width: 100%;
  background-color: var(--espartyox-white, #fff);
  padding-left: 15px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--espartyox-text, #737373);
  display: block;
  font-weight: 500;
  border-radius: 6px;
  border: none;
}
.login-page__input-box input[type=text]::placeholder,
.login-page__input-box input[type=password]::placeholder {
  color: var(--espartyox-text, #737373);
  font-weight: 400;
  font-size: 16px;
  line-height: 133%;
  text-transform: none;
}
.login-page__input-box span {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(50%);
  z-index: 1;
  font-size: 16px;
  color: var(--espartyox-text, #737373);
  transition: all 400ms ease;
}
.login-page__input-box span:hover {
  color: var(--espartyox-base, #212ED0);
}
.login-page__input-box__btn button {
  width: 100%;
  display: block;
}
.login-page__input-box__btn .espartyox-btn {
  border-radius: 6px;
  display: flex;
  align-self: center;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 425px) {
  .login-page__input-box__btn .espartyox-btn {
    font-size: 14px;
  }
}
.login-page__input-box__btn .espartyox-btn::before {
  border-radius: 6px;
}
.login-page__input-box__btn + .login-page__input-box__btn {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--espartyox-border-color, #d9d9d9);
}
.login-page .login-page__input-box + .login-page__input-box {
  margin-top: 20px;
}
.login-page__form__forgot {
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  text-align: right;
  color: var(--espartyox-text, #737373);
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}
.login-page__form__forgot:hover {
  color: var(--espartyox-base, #212ED0);
}
.login-page__form__text {
  margin-top: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  letter-spacing: 0.3px;
  color: #1A1A1A;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
}
.login-page__form__text a {
  color: var(--espartyox-base, #212ED0);
  margin-left: 5px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__form__text a:hover {
  background-size: 100% 1px;
}

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

.gutter-x-60 {
  --bs-gutter-x: 60px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  position: relative;
  z-index: 1;
}
.error-404__name {
  font-size: 450px;
  font-weight: 700;
  line-height: 100%;
  color: var(--espartyox-base, #212ED0);
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .error-404__name {
    font-size: 300px;
  }
}
@media (max-width: 767px) {
  .error-404__name {
    font-size: 200px;
  }
}
@media (max-width: 500px) {
  .error-404__name {
    font-size: 150px;
  }
}
.error-404__title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .error-404__title {
    font-size: 30px;
  }
}
.error-404__text {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .error-404__text {
    font-size: 16px;
  }
}
.error-404 .espartyox-btn {
  padding: 20px 25px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page__top {
  margin-bottom: 43px;
}
.faq-page__top .sec-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
.faq-page__top__text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .faq-page__top__text {
    margin-left: 45px;
  }
}
.faq-page__thumb {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .faq-page__thumb {
    margin-bottom: 50px;
  }
}
.faq-page__thumb img {
  object-fit: cover;
  width: 100%;
}
.faq-page .faq-accordion {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-accordion {
  position: relative;
  counter-reset: section;
}
.faq-accordion .accrodion + .accrodion {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .faq-accordion .accrodion + .accrodion {
    margin-top: 29px;
  }
}
.faq-accordion .accrodion {
  position: relative;
  transition: all 500ms ease;
  border-radius: 8px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  z-index: 1;
  overflow: hidden;
}
.faq-accordion .accrodion .accrodion__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.faq-accordion .accrodion::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.75);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.faq-accordion .accrodion-title {
  padding: 34px 40px;
  padding-right: 70px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .faq-accordion .accrodion-title {
    padding: 20px;
    padding-right: 70px;
  }
}
.faq-accordion .accrodion-title h4 {
  flex: 1;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.44px;
}
@media (max-width: 575px) {
  .faq-accordion .accrodion-title h4 {
    font-size: 16px;
  }
}
.faq-accordion .accrodion-title h4::before {
  counter-increment: section;
  content: counter(section) ".";
}
.faq-accordion .accrodion-title__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  background-color: var(--espartyox-base, #212ED0);
  position: absolute;
  color: var(--espartyox-white, #fff);
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.faq-accordion .active {
  border-color: var(--espartyox-base, #212ED0);
}
.faq-accordion .active::after,
.faq-accordion .active .accrodion__bg {
  visibility: visible;
  opacity: 1;
}
.faq-accordion .active .accrodion-title h4 {
  /*color: var(--espartyox-white, #fff);*/
}
.faq-accordion .active .accrodion-title__icon {
  transform: translateY(-50%) rotate(90deg);
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-base, #212ED0);
}
.faq-accordion .accrodion-content .inner {
  margin-top: -10px;
  padding: 0px 100px 27px 40px;
}
@media (max-width: 767px) {
  .faq-accordion .accrodion-content .inner {
    padding: 0px 20px 35px;
  }
}
.faq-accordion .accrodion-content p {
  margin-bottom: 5px;
  /*color: var(--espartyox-white, #fff);*/
  letter-spacing: 0.32px;
}

.faq-one__content .sec-title {
  padding-bottom: 18px;
}
.faq-one__text {
  margin-bottom: 30px;
}
.faq-one__thumb {
  margin-bottom: 30px;
}
.faq-one__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
}
.faq-one .accrodion-title {
  padding: 24px 20px;
  padding-right: 70px;
}
.faq-one .faq-accordion .accrodion-title h4 {
  font-size: 20px;
  letter-spacing: 0.4px;
}
.faq-one .faq-accordion .accrodion {
  border-radius: 8px;
  border: 1px solid #DDD;
  background-color: #F5F6FA;
}
.faq-one--one .faq-accordion .accrodion-content .inner {
  padding-left: 20px;
  padding-right: 65px;
  padding-bottom: 32px;
}
.faq-one--one .faq-accordion .accrodion-content p {
  font-size: 14px;
  padding-top: 9px;
  line-height: 24px;
}

.faq-two .accrodion {
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background-color: #F5F6FA;
  border-radius: 0;
}
.faq-two .accrodion-title__icon {
  width: 32px;
  height: 32px;
  font-size: 18px;
}
.faq-two .accrodion-title {
  padding: 38.5px 30px;
  padding-right: 80px;
}
.faq-two .accrodion-content .inner {
  padding-left: 30px;
  padding-right: 40px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .faq-two .accrodion-content .inner {
    padding-right: 131px;
  }
}
.faq-two .accrodion-title h4 {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  letter-spacing: 0.44px;
}
.faq-two .inner p {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: 0;
  margin-top: 0px;
  line-height: 26px;
}
.faq-two .faq-accordion .accrodion::after {
  background-color: var(--espartyox-base, #212ED0);
}
.faq-two .faq-accordion {
  max-width: 870px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.faq-two .faq-accordion .active .accrodion-title {
  padding-bottom: 30px;
}

.faq-three__content .sec-title-three {
  padding-bottom: 40px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .faq-three__content {
    margin-right: -30px;
  }
}
.faq-three__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 4px;
  box-shadow: 12px 36px 90px 1px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .faq-three .faq-accordion {
    padding-left: 50px;
  }
}
.faq-three .accrodion {
  border-radius: 4px;
  border: 1px solid rgba(221, 221, 221, 0.87);
  background: var(--espartyox-white, #fff);
}
.faq-three .accrodion .accrodion-title {
  padding: 30px 20px;
  padding-right: 70px;
}
.faq-three .accrodion .accrodion-title h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.4px;
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
}
.faq-three .accrodion::after {
  border-radius: 4px;
  opacity: 0.8;
  background-color: #fff;
}
.faq-three .accrodion .accrodion-title__icon {
  background-color: transparent;
  color: var(--espartyox-base, #212ED0);
  width: auto;
  height: auto;
  font-size: 34px;
}
.faq-three .accrodion .inner {
  padding-left: 20px;
  /*margin-top: -4px;*/
}
@media (min-width: 992px) {
  .faq-three .accrodion .inner {
    padding-right: 30px;
  }
}
.faq-three .accrodion .inner p {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.32px;
}
.faq-three .accrodion.active .accrodion-title__icon {
  /*color: var(--espartyox-white, #fff);*/
}
.faq-three .accrodion.active .accrodion-title {
  padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.price-one,
.price-page {
  position: relative;
  z-index: 1;
}
.price-one__top,
.price-page__top {
  margin-bottom: 70px;
}
.price-one__top__text,
.price-page__top__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.price-one__top__partners,
.price-page__top__partners {
  display: flex;
  align-items: center;
}
.price-one__top__partners__item,
.price-page__top__partners__item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--espartyox-white, #fff);
  position: relative;
  z-index: 1;
}
.price-one__top__partners__item img,
.price-page__top__partners__item img {
  width: 100%;
  object-fit: cover;
}
.price-one__top__partners__item a,
.price-page__top__partners__item a {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 26, 61, 0.75);
  color: var(--espartyox-white, #fff);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.price-one__top__partners__item:hover a,
.price-page__top__partners__item:hover a {
  visibility: visible;
  opacity: 1;
}
.price-one__top__partners__item + .price-one__top__partners__item,
.price-one__top__partners__item + .price-page__top__partners__item,
.price-page__top__partners__item + .price-one__top__partners__item,
.price-page__top__partners__item + .price-page__top__partners__item {
  margin-left: -12px;
}
.price-one .sec-title,
.price-page .sec-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
.price-one__bg,
.price-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  opacity: 0.4;
}

.price-one {
  background-color: #F5F6FA;
}
.price-one__top {
  margin-bottom: 50px;
}
.price-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  opacity: 1;
}

.price-card {
  background-color: var(--espartyox-white, #fff);
  box-shadow: 4px 8px 40px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.price-card__populer {
  color: var(--espartyox-white, #fff);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.28px;
  padding: 5px 19px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background-color: var(--espartyox-base, #212ED0);
  position: absolute;
  left: 50%;
  margin-top: -13px;
  transform: translateX(-50%);
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.price-card__top {
  padding: 30px 10px 20px;
  text-align: center;
}
.price-card__categorie {
  color: var(--espartyox-text, #737373);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.4px;
  margin-bottom: 19px;
  transition: all 0.5s ease-in-out;
}
.price-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.9);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.price-card__price {
  color: var(--espartyox-base, #212ED0);
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.9px;
  transition: all 0.5s ease-in-out;
}
.price-card__price span {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.28px;
}
.price-card__list {
  margin-bottom: 0;
}
.price-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.32px;
  padding: 20px 20px 18px;
  transition: all 0.5s ease-in-out;
}
.price-card__list li:first-child {
  border-top: 1px solid var(--espartyox-gray, #DDDDDD);
}
.price-card__list li + li {
  border-top: 1px solid var(--espartyox-gray, #DDDDDD);
}
.price-card__list__icon {
  color: var(--espartyox-base, #212ED0);
  font-size: 17px;
  transition: all 0.5s ease-in-out;
}
.price-card__btn {
  padding: 20px 20px 30px;
}
.price-card__btn a {
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.32px;
  background-color: var(--espartyox-white, #fff);
  width: 100%;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--espartyox-base, #212ED0);
}
.price-card__btn a::after {
  background-color: var(--espartyox-black, #001A3D);
}
.price-card__btn a:hover {
  border-color: var(--espartyox-black, #001A3D);
  color: var(--espartyox-white, #fff);
}
.price-card:hover {
  box-shadow: 4px 8px 40px 2px rgba(0, 0, 0, 0.1);
}
.price-card:hover::after,
.price-card:hover .price-card__bg {
  visibility: visible;
  opacity: 1;
}
.price-card:hover .price-card__categorie,
.price-card:hover .price-card__price,
.price-card:hover .price-card__list__item,
.price-card:hover .price-card__list__icon {
  color: var(--espartyox-white, #fff);
}
.price-card:hover .price-card__list__item:first-child,
.price-card:hover .price-card__list__item + .price-card__list__item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.price-card:hover .price-card__populer {
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-base, #212ED0);
}

.price-two {
  position: relative;
  z-index: 1;
}
.price-two__top {
  margin-bottom: 50px;
}
.price-two .sec-title-two {
  padding-bottom: 0;
  margin-bottom: 0;
}
.price-two__right {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767px) {
  .price-two__right {
    justify-content: start;
  }
}
.price-two .price-two__tab {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 0;
  background-color: var(--espartyox-white, #fff);
  box-shadow: 4px 12px 60px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.price-two .price-two__tab__item {
  color: var(--espartyox-text, #737373);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.32px;
  padding: 10px 20px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.price-two .price-two__tab__item.active-btn, .price-two .price-two__tab__item:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}

.price-card-two {
  position: relative;
  z-index: 1;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background: var(--espartyox-white, #fff);
  margin-top: 71px;
  transition: all 0.5s ease-in-out;
}
.price-card-two__top {
  margin-top: -71px;
  max-width: 182px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background: var(--espartyox-white, #fff);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
  transition: all 0.5s ease-in-out;
}
.price-card-two::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--espartyox-base, #212ED0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.price-card-two__categorie {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: 9px;
  color: var(--espartyox-text, #737373);
  transition: all 0.5s ease-in-out;
}
.price-card-two__price {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  color: var(--espartyox-base, #212ED0);
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.9px;
  transition: all 0.5s ease-in-out;
}
.price-card-two .month {
  margin-top: 10px;
  color: var(--espartyox-text, #737373);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32px;
  display: block;
  line-height: 100%;
  transition: all 0.5s ease-in-out;
}
.price-card-two__content {
  padding: 0px 30px 40px;
}
.price-card-two__list {
  margin-bottom: 40px;
}
.price-card-two__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--espartyox-text, #737373);
  transition: all 0.5s ease-in-out;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.36px;
}
.price-card-two__list li + li {
  margin-top: 28px;
}
.price-card-two__list__icon {
  color: var(--espartyox-base, #212ED0);
  font-size: 19px;
  transition: all 0.5s ease-in-out;
}
.price-card-two:hover {
  box-shadow: 4px 40px 70px 2px rgba(0, 0, 0, 0.1);
}
.price-card-two:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.price-card-two:hover .price-card-two__categorie,
.price-card-two:hover .price-card-two__price,
.price-card-two:hover .month,
.price-card-two:hover .price-card-two__list__item,
.price-card-two:hover .price-card-two__list__icon {
  color: var(--espartyox-white, #fff);
}
.price-card-two:hover .price-card-two__top {
  background-color: var(--espartyox-base, #212ED0);
}
.price-card-two:hover .espartyox-btn-two {
  color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-white, #fff);
}
.price-card-two .espartyox-btn-two {
  display: flex;
  width: 100%;
  justify-content: center;
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.32px;
  background-color: transparent;
  border: 1px solid var(--espartyox-base, #212ED0);
}
.price-card-two .espartyox-btn-two::after {
  background-color: var(--espartyox-white, #fff);
  transform: rotate(0deg);
  left: 0;
  top: 0;
}
.price-card-two .espartyox-btn-two:hover {
  border-color: var(--espartyox-white, #fff);
  color: var(--espartyox-base, #212ED0);
}
.price-card-two .espartyox-btn-two:hover::after {
  width: 110%;
  height: 100%;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes translateLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scaleUpToscaleDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.7, 1.1);
  }
  50% {
    transform: scale(1.1, 0.7);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes bellshake {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  85% {
    transform: rotate(-2deg);
  }
  92% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes textScrolling {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes left {
  0% {
    transform: translateX(0px);
  }
  70% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes right {
  0% {
    transform: translateX(0px);
  }
  70% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes bottom {
  0% {
    transform: translateY(0px);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--espartyox-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--espartyox-white, #fff);
}

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

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--espartyox-black, #001A3D);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--espartyox-primary, #000);
  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;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

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

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--espartyox-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--espartyox-base, #212ED0);
}

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

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--espartyox-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li a .icon-down-arrow {
  display: none;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--espartyox-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--espartyox-white, #fff);
  font-size: 12px;
  font-family: var(--espartyox-font, "Inter", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--espartyox-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--espartyox-base, #212ED0);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--espartyox-base, #212ED0);
  border: none;
  outline: none;
  color: var(--espartyox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-black, #001A3D);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--espartyox-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--espartyox-base, #212ED0);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--espartyox-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--espartyox-base, #212ED0);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--espartyox-base, #212ED0);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--espartyox-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--espartyox-white, #fff);
  font-size: 16px;
  color: var(--espartyox-text, #737373);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .espartyox-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--espartyox-black, #001A3D);
  position: relative;
}
@media (min-width: 992px) {
  .page-header {
    /*min-height: 414px;*/
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.page-header__content {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-left: 0px;
  padding-bottom: 50px;
}
/*@media (min-width: 992px) {*/
/*  .page-header__content {*/
/*    padding-top: 205px;*/
/*    padding-left: 20px;*/
/*    padding-bottom: 0px;*/
/*  }*/
/*}*/
.page-header .page-header__line {
  width: 2px;
  height: 100px;
  position: absolute;
  background-color: var(--espartyox-white, #fff);
  top: 107px;
  left: 0;
}
@media (min-width: 992px) {
  .page-header .page-header__line {
    top: 197px;
  }
}
@media (max-width: 767px) {
  .page-header .page-header__line {
    display: none;
  }
}
.page-header .page-header__line::before, .page-header .page-header__line::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: -3px;
  background-color: var(--espartyox-white, #fff);
  transform: rotate(45deg);
}
.page-header .page-header__line::after {
  top: auto;
  bottom: 0;
}
.page-header__title {
  margin: 0 0 15px;
  color: var(--espartyox-white, #fff);
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.96px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 35px;
  }
}

.espartyox-breadcrumb {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  width: fit-content;
}
.espartyox-breadcrumb li {
  color: var(--espartyox-white, #fff);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.36px;
  display: flex;
  text-transform: capitalize;
  align-items: center;
}
.espartyox-breadcrumb li:not(:last-of-type)::after {
  content: "\e921";
  position: relative;
  top: 0;
  font-family: "icomoon" !important;
  margin-left: 7px;
  margin-right: 7px;
}
.espartyox-breadcrumb li span {
  color: inherit;
  display: inline-flex;
}
.espartyox-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.espartyox-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.espartyox-breadcrumb li a:hover {
  color: var(--espartyox-primary, #000);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--espartyox-gray, #DDDDDD);
  margin-top: 120px;
}

.contact-map {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .contact-map {
    padding-bottom: 80px;
  }
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.brand-carousel__item {
  position: relative;
  z-index: 1;
}
.brand-carousel__item:hover .brand-carousel__image {
  visibility: hidden;
  opacity: 0;
}
.brand-carousel__item:hover .brand-carousel__hover-image {
  opacity: 1;
  visibility: visible;
}
.brand-carousel__image {
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.brand-carousel__hover-image {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.brand-carousel__top {
  position: relative;
  margin-bottom: 56px;
  text-align: center;
}
.brand-carousel__top__text {
  margin-bottom: 0;
  color: var(--espartyox-base, #212ED0);
  font-size: 16px;
  font-weight: 700;
}
.brand-carousel__top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #EBEBEB;
  z-index: -2;
}
.brand-carousel__top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 215px;
  background-color: var(--espartyox-white, #fff);
  z-index: -1;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  z-index: 1;
}
.main-slider-one__item {
  position: relative;
  z-index: 3;
  padding-top: 145px;
  padding-bottom: 56px;
  background-color: var(--espartyox-black3, #000);
}
@media (max-width: 991px) {
  .main-slider-one__item {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__item {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .main-slider-one__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
  transition: transform 1500ms ease, opacity 1500ms ease;
  opacity: 0;
  transform: scale(1.5);
}
.main-slider-one__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}
@media (max-width: 991px) {
  .main-slider-one__shape {
    display: none;
  }
}
.main-slider-one__shape span {
  position: absolute;
  z-index: 2;
  width: 230px;
  height: 220px;
  display: block;
  filter: drop-shadow(4px 8px 36px rgba(0, 0, 0, 0.1));
  background: linear-gradient(250deg, #222DBE 10.48%, #020A6E 94.44%);
}
.main-slider-one__shape span:nth-child(1) {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.main-slider-one__shape span:nth-child(2) {
  right: 0;
  top: 0;
  clip-path: polygon(100% 100%, 0 0, 100% 0);
}
.main-slider-one__shape span:nth-child(3) {
  left: 0;
  bottom: 0;
  clip-path: polygon(100% 100%, 0% 100%, 0 0);
}
.main-slider-one__shape span:nth-child(4) {
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
}
.main-slider-one__title {
  color: var(--espartyox-white, #fff);
  font-size: 64px;
  font-weight: 600;
  line-height: 132.813%;
  letter-spacing: 3.2px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .main-slider-one__title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
.main-slider-one__title-box, .main-slider-one__title__highlight {
  font-weight: 200;
}
.main-slider-one__title span {
  display: inline-block;
  transform-style: preserve-3d;
  transform-origin: bottom;
  transform: scale(1, 0);
}
.main-slider-one__content {
  position: relative;
  z-index: 2;
  margin-top: 76px;
}
@media (max-width: 991px) {
  .main-slider-one__content {
    margin-top: 0;
  }
}
.main-slider-one__title-box {
  background: linear-gradient(250deg, #222DBE 10.48%, #020A6E 94.44%);
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  border-radius: 100px;
  margin-left: -15px;
}
@media (max-width: 575px) {
  .main-slider-one__title-box {
    padding: 10px;
  }
}
.main-slider-one__description {
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .main-slider-one__description {
    margin-bottom: 30px;
  }
}
@keyframes splitText {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
.main-slider-one__text {
  letter-spacing: 0.32px;
  opacity: 0;
  transform: translateY(150%);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
@media (min-width: 992px) {
  .main-slider-one__text {
    max-width: 425px;
    width: 100%;
  }
}
.main-slider-one__thumb {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  display: none;
}
@media (min-width: 992px) {
  .main-slider-one__thumb {
    display: block;
    margin-left: -16px;
  }
}
.main-slider-one__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 450px) {
  .main-slider-one__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.main-slider-one__btn__inner {
  opacity: 0;
  transform: translateY(150%);
}
.main-slider-one__btn__inner:first-child .espartyox-btn {
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-black, #001A3D);
}
.main-slider-one__btn__inner:first-child .espartyox-btn::after {
  background-color: var(--espartyox-base, #212ED0);
}
.main-slider-one__btn__inner:first-child .espartyox-btn:hover {
  color: var(--espartyox-white, #fff);
}
.main-slider-one__btn__inner:last-child .espartyox-btn {
  border: 1px solid var(--espartyox-white, #fff);
  background-color: transparent;
}
.main-slider-one__btn__inner:last-child .espartyox-btn::after {
  background-color: var(--espartyox-white, #fff);
}
.main-slider-one__btn__inner:last-child .espartyox-btn:hover {
  color: var(--espartyox-black, #001A3D);
}
.main-slider-one .main-slider-one__social {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: absolute;
  top: calc(50% - 50px);
  left: 50px;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1366px) {
  .main-slider-one .main-slider-one__social {
    display: none;
  }
}
.main-slider-one .main-slider-one__social a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-black, #001A3D);
}
.main-slider-one__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 23px;
  margin-top: 50px;
  position: absolute;
  top: calc(50% - 50px);
  right: 50px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots {
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    flex-direction: row;
  }
}
.main-slider-one__carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background-color: rgba(var(--espartyox-white-rgb, 255, 255, 255), 0.4);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.main-slider-one__carousel .owl-dots .owl-dot span {
  display: none;
}
.main-slider-one__carousel .owl-dots .owl-dot:hover, .main-slider-one__carousel .owl-dots .owl-dot.active {
  background-color: var(--espartyox-white, #fff);
}
.main-slider-one__carousel .owl-dots.disabled {
  display: none;
}
.main-slider-one .active .main-slider-one__bg {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1000ms;
}
.main-slider-one .active .main-slider-one__text,
.main-slider-one .active .main-slider-one__btn__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-one .active .main-slider-one__title span {
  animation: splitText 300ms ease forwards;
}
.main-slider-one .active .main-slider-one__thumb {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-duration: 2000ms;
}
.main-slider-one .active .main-slider-one__thumb img {
  animation: translateLeft 3s ease-in-out infinite;
}

.text-slider {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.text-slider__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.text-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.9);
}
.text-slider__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 55px;
  animation: textScrolling 25s linear infinite;
  animation-direction: reverse;
  will-change: transform;
  position: relative;
  white-space: nowrap;
}
.text-slider__inner:hover {
  animation-play-state: paused;
}
.text-slider__item {
  color: var(--espartyox-white, #fff);
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}
.text-slider__item img {
  object-fit: cover;
  margin-right: 10px;
}

.main-slider-two {
  position: relative;
  z-index: 1;
}
.main-slider-two__item {
  position: relative;
  z-index: 1;
  padding-top: 134px;
  height: 100%;
  background-color: var(--espartyox-black3, #000);
  overflow: hidden;
}
@media (max-width: 991px) {
  .main-slider-two__item {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__item {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__item {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: scale(1.7);
  opacity: 0;
}
.main-slider-two__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 22, 35, 0.8);
  z-index: -1;
}
.main-slider-two .main-slider-two__social {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1366px) {
  .main-slider-two .main-slider-two__social {
    display: none;
  }
}
.main-slider-two .main-slider-two__social a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-black, #001A3D);
  transition: all 300ms ease-in-out;
}
.main-slider-two .main-slider-two__social a:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-black, #001A3D);
}
.main-slider-two__content {
  padding-top: 65px;
}
@media (min-width: 992px) {
  .main-slider-two__content {
    margin-right: -30px;
  }
}
.main-slider-two__subtitle {
  color: var(--espartyox-base, #212ED0);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  padding: 10px 10px;
  background-color: #F5F6FA;
  box-shadow: 12px 36px 80px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-150px);
  transition: transform 1500ms ease, opacity 1500ms ease;
}
.main-slider-two__title {
  color: #F5F6FA;
  text-shadow: 12px 48px 90px rgba(0, 0, 0, 0.1);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 68px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
}
.main-slider-two__title__highlight {
  color: var(--espartyox-base, #212ED0);
}
.main-slider-two__title span {
  display: inline-block;
  opacity: 0;
  transform: translate(-150px, 0) scale(0.3);
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .main-slider-two__title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-slider-two__title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
@keyframes leftRightText {
  40% {
    transform: translate(50px, 0) scale(0.7);
    opacity: 1;
    color: #F5F6FA;
  }
  60% {
    color: var(--espartyox-base, #212ED0);
  }
  80% {
    transform: translate(0) scale(2);
    opacity: 0;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
}
.main-slider-two__text {
  opacity: 0;
  transform: translateY(150%);
  transition: transform 1500ms ease, opacity 1500ms ease;
  color: #F5F6FA;
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .main-slider-two__text {
    max-width: 530px;
    width: 100%;
  }
}
.main-slider-two__top {
  overflow: hidden;
}
.main-slider-two__description {
  overflow: hidden;
}
.main-slider-two__btn {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
}
.main-slider-two__btn .main-slider-two__btn__inner {
  opacity: 0;
  transform: translateY(150%);
}
.main-slider-two__btn .main-slider-two__btn__inner:first-child .espartyox-btn-two {
  border: none;
}
.main-slider-two__btn .main-slider-two__btn__inner:last-child .video-popup {
  background-color: transparent;
  border: 0.5px solid #F5F6FA;
}
.main-slider-two__btn .main-slider-two__btn__inner:last-child .video-popup::after {
  background-color: var(--espartyox-base, #212ED0);
}
.main-slider-two__btn .main-slider-two__btn__inner:last-child .video-popup:hover {
  border-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.main-slider-two__thumb {
  opacity: 0;
  transform: translateX(150%) scale(0.5);
  transition: transform 1500ms ease, opacity 500ms ease, scale 1500ms ease;
  display: none;
}
@media (min-width: 992px) {
  .main-slider-two__thumb {
    display: block;
    margin-left: -12px;
  }
}
.main-slider-two__scroll {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  background-color: rgba(245, 246, 250, 0.1);
  backdrop-filter: blur(100px);
  padding: 28px 33px;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .main-slider-two__scroll {
    padding: 15px 20px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__scroll {
    display: none;
  }
}
.main-slider-two__scroll__text {
  color: #F5F6FA;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  display: block;
}
@media (max-width: 991px) {
  .main-slider-two__scroll__text {
    font-size: 18px;
  }
}
.main-slider-two__scroll__icon {
  line-height: 1;
  display: block;
  font-size: 40px;
  color: var(--espartyox-white, #fff);
  animation: bottom 2s ease-in-out infinite;
}
@media (max-width: 991px) {
  .main-slider-two__scroll__icon {
    font-size: 30px;
  }
}
.main-slider-two__scroll__icon i {
  display: block;
  transform: rotate(180deg);
}
.main-slider-two__scroll:hover {
  background-color: var(--espartyox-base, #212ED0);
}
.main-slider-two__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 23px;
  margin-top: 50px;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .main-slider-two__carousel .owl-dots {
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    flex-direction: row;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background-color: rgba(var(--espartyox-white-rgb, 255, 255, 255), 0.4);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.main-slider-two__carousel .owl-dots .owl-dot span {
  display: none;
}
.main-slider-two__carousel .owl-dots .owl-dot:hover, .main-slider-two__carousel .owl-dots .owl-dot.active {
  background-color: var(--espartyox-base, #212ED0);
}
.main-slider-two__carousel .owl-dots.disabled {
  display: none;
}
.main-slider-two .active .main-slider-two__bg {
  opacity: 1;
  transform: scalex(1);
  transition-delay: 1000ms;
}
.main-slider-two .active .main-slider-two__subtitle,
.main-slider-two .active .main-slider-two__btn__inner,
.main-slider-two .active .main-slider-two__text {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 2000ms;
}
.main-slider-two .active .main-slider-two__title span {
  animation: leftRightText 0.5s forwards;
}
.main-slider-two .active .main-slider-two__thumb {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-duration: 1000ms;
}
.main-slider-two .active .main-slider-two__thumb img {
  animation: translateLeft 3s ease-in-out infinite;
}

.hero-three {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-three {
    padding: 100px 0;
  }
}
.hero-three .sec-title-three {
  padding-bottom: 18px;
}
.hero-three .sec-title-three .sec-title-three__tagline {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.4px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 450px) {
  .hero-three .sec-title-three .sec-title-three__tagline {
    font-size: 16px;
  }
}
.hero-three .sec-title-three .sec-title-three__title {
  text-shadow: 8px 40px 60px rgba(0, 0, 0, 0.1);
  font-size: 62px;
  line-height: 112.903%;
  letter-spacing: 1.24px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 575px) {
  .hero-three .sec-title-three .sec-title-three__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) and (min-width: 576px) {
  .hero-three .sec-title-three .sec-title-three__title {
    font-size: 50px;
  }
}
@media (max-width: 425px) {
  .hero-three .sec-title-three .sec-title-three__title {
    font-size: 40px;
  }
}
.hero-three__content {
  padding: 114px 0 113px;
}
@media (max-width: 991px) {
  .hero-three__content {
    padding: 0;
    margin-bottom: 30px;
  }
}
.hero-three__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  letter-spacing: 0.32px;
  margin-bottom: 30px;
  font-size: 16px;
  max-width: 500px;
}
.hero-three__btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 450px) {
  .hero-three__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.hero-three__btn .espartyox-btn-three {
  display: inline-flex;
}
.hero-three__btn .espartyox-btn-three:last-child {
  background-color: #F6F6F4;
  border-radius: 4px;
  box-shadow: 12px 72px 90px 0 rgba(0, 0, 0, 0.1);
  color: var(--espartyox-black, #001A3D);
  border-color: transparent;
}
.hero-three__btn .espartyox-btn-three:last-child:hover {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
}
.hero-three__btn .espartyox-btn-three:last-child:hover i,
.hero-three__btn .espartyox-btn-three:last-child:hover .espartyox-btn-three__text {
  color: var(--espartyox-white, #fff);
}
.hero-three__thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 15px);
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero-three__thumb {
    position: relative;
    width: 100%;
  }
  .hero-three__thumb img {
    object-fit: cover;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
.feature-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.feature-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  background: var(--espartyox-black, #001A3D);
  z-index: -1;
}
.feature-three__shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
}
.feature-three__shape-one img {
  animation: translateLeft 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .feature-three__shape-one {
    display: none;
  }
}
.feature-three__shape-two {
  position: absolute;
  bottom: 0;
  right: 0;
}
.feature-three__shape-two img {
  animation: translateLeft 3s ease-in-out infinite;
}
@media (max-width: 991px) {
  .feature-three__shape-two {
    display: none;
  }
}
.feature-three__item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 12px 36px 60px 1px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 23px;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media (max-width: 991px) and (min-width: 768px) {
  .feature-three__item {
    padding: 13px;
  }
}
@media (max-width: 425px) {
  .feature-three__item {
    padding: 20px;
  }
}
.feature-three__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--espartyox-base, #212ED0);
  transform: scale(0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.feature-three__item__icon {
  line-height: 1;
  margin-bottom: 20px;
  display: inline-flex;
}
@media (max-width: 991px) and (min-width: 768px) {
  .feature-three__item__icon {
    margin-bottom: 15px;
  }
}
.feature-three__item__icon i {
  color: var(--espartyox-white, #fff);
  font-size: 50px;
  line-height: 1;
  display: block;
}
.feature-three__item__title {
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .feature-three__item__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.feature-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.feature-three__item__title a:hover {
  background-size: 100% 1px;
}
.feature-three__item__text {
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 13px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .feature-three__item__text {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.feature-three__item__btn {
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  display: inline-flex;
  gap: 4px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .feature-three__item__btn {
    font-size: 14px;
  }
}
.feature-three__item__btn i {
  transition: all 0.6s ease-in-out;
}
.feature-three__item__btn:hover i {
  transform: translateX(3px);
}
.feature-three__item:hover::after {
  transform: scale(1);
  border-radius: 4px;
  visibility: visible;
  opacity: 1;
}
.feature-three__item:hover .feature-three__item__icon i {
  animation: gelatine 0.6s;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  z-index: 1;
  padding-bottom: 187px;
}
@media (max-width: 991px) {
  .about-one {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .about-one {
    padding-bottom: 80px;
  }
}
.about-one .sec-title {
  padding-bottom: 18px;
}
.about-one__text {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .about-one__content {
    margin-left: 15px;
  }
}
.about-one__list {
  margin-bottom: 38px;
}
.about-one__list li {
  color: var(--espartyox-black, #001A3D);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-one__list li i {
  color: var(--espartyox-base, #212ED0);
  font-size: 23px;
  transition: all 0.4s ease-in-out;
}
.about-one__list li:hover i {
  color: var(--espartyox-black, #001A3D);
}
.about-one__list li + li {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about-one__list li + li {
    margin-top: 29px;
  }
}
.about-one__thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .about-one__thumb {
    margin-right: 15px;
  }
}
.about-one__thumb__item img {
  object-fit: cover;
  border-radius: 235px;
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 500px) {
  .about-one__thumb__item img {
    width: 100%;
  }
}
.about-one__thumb__item-small {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: end;
}
@media (max-width: 991px) and (min-width: 768px) {
  .about-one__thumb__item-small {
    right: 30%;
  }
}
@media (max-width: 430px) {
  .about-one__thumb__item-small {
    position: relative;
    right: inherit;
    left: inherit;
    margin-top: 20px;
    text-align: left;
  }
}
.about-one__thumb__item-small img {
  object-fit: cover;
  border-radius: 1000px;
  border: 10px solid var(--espartyox-white, #fff);
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 575px) and (min-width: 430px) {
  .about-one__thumb__item-small img {
    width: 70%;
    text-align: end;
    object-fit: cover;
  }
}
@media (max-width: 500px) {
  .about-one__thumb__item-small img {
    width: 100%;
  }
}
.about-one__thumb__shape {
  position: absolute;
  bottom: -66px;
  left: 0;
  z-index: -1;
}
.about-one__thumb__shape img {
  opacity: 30%;
  animation: translateLeft 3s ease-in-out infinite;
}
.about-one__right-shape, .about-one__left-shape {
  position: absolute;
  top: 39%;
  left: 0;
}
@media (max-width: 991px) {
  .about-one__right-shape, .about-one__left-shape {
    display: none;
  }
}
.about-one__right-shape img, .about-one__left-shape img {
  opacity: 0.1;
}
.about-one__right-shape {
  right: 0;
  left: auto;
}

.about-three {
  position: relative;
  z-index: 1;
}
.about-three__thumb {
  position: relative;
  z-index: 1;
}
.about-three__thumb-item img {
  object-fit: cover;
}
.about-three__thumb-item-small {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) {
  .about-three__content {
    margin-left: 50px;
  }
}
.about-three .sec-title-two {
  padding-bottom: 18px;
}
.about-three__text {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: 30px;
}
.about-three__list {
  margin-bottom: 40px;
}
.about-three__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #021623;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
}
.about-three__list li + li {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about-three__list li + li {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .about-three__thumb {
    margin-right: -33px;
  }
}
@media (max-width: 500px) {
  .about-three__thumb-item {
    text-align: start;
  }
  .about-three__thumb-item img {
    width: 100%;
  }
}
.about-three__thumb-item-small img {
  width: 398px;
  border: 8px solid var(--espartyox-white, #fff);
  box-shadow: 12px 36px 80px 1px rgba(254, 140, 18, 0.1);
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 575px) {
  .about-three__thumb-item-small {
    text-align: end;
  }
  .about-three__thumb-item-small img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .about-three__thumb-item-small {
    text-align: end;
  }
  .about-three__thumb-item-small img {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .about-three__thumb-item-small {
    text-align: start;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
  .about-three__thumb-item-small img {
    width: 100%;
  }
}
.about-three .spread__funfact {
  position: relative;
  z-index: 1;
  max-width: 190px;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
}
@media (max-width: 500px) {
  .about-three .spread__funfact {
    max-width: 100%;
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
  }
}
.about-three .spread__funfact--two {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0;
}
@media (max-width: 500px) {
  .about-three .spread__funfact--two {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    margin-top: 20px;
  }
}
.about-three .spread__funfact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-three .spread__funfact__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 22, 35, 0.7);
  z-index: -1;
}
.about-three .spread__funfact .spread__funfact__count {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F6FA;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 6px;
}
.about-three .spread__funfact .spread__funfact__text {
  color: var(--espartyox-base, #212ED0);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
  text-align: center;
}

.about-four__content .sec-title-three {
  padding-bottom: 20px;
}
.about-four__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 15px;
  /*max-width: 500px;*/
}
.about-four__list {
  margin-bottom: 20px;
}
.about-four__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  /*color: var(--espartyox-black, #001A3D);*/
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 16px;
  /*font-weight: 500;*/
  line-height: 100%;
  letter-spacing: 0.36px;
}
.about-four__list li + li {
  margin-top: 10px;
}
.about-four__call {
  color: var(--espartyox-black, #001A3D);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.36px;
  margin-bottom: 30px;
}
.about-four__call span {
  color: var(--espartyox-base, #212ED0);
}
.about-four__call a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-four__call a:hover {
  background-size: 100% 1px;
}
.about-four__call a:hover {
  color: var(--espartyox-base, #212ED0);
}
.about-four .espartyox-btn-three {
  display: inline-flex;
}
.about-four__thumb {
  position: relative;
  z-index: 1;
}
.about-four__thumb__item {
  text-align: end;
}
@media (min-width: 992px) {
  .about-four__thumb__item {
    margin-left: 100px;
  }
}
@media (max-width: 991px) {
  .about-four__thumb__item {
    margin-left: 100px;
  }
}
@media (max-width: 520px) {
  .about-four__thumb__item {
    margin-left: 0;
  }
}
.about-four__thumb__item img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
}
.about-four__thumb__item-small {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border: 5px solid var(--espartyox-white, #fff);
  border-radius: 4px;
}
@media (max-width: 520px) {
  .about-four__thumb__item-small {
    position: relative;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    top: auto;
    left: auto;
  }
  .about-four__thumb__item-small img {
    object-fit: cover;
    width: 100%;
  }
}
.about-four__thumb__item-small img {
  object-fit: cover;
  border-radius: 4px;
}
.about-four__thumb__item-small::after {
  content: "";
  background-color: rgba(23, 64, 53, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-four__thumb__item-small .video_play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 13px;
  transition: all 0.4s ease-in-out;
}
.about-four__thumb__item-small .video_play:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width: 520px) {
  .about-four__thumb__item-small .video_play {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
}
.about-four .about-four__thumb__thext {
  color: var(--espartyox-white, #fff);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.48px;
  background-color: var(--espartyox-black, #001A3D);
  padding: 20px;
  transform: rotate(-180deg);
  position: absolute;
  writing-mode: vertical-rl;
  height: 320px;
  bottom: 30px;
  left: 36px;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 575px) {
  .about-four .about-four__thumb__thext {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .about-four .about-four__thumb__thext {
    height: auto;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-page__top {
  margin-bottom: 50px;
}
.service-page__top .sec-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
.service-page__top__text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .service-page__top__text {
    margin-left: -30px;
  }
}
.service-page .service-lode-more {
  margin-top: 10px;
}

.service-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(221, 221, 221, 0.87);
  margin-top: 43px;
  padding: 0 40px 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 768px) {
  .service-card {
    padding: 0 20px 20px;
  }
}
@media (max-width: 991px) and (min-width: 768px), (max-width: 500px) {
  .service-card {
    padding: 0 20px 12px;
  }
}
.service-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: scalex(0.3);
  filter: blur(10px);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.9);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.service-card__icon-shape {
  position: absolute;
  left: 40px;
  top: -43px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 768px), (max-width: 500px) {
  .service-card__icon-shape {
    left: 20px;
  }
}
.service-card__icon {
  width: 87px;
  height: 94px;
  background-color: var(--espartyox-base, #212ED0);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.000000 90.000000" preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,90.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M25 875 l-25 -24 0 -394 c0 -384 1 -395 21 -421 33 -42 69 -35 251 50 90 42 174 76 188 76 14 0 92 -35 173 -77 157 -82 176 -86 217 -45 19 19 20 35 20 415 l0 396 -25 24 -24 25 -386 0 -386 0 -24 -25z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.000000 90.000000" preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,90.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M25 875 l-25 -24 0 -394 c0 -384 1 -395 21 -421 33 -42 69 -35 251 50 90 42 174 76 188 76 14 0 92 -35 173 -77 157 -82 176 -86 217 -45 19 19 20 35 20 415 l0 396 -25 24 -24 25 -386 0 -386 0 -24 -25z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  display: flex;
  padding-top: 23px;
  justify-content: center;
  font-size: 40px;
  color: var(--espartyox-white, #fff);
  margin-top: -43px;
  transition: all 0.5s ease-in-out;
  line-height: 1;
}
.service-card__content__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) and (min-width: 768px), (max-width: 500px) {
  .service-card__content__inner {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}
.service-card__content {
  padding-top: 30px;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid rgba(221, 221, 221, 0.87);
}
@media (max-width: 991px) and (min-width: 992px) {
  .service-card__content {
    padding-right: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 991px) and (min-width: 768px), (max-width: 500px) {
  .service-card__content {
    padding-right: 0;
    margin-right: 0;
    border: none;
  }
}
.service-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.service-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card__title a:hover {
  background-size: 100% 1px;
}
.service-card__text {
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 500px) {
  .service-card__text {
    font-size: 14px;
  }
}
.service-card__btn {
  line-height: 1;
}
.service-card__btn a {
  font-size: 50px;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.5s ease-in-out;
  line-height: 1;
  display: block;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 500px) {
  .service-card__btn a {
    font-size: 40px;
  }
}
.service-card__btn a i {
  line-height: 0;
}
.service-card:hover {
  border-color: var(--espartyox-base, #212ED0);
  box-shadow: 4px 8px 40px 2px rgba(0, 0, 0, 0.1);
}
.service-card:hover .service-card__bg {
  visibility: visible;
  opacity: 1;
  transform: scalex(1);
  filter: blur(0px);
  transition-duration: 700ms;
}
.service-card:hover::after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.service-card:hover .service-card__title,
.service-card:hover .service-card__text,
.service-card:hover .service-card__btn a {
  color: var(--espartyox-white, #fff);
}
.service-card:hover .service-card__icon-shape {
  visibility: visible;
  opacity: 1;
}
.service-card:hover .service-card__icon {
  background-color: var(--espartyox-white, #fff);
  color: var(--espartyox-base, #212ED0);
}
.service-card:hover .service-card__icon i {
  animation: gelatine 0.6s;
}

.service-card-two {
  position: relative;
  z-index: 1;
  padding: 30px 30px 28px;
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  background: #F5F6FA;
  transition: all 0.5s ease-in-out;
  height: 100%;
}
@media (max-width: 991px) and (min-width: 992px), (max-width: 767px) and (min-width: 576px), (max-width: 425px) {
  .service-card-two {
    padding: 20px;
  }
}
.service-card-two__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: scalex(0.3);
  filter: blur(10px);
}
.service-card-two::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(2, 22, 35, 0.8);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.service-card-two__icon {
  margin-bottom: 20px;
  background-color: transparent;
}
.service-card-two__title {
  color: #021623;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.service-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card-two__title a:hover {
  background-size: 100% 1px;
}
.service-card-two__text {
  transition: all 0.5s ease-in-out;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 160%;
}
.service-card-two__btn {
  line-height: 1;
}
.service-card-two__btn a {
  color: var(--espartyox-base, #212ED0);
  transition: all 0.5s ease-in-out;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
.service-card-two__btn a i {
  margin-left: 8px;
}
.service-card-two:hover {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 4px 8px 40px 2px rgba(0, 0, 0, 0.1);
}
.service-card-two:hover .service-card-two__bg {
  visibility: visible;
  opacity: 1;
  transform: scalex(1);
  filter: blur(0px);
  transition-duration: 700ms;
}
.service-card-two:hover::after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.service-card-two:hover .service-card-two__title,
.service-card-two:hover .service-card-two__text,
.service-card-two:hover .service-card-two__btn a {
  color: var(--espartyox-white, #fff);
}
.service-card-two:hover .service-card-two__icon {
  color: var(--espartyox-base, #212ED0);
}
.service-card-two:hover .service-card-two__icon img {
  animation: gelatine 0.6s;
  filter: brightness(0) invert(1);
}

.service-three__thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .service-three__thumb {
    margin-right: -40px;
  }
}
@media (max-width: 991px) {
  .service-three__thumb {
    max-width: 550px;
  }
}
.service-three__thumb__item img {
  border-radius: 4px;
  box-shadow: 12px 36px 90px 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 425px) {
  .service-three__thumb__item {
    text-align: start;
    position: relative;
  }
  .service-three__thumb__item img {
    width: 100%;
  }
}
.service-three__thumb__item-small {
  position: absolute;
  top: 34px;
  right: 0;
}
.service-three__thumb__item-small img {
  border-radius: 4px;
  box-shadow: 12px 36px 90px 1px rgba(0, 0, 0, 0.1);
  border: 10px solid #F0F7F3;
  object-fit: cover;
  height: 490px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .service-three__thumb__item-small {
    text-align: right;
    top: auto;
    bottom: 0;
  }
  .service-three__thumb__item-small img {
    object-fit: cover;
    width: 80%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .service-three__thumb__item-small {
    text-align: right;
    top: auto;
    bottom: 0;
  }
  .service-three__thumb__item-small img {
    object-fit: cover;
    width: 80%;
    height: auto;
  }
}
@media (max-width: 425px) {
  .service-three__thumb__item-small {
    text-align: start;
    position: relative;
    margin-top: 20px;
  }
  .service-three__thumb__item-small img {
    border: none;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .service-three__content {
    margin-left: 55px;
  }
}
.service-three__content .sec-title-three {
  padding-bottom: 20px;
}
.service-three__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 30px;
}
.service-three__list {
  margin-bottom: 30px;
}
.service-three__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--espartyox-black, #001A3D);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.36px;
}
.service-three__list li + li {
  margin-top: 20px;
}
.service-three .espartyox-btn-three {
  display: inline-flex;
}

.service-area-three__inner {
  margin-bottom: 50px;
}
.service-area-three__item {
  border: 1px solid rgba(221, 221, 221, 0.87);
  background-color: #F6F6F4;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-area-three__item {
    padding: 20px 25px;
  }
}
@media (max-width: 575px) {
  .service-area-three__item {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}
.service-area-three__item__content {
  flex: 40%;
  width: 40%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .service-area-three__item__content {
    width: 100%;
    flex: 100%;
  }
}
.service-area-three__item__title {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 576px) {
  .service-area-three__item__title {
    font-size: 18px;
  }
}
.service-area-three__item__right {
  flex: 60%;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .service-area-three__item__right {
    width: 100%;
    flex: 100%;
  }
}
@media (max-width: 425px) {
  .service-area-three__item__right {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }
}
.service-area-three__item__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  max-width: 420px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 576px) {
  .service-area-three__item__text {
    font-size: 14px;
  }
}
.service-area-three__item__btn {
  line-height: 1;
  font-size: 50px;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 576px) {
  .service-area-three__item__btn {
    font-size: 30px;
  }
}
.service-area-three__item__btn i {
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.service-area-three__item__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.service-area-three__item__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--espartyox-black, #001A3D);
  z-index: -1;
  opacity: 0.85;
}
.service-area-three__item:hover .service-area-three__item__icon img {
  animation: gelatine 0.6s;
  filter: brightness(0) invert(1);
}
.service-area-three__item:hover .service-area-three__item__bg {
  height: 100%;
  top: 0;
  bottom: auto;
}
.service-area-three__item:hover .service-area-three__item__btn i,
.service-area-three__item:hover .service-area-three__item__title,
.service-area-three__item:hover .service-area-three__item__text {
  color: var(--espartyox-white, #fff);
}
.service-area-three__item:hover .service-area-three__item__btn {
  transform: rotate(90deg);
  color: var(--espartyox-white, #fff);
}
.service-area-three__item + .service-area-three__item {
  margin-top: 30px;
}
.service-area-three__bottm__text {
  text-align: center;
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 0;
}
.service-area-three__bottm__text a {
  color: var(--espartyox-base, #212ED0);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details__thumb {
  margin-bottom: 30px;
}
.service-details__thumb img {
  object-fit: cover;
  width: 100%;
}
.service-details__text {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}
.service-details__text a {
  text-decoration: underline;
  color: var(--espartyox-base, #212ED0);
  transition: all 0.4s ease-in-out;
  font-weight: 600;
}
.service-details__text a:hover {
  color: var(--espartyox-black, #001A3D);
}
.service-details__text + .service-details__text {
  margin-top: 20px;
}
.service-details__thumb-small img {
  object-fit: cover;
  width: 100%;
}
.service-details__title {
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 30px;
  font-size: 30px;
}
@media (min-width: 992px) {
  .service-details__title {
    margin-bottom: 40px;
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Case
--------------------------------------------------------------*/
.case-studies__card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
.case-studies__card__thumb {
  position: relative;
  z-index: 1;
}
.case-studies__card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.case-studies__card__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
.case-studies__card__content {
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  top: 0;
  left: 0;
}
.case-studies__card__title {
  color: var(--espartyox-white, #fff);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
}
.case-studies__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.case-studies__card__title a:hover {
  background-size: 100% 1px;
}
.case-studies__card__icon {
  font-size: 50px;
  color: var(--espartyox-white, #fff);
  line-height: 1;
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
}
.case-studies__card__icon:hover {
  color: var(--espartyox-base, #212ED0);
}
.case-studies__card:hover .case-studies__card__thumb img {
  transform: scale(1.1);
}
.case-studies__card:hover .case-studies__card__thumb::after {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}
.case-studies__card:hover .case-studies__card__title {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.case-studies__card:hover .case-studies__card__icon {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.case-studies__card__two {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.case-studies__card__two__thumb {
  position: relative;
  z-index: 1;
}
.case-studies__card__two__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.case-studies__card__two__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 26, 61, 0.75);
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
.case-studies__card__two__hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.case-studies__card__two__content {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 0;
  top: 0;
  left: 0;
}
.case-studies__card__two__subtitle {
  color: var(--espartyox-white, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 10px;
  display: block;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
}
.case-studies__card__two__title {
  color: var(--espartyox-white, #fff);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
}
.case-studies__card__two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.case-studies__card__two__title a:hover {
  background-size: 100% 1px;
}
.case-studies__card__two__icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--espartyox-base, #212ED0);
  background-color: var(--espartyox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.5s ease-in-out;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.case-studies__card__two__icon:hover {
  background-color: var(--espartyox-black3, #000);
  color: var(--espartyox-white, #fff);
}
.case-studies__card__two:hover {
  box-shadow: 4px 12px 36px 2px rgba(0, 0, 0, 0.1);
}
.case-studies__card__two:hover .case-studies__card__two__thumb img {
  transform: scale(1.1);
}
.case-studies__card__two:hover .case-studies__card__two__thumb::after {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}
.case-studies__card__two:hover .case-studies__card__two__subtitle {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  transition-duration: 500ms;
}
.case-studies__card__two:hover .case-studies__card__two__title {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  transition-duration: 700ms;
}
.case-studies__card__two:hover .case-studies__card__two__icon {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.case-studies__one__top {
  margin-bottom: 43px;
}
.case-studies__one__top .sec-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
.case-studies__one__top__text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .case-studies__one__top__text {
    margin-left: 45px;
  }
}
.case-studies__one__inner {
  position: relative;
  z-index: 1;
}
.case-studies__one__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 112px;
  background-color: rgba(var(--espartyox-base-rgb, 33, 46, 208), 0.85);
  z-index: -1;
}
.case-studies__one__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  height: 112px;
}
.case-studies__one__bottom {
  text-align: center;
  padding: 30px 0;
}
.case-studies__one__bottom__text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 0;
  color: var(--espartyox-white, #fff);
}
.case-studies__one__bottom__text a {
  text-decoration: underline;
  color: inherit;
}

.case-study-two {
  counter-reset: caseItem;
}
.case-study-two .sec-title-two {
  padding-bottom: 18px;
  margin-bottom: 0;
}
.case-study-two__top__text {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 35px;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
}
@media (min-width: 992px) {
  .case-study-two__top__text {
    padding-bottom: 47px;
  }
}
.case-study-two__inner {
  margin-bottom: 47px;
}
.case-study-two__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 30px;
  cursor: pointer;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .case-study-two__item {
    padding: 20px;
  }
}
.case-study-two__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--espartyox-gray, #DDDDDD);
}
.case-study-two__item:last-child {
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
}
.case-study-two__item__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.48px;
  color: var(--espartyox-text, #737373);
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .case-study-two__item__title {
    font-size: 18px;
  }
}
.case-study-two__item__title::before {
  counter-increment: caseItem;
  content: "0" counter(caseItem);
  color: var(--espartyox-base, #212ED0);
}
.case-study-two__item__btn {
  font-size: 20px;
  color: var(--espartyox-base, #212ED0);
}
.case-study-two__item__box {
  position: absolute;
  top: 50%;
  transition: all 0.2s ease-in-out;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 3;
}
.case-study-two__bottom__text {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: -4px;
  text-align: center;
}
.case-study-two__bottom__text a {
  color: var(--espartyox-base, #212ED0);
  text-decoration: underline;
  font-weight: 600;
}

.case-study-three .sec-title-three {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .case-study-three__right {
    margin-left: 50px;
  }
}
@media (min-width: 992px) {
  .case-study-three__content {
    margin-right: -30px;
  }
}
.case-study-three__list {
  margin-bottom: 30px;
}
.case-study-three__list__item {
  color: var(--espartyox-black, #001A3D);
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.case-study-three__list__item.active-btn, .case-study-three__list__item:hover {
  color: var(--espartyox-base, #212ED0);
}
.case-study-three__list__item + .case-study-three__list__item {
  margin-top: 30px;
}
.case-study-three__item__thumb {
  margin-bottom: 20px;
}
.case-study-three__item__thumb img, .case-study-three__list__image img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  box-shadow: 12px 36px 90px 1px rgba(0, 0, 0, 0.1);
}
.case-study-three__item__content__title {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}
.case-study-three__item__content__text {
  font-family: var(--espartyox-font3, "Work Sans", sans-serif);
  margin-bottom: 30px;
}
.case-study-three__item__content .espartyox-btn-three {
  display: inline-flex;
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.projects-page__top {
  margin-bottom: 50px;
}
.projects-page__top .sec-title {
  padding-bottom: 0;
  margin-bottom: 0;
}
.projects-page__top__text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .projects-page__top__text {
    margin-left: 60px;
  }
}

.project__card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
.project__card__thumb {
  position: relative;
  z-index: 1;
}
.project__card__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.project__card__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
.project__card__content {
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  top: 0;
  left: 0;
}
.project__card__title {
  color: var(--espartyox-white, #fff);
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
}
.project__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.project__card__title a:hover {
  background-size: 100% 1px;
}
.project__card__text {
  color: var(--espartyox-white, #fff);
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
}
.project__card__icon {
  font-size: 50px;
  color: var(--espartyox-white, #fff);
  line-height: 1;
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
}
.project__card__icon:hover {
  color: var(--espartyox-base, #212ED0);
}
.project__card:hover .project__card__thumb img {
  transform: scale(1.1);
}
.project__card:hover .project__card__thumb::after {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}
.project__card:hover .project__card__text,
.project__card:hover .project__card__title {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.project__card:hover .project__card__text {
  transition-duration: 500ms;
}
.project__card:hover .project__card__icon {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.projects-details {
  position: relative;
  z-index: 1;
}
.projects-details__thumb {
  margin-bottom: 30px;
}
.projects-details__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 16px;
}
.projects-details__thumb-small {
  height: 100%;
}
.projects-details__thumb-small img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}
.projects-details__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.projects-details__box {
  height: 100%;
  border-radius: 16px;
  background-color: #F5F6FA;
}
.projects-details__box__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
  padding-left: 30px;
  padding-top: 30px;
  padding-right: 30px;
}
.projects-details__box__list {
  margin-bottom: 0;
}
.projects-details__box__list li {
  color: var(--espartyox-black, #001A3D);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 20px 30px 19px;
  border-top: 1px solid rgba(var(--espartyox-gray-rgb, 221, 221, 221), 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects-details__box__list li span {
  color: var(--espartyox-text, #737373);
}
.projects-details__box .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.projects-details__box .social-links a {
  color: var(--espartyox-base, #212ED0);
}

/*--------------------------------------------------------------
# Mixed
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Service Overview
--------------------------------------------------------------*/
.service-overview {
  position: relative;
  z-index: 1;
}
.service-overview .sec-title {
  padding-bottom: 18px;
}
.service-overview__text {
  margin-bottom: 40px;
}
.service-overview__btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .service-overview__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
  }
}
.service-overview__call {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-overview__call__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F6FA;
  color: var(--espartyox-base, #212ED0);
  font-size: 22px;
  transition: all 0.4s ease-in-out;
}
.service-overview__call-sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: var(--espartyox-text, #737373);
  margin-bottom: 10px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .service-overview__call-sub {
    margin-bottom: 5px;
  }
}
.service-overview__call-number {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: var(--espartyox-black, #001A3D);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-overview__call-number:hover {
  background-size: 100% 1px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .service-overview__call-number {
    font-size: 15px;
  }
}
.service-overview__call-number:hover {
  color: var(--espartyox-base, #212ED0);
}
.service-overview__call:hover .service-overview__call__icon {
  background-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-white, #fff);
  animation: bellshake 0.5s linear 2;
}
@media (min-width: 992px) {
  .service-overview__content {
    margin-left: 20px;
  }
}
.service-overview__progress-box {
  border-radius: 16px;
  background: #F5F6FA;
  padding: 30px 40px;
  margin-bottom: 42px;
}
.service-overview__progress__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 27px;
}
.service-overview__progress__bar {
  width: 100%;
  height: 6px;
  position: relative;
  background-color: var(--espartyox-gray, #DDDDDD);
  border-radius: 50px;
}
.service-overview__progress__inner {
  background-color: var(--espartyox-base, #212ED0);
  height: 100%;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.service-overview__progress__inner::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--espartyox-base, #212ED0);
  border: 2px solid var(--espartyox-white, #fff);
  position: absolute;
  top: -8px;
  right: -5px;
}
.service-overview__progress__number {
  position: absolute;
  bottom: 30px;
  right: 0;
  color: var(--espartyox-black, #001A3D);
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
.service-overview__progress + .service-overview__progress {
  margin-top: 30px;
}
.service-overview__thumb {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .service-overview__thumb {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-overview__thumb__item {
  text-align: end;
}
.service-overview__thumb__item img {
  border-radius: 16px;
  box-shadow: 9px 0 40px 2px rgba(0, 0, 0, 0.1);
}
.service-overview__thumb__item-two {
  position: absolute;
  bottom: 0;
  left: -120px;
  bottom: -98px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .service-overview__thumb__item-two {
    left: 0px;
    bottom: -50px;
  }
  .service-overview__thumb__item-two img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .service-overview__thumb__item-two {
    left: 0px;
    bottom: 0px;
  }
  .service-overview__thumb__item-two img {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .service-overview__thumb__item-two {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 30px;
  }
}
.service-overview__thumb__item-two img {
  border-radius: 16px;
  box-shadow: 9px 0 40px 2px rgba(0, 0, 0, 0.1);
}
.service-overview__thumb__video a {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 10px solid var(--espartyox-white, #fff);
  background-color: var(--espartyox-base, #212ED0);
  font-size: 40px;
  color: var(--espartyox-white, #fff);
  position: absolute;
  bottom: -98px;
  left: 144px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .service-overview__thumb__video a {
    width: 100px;
    height: 100px;
    font-size: 30px;
    border-width: 5px;
    bottom: -70px;
    left: 220px;
  }
}
@media (max-width: 992px) {
  .service-overview__thumb__video a {
    bottom: -30px;
  }
}
@media (max-width: 575px) {
  .service-overview__thumb__video a {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}
.service-overview__thumb__video a:hover {
  background-color: var(--espartyox-white, #fff);
  border-color: var(--espartyox-base, #212ED0);
  color: var(--espartyox-base, #212ED0);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/
.why-choose-us {
  position: relative;
  z-index: 1;
}
.why-choose-us .sec-title {
  padding-bottom: 18px;
}
.why-choose-us--two {
  padding-bottom: 167px;
}
@media (max-width: 767px) {
  .why-choose-us--two {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .why-choose-us--two {
    padding-bottom: 80px;
  }
}
.why-choose-us--two .why-choose-us__thumb {
  width: 100%;
  position: relative;
  top: 0;
  overflow: visible;
}
@media (max-width: 991px) {
  .why-choose-us--two .why-choose-us__thumb {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.why-choose-us--two .why-choose-us__thumb::after {
  display: none;
}
.why-choose-us--two .why-choose-us__thumb-item {
  text-align: end;
}
@media (max-width: 500px) {
  .why-choose-us--two .why-choose-us__thumb-item {
    text-align: left;
  }
}
.why-choose-us--two .why-choose-us__thumb-item img {
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1000px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .why-choose-us--two .why-choose-us__thumb-item img {
    width: auto;
  }
}
@media (max-width: 500px) {
  .why-choose-us--two .why-choose-us__thumb-item img {
    width: 100%;
  }
}
.why-choose-us--two .why-choose-us__thumb-item-small {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 1000px;
}
@media (max-width: 500px) {
  .why-choose-us--two .why-choose-us__thumb-item-small {
    position: relative;
    margin-top: 20px;
  }
}
.why-choose-us--two .why-choose-us__thumb-item-small img {
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1000px;
  border: 10px solid var(--espartyox-white, #fff);
  object-fit: cover;
  width: auto;
}
@media (max-width: 500px) {
  .why-choose-us--two .why-choose-us__thumb-item-small img {
    width: 100%;
  }
}
.why-choose-us--two .why-choose-us__thumb__shape {
  position: absolute;
  bottom: -66px;
  left: 0;
  z-index: -1;
}
.why-choose-us--two .why-choose-us__thumb__shape img {
  opacity: 30%;
  animation: translateLeft 3s ease-in-out infinite;
}
@media (max-width: 500px) {
  .why-choose-us--two .why-choose-us__thumb__shape {
    display: none;
  }
}
.why-choose-us--two .why-choose-us__feature__icon {
  max-width: 73px;
  width: 100%;
  height: 75px;
  font-size: 50px;
}
.why-choose-us--two .why-choose-us__feature__item + .why-choose-us__feature__item {
  margin-top: 30px;
}
.why-choose-us--two .why-choose-us__text {
  margin-right: 0;
}
.why-choose-us__text {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .why-choose-us__text {
    margin-right: 40px;
  }
}
.why-choose-us__feature__item {
  display: flex;
  /*align-items: center;*/
  gap: 22px;
}
.why-choose-us__feature__item:hover .why-choose-us__feature__icon i {
  transform: rotateY(360deg);
}
.why-choose-us__feature__item + .why-choose-us__feature__item {
  margin-top: 15px;
}
.why-choose-us__feature__icon {
  max-width: 55px;
  width: 100%;
  height: 55px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-base, #212ED0);
  font-size: 35px;
  color: var(--espartyox-white, #fff);
  transition: all 0.6s ease-in-out;
}
.why-choose-us__feature__icon i {
  transition: all 0.6s ease-in-out;
}
.why-choose-us__feature__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 10px;
}
.why-choose-us__feature__text {
  margin: 0;
  font-size: 14px;
}
@media (min-width: 992px) {
  .why-choose-us__feature__text {
    /*max-width: 400px;*/
  }
}
.why-choose-us__thumb {
  position: absolute;
  top: 120px;
  right: 0;
  width: calc(50% - 15px);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 991px) {
  .why-choose-us__thumb {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
  }
  .why-choose-us__thumb img {
    object-fit: cover;
    width: 100%;
  }
}
.why-choose-us__thumb img {
  object-fit: cover;
}
.why-choose-us__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
}
.why-choose-us__thumb .video_play {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--espartyox-white, #fff);
  background-color: transparent;
  font-size: 30px;
  color: var(--espartyox-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.why-choose-us__thumb .video_play:hover {
  background-color: var(--espartyox-base, #212ED0);
}
@media (max-width: 767px) {
  .why-choose-us__thumb .video_play {
    width: 80px;
    height: 80px;
    font-size: 25px;
  }
}

.why-choose-us-two {
  position: relative;
  z-index: 1;
}
.why-choose-us-two .sec-title-two {
  padding-bottom: 18px;
}
.why-choose-us-two__text {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  margin-bottom: 30px;
}
.why-choose-us-two__content {
  margin-left: 0;
}
@media (min-width: 992px) {
  .why-choose-us-two__content {
    margin-left: 70px;
  }
}
.why-choose-us-two__feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  justify-items: start;
  grid-gap: 30px 26px;
  margin-bottom: 40px;
}
.why-choose-us-two__feature__item {
  display: flex;
  align-items: center;
  background: var(--espartyox-white, #fff);
  max-width: 200px;
  box-shadow: 12px 36px 60px 1px rgba(0, 0, 0, 0.1);
}
.why-choose-us-two__feature__item:hover .why-choose-us-two__feature__icon img {
  animation: gelatine 1s ease-in-out;
}
.why-choose-us-two__feature__icon {
  max-width: 56px;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--espartyox-black, #001A3D);
}
.why-choose-us-two__feature__title {
  color: #021623;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 0;
  padding: 10px;
}
.why-choose-us-two__thumb {
  position: relative;
  z-index: 1;
}
.why-choose-us-two__thumb-item {
  margin-bottom: 36px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .why-choose-us-two__thumb-item {
    margin-right: 100px;
  }
  .why-choose-us-two__thumb-item img {
    object-fit: cover;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .why-choose-us-two__thumb-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.why-choose-us-two__thumb-item-small {
  position: absolute;
  bottom: -35px;
  right: -52px;
}
.why-choose-us-two__thumb-item-small img {
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--espartyox-white, #fff);
  object-fit: cover;
  height: 518px;
}
@media (max-width: 991px) and (min-width: 992px) {
  .why-choose-us-two__thumb-item-small {
    text-align: end;
    right: 0;
  }
  .why-choose-us-two__thumb-item-small img {
    object-fit: cover;
    width: 70%;
    height: auto;
  }
}
@media (max-width: 500px) {
  .why-choose-us-two__thumb-item-small {
    margin-top: 20px;
    position: relative;
    bottom: auto;
    right: auto;
  }
  .why-choose-us-two__thumb-item-small img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.company-benefit {
  position: relative;
  z-index: 1;
}
.company-benefit .sec-title {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .company-benefit__content {
    margin-left: 43px;
  }
}
.company-benefit__feature__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.company-benefit__feature__item + .company-benefit__feature__item {
  margin-top: 30px;
}
.company-benefit__feature__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .company-benefit__feature__title {
    font-size: 20px;
  }
}
.company-benefit__feature__text {
  margin: 0;
}
@media (max-width: 500px) {
  .company-benefit__feature__text {
    font-size: 14px;
  }
}
.company-benefit__count-bar {
  position: relative;
  z-index: 1;
}
.company-benefit__funfact {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.company-benefit .circle-progress {
  display: flex;
  transform: rotate(-90deg);
}
.company-benefit__thumb {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .company-benefit__thumb {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.company-benefit__thumb-item {
  text-align: start;
}
.company-benefit__thumb-item img {
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1000px;
  object-fit: cover;
}
@media (max-width: 500px) {
  .company-benefit__thumb-item img {
    width: 100%;
  }
}
.company-benefit__thumb-item-small {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 235px;
}
@media (min-width: 992px) {
  .company-benefit__thumb-item-small {
    right: -30px;
  }
}
@media (max-width: 500px) {
  .company-benefit__thumb-item-small {
    position: relative;
    right: auto;
    left: 0;
    margin-top: 20px;
  }
}
.company-benefit__thumb-item-small img {
  box-shadow: 4px 12px 40px 1px rgba(0, 0, 0, 0.1);
  border-radius: 1000px;
  border: 10px solid var(--espartyox-white, #fff);
  object-fit: cover;
}
@media (max-width: 500px) {
  .company-benefit__thumb-item-small img {
    width: 100%;
  }
}
.company-benefit__thumb__shape {
  position: absolute;
  bottom: -66px;
  left: 0;
  z-index: -1;
}
.company-benefit__thumb__shape img {
  opacity: 30%;
  animation: translateLeft 3s ease-in-out infinite;
}
@media (max-width: 500px) {
  .company-benefit__thumb__shape {
    display: none;
  }
}
.company-benefit__bottom {
  margin-top: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .company-benefit__bottom {
    margin-top: 100px;
  }
}
.company-benefit__bottom__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .company-benefit__bottom__text {
    font-size: 20px;
  }
}
.company-benefit__bottom__text a {
  color: var(--espartyox-base, #212ED0);
  text-decoration: underline;
}

.portfolio-one__inner {
  border: 1px solid var(--espartyox-gray, #DDDDDD);
  border-bottom: none;
}
.portfolio-one__list {
  margin-bottom: 0;
  display: flex;
}
@media (max-width: 991px) {
  .portfolio-one__list {
    flex-wrap: wrap;
  }
}
.portfolio-one__list__item {
  flex: 300px;
  width: 300px;
  padding: 30px;
  border-bottom: 1px solid var(--espartyox-gray, #DDDDDD);
}
@media (max-width: 991px) {
  .portfolio-one__list__item {
    width: 50%;
    flex: 50%;
  }
}
@media (max-width: 575px) {
  .portfolio-one__list__item {
    width: 100%;
    flex: 100%;
  }
}
@media (max-width: 767px) and (min-width: 576px), (max-width: 425px) {
  .portfolio-one__list__item {
    padding: 13px;
  }
}
.portfolio-one__list__item--two {
  padding: 50px 13px;
  flex: 270px;
  width: 270px;
}
@media (max-width: 991px) {
  .portfolio-one__list__item--two {
    width: 50%;
    flex: 50%;
  }
}
.portfolio-one__list__item + .portfolio-one__list__item {
  border-left: 1px solid var(--espartyox-gray, #DDDDDD);
}
@media (max-width: 575px) {
  .portfolio-one__list__item + .portfolio-one__list__item {
    border-left: none;
  }
}
.portfolio-one__list__left .sec-title-two {
  padding-bottom: 18px;
  margin-bottom: 0;
}
.portfolio-one__list__left .sec-title-two__tagline {
  font-size: 14px;
  font-weight: 500;
}
.portfolio-one__list__left .sec-title-two__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-right: -6px;
}
.portfolio-one__list__left-text {
  margin-bottom: 30px;
  font-size: 14px;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  color: var(--Second-text-color, #737373);
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.28px;
}
.portfolio-one__list__left__btn .espartyox-btn-two {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  padding: 13px 15px;
}
.portfolio-one__list__left__btn .espartyox-btn-two i {
  margin-left: 8px;
}
.portfolio-one__item__thumb {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.portfolio-one__item__thumb img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.portfolio-one__item__title {
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.portfolio-one__item__text {
  margin-bottom: 18px;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.28px;
}
.portfolio-one__item__btn {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.28px;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  transition: all 0.4s ease-in-out;
}
.portfolio-one__item__btn:hover {
  color: var(--espartyox-black, #001A3D);
}
.portfolio-one__list__item:hover .portfolio-one__item__thumb img {
  transform: scale(1.1);
}

.company-overview-one .sec-title-two {
  padding-bottom: 28px;
  margin-bottom: 0;
}
.company-overview-one__progress__title {
  color: #021623;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 20px;
}
.company-overview-one__progress__bar {
  width: 100%;
  height: 8px;
  position: relative;
  background-color: var(--espartyox-gray, #DDDDDD);
  border-radius: 50px;
}
.company-overview-one__progress__inner {
  background-color: var(--espartyox-base, #212ED0);
  height: 100%;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.company-overview-one__progress__inner::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--espartyox-base, #212ED0);
  border: 2px solid var(--espartyox-white, #fff);
  position: absolute;
  top: -6px;
  right: -5px;
}
.company-overview-one__progress__number {
  position: absolute;
  bottom: 30px;
  right: 0;
  color: var(--espartyox-black, #001A3D);
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  font-family: var(--espartyox-font2, "Jost", sans-serif);
}
.company-overview-one__progress + .company-overview-one__progress {
  margin-top: 30px;
}
.company-overview-one__thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .company-overview-one__thumb {
    margin-left: 25px;
  }
}
.company-overview-one__thumb img {
  object-fit: cover;
  width: 100%;
  box-shadow: 0 24px 95px 2px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--espartyox-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--espartyox-black-rgb, 0, 26, 61), 0.08);
}
body.boxed-wrapper .topbar-one,
body.boxed-wrapper .main-header {
  padding: 0 20px;
}


.text-justify{
    text-align: justify;
}

.custom-bg{
    background: #64178017;
}


.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}
/*# sourceMappingURL=espartyox.css.map */
