/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --voldor-font: "Manrope", sans-serif;
  --voldor-heading-font: "Barlow", sans-serif;
  --voldor-special-font: "Alex Brush", cursive;
  --voldor-text: #797577;
  --voldor-text-rgb: 121, 117, 119;
  --voldor-text-gray: #958f91;
  --voldor-text-gray-rgb: 149, 143, 145;
  --voldor-base: #ae8f62;
  --voldor-base-rgb: 174, 143, 98;
  --voldor-secondary: #241f21;
  --voldor-secondary-rgb: 36, 31, 33;
  --voldor-gray: #e6e0d8;
  --voldor-gray-rgb: 230, 224, 216;
  --voldor-white: #fff;
  --voldor-white-rgb: 255, 255, 255;
  --voldor-black: #120f10;
  --voldor-black-rgb: 18, 15, 16;
  --voldor-black2: #1b1216;
  --voldor-black2-rgb: 27, 18, 22;
  --voldor-black3: #221c1e;
  --voldor-black3-rgb: 34, 28, 30;
  --voldor-black4: #000;
  --voldor-black4-rgb: 0, 0, 0;
  --voldor-border-color: #f4f2ee;
  --voldor-border-color-rgb: 244, 242, 238;
  --voldor-letter-space: 0.1em;
  --voldor-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;
}

.voldor-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  background-color: var(--voldor-secondary, #241f21);
  color: var(--voldor-white, #fff);
  font-family: "Mulish", serif;
  padding: 19px 40px;
  transition: 500ms;
  text-transform: uppercase;
  background-color: var(--voldor-secondary, #241f21);
  color: var(--voldor-white, #fff);
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.voldor-btn:hover {
  color: var(--voldor-secondary, #241f21);
  background-color: var(--voldor-white, #fff);
}
.voldor-btn::after {
  background: #eac337;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 0%;
  z-index: -1;
  position: absolute;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.voldor-btn:hover {
  color: var(--voldor-black, #120f10);
}
.voldor-btn:hover::after {
  height: 380%;
}
.voldor-btn--base {
  color: var(--voldor-white, #fff);
  background: #eac337;
}
.voldor-btn--base::after {
  background: var(--voldor-secondary, #241f21);
}
.voldor-btn--base:hover {
  color: var(--voldor-white, #fff);
}
.voldor-btn--white {
  color: var(--voldor-secondary, #241f21);
  background: var(--voldor-white, #fff);
}
.voldor-btn--white::after {
  background: var(--voldor-secondary, #241f21);
}
.voldor-btn--white:hover {
  color: var(--voldor-white, #fff);
}
.voldor-btn--secondary {
  background-color: #0c4da2;
}
.voldor-btn--secondary::after {
  background-color: #eac337;
}
.voldor-btn--secondary:hover {
  color: var(--voldor-white, #fff);
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: "Mulish", serif;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  line-height: 2.125;
  font-weight: 500;
  counter-reset: courseNumber;
}

body.locked {
  overflow: hidden;
}

a {
  color: #eac337;
  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 {
  font-family: "Mulish", serif;
  color: var(--voldor-black, #120f10);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  color: var(--voldor-text, #797577);
}
@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: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

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

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

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

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

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

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

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

.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: #eac337;
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--voldor-text, #797577);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.html);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--voldor-black, #120f10);
  font-family: var(--voldor-special-font, "Alex Brush", cursive);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

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

.preloader {
  position: fixed;
  background-color: var(--voldor-black, #120f10);
  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: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: #eac337;
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0c4da2;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  margin-bottom: 0;
  margin-top: 0px;
}
@media (min-width: 992px) {
  .post-pagination {
    margin-top: 0px;
  }
}
.post-pagination a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #eff2f6;
  align-items: center;
  justify-content: center;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  transition: 500ms ease;
}
@media (min-width: 992px) {
  .post-pagination a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.post-pagination a:hover {
  background-color: #eac337;
  color: #fff;
}
.post-pagination li:first-child a {
  background-color: #eac337;
  color: #fff;
}
.post-pagination li:last-child a {
  background-color: var(--voldor-black, #120f10);
  color: #fff;
}
.post-pagination li + li {
  margin-left: 10px;
}

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

.app-slider.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  position: absolute;
  top: -150px;
  right: 0;
}
.app-slider.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
.app-slider.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  /* color: var(--voldor-text, #797577); */
  transition: all 500ms ease;
}
.app-slider.owl-carousel .owl-nav button span:hover {
  background-color: #0c4da2;
  color: var(--voldor-white, #fff);
}
.app-slider.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}
.app-slider.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--voldor-black, #120f10);
  border: 2px solid var(--voldor-white, #fff);
  box-shadow: 0 0 1px rgba(var(--voldor-black-rgb, 18, 15, 16), 1);
  margin: 0;
}
.app-slider.owl-carousel .owl-dots .owl-dot:hover span,
.app-slider.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--voldor-black, #120f10);
  border: 2px solid var(--voldor-black, #120f10);
  box-shadow: 0 0 1px rgba(var(--voldor-black-rgb, 18, 15, 16), 1);
}
.app-slider.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}

.sec-title {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 50px;
  }
}
.sec-title__img {
  display: inline-flex;
  margin-top: -3px;
  margin-right: 7px;
}
.sec-title__tagline {
  margin: 0;
  font-family: "Mulish", serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--voldor-text, #797577);
}
.sec-title__title {
  margin: 0;
  text-transform: uppercase;
  margin-top: 7px;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  font-size: 30px;
  text-shadow: 0 0 0.1px currentColor;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 40px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--voldor-black, #120f10);
  color: var(--voldor-white, #fff);
  font-family: "Mulish", serif;
}

.ui-datepicker-calendar th span {
  font-family: "Mulish", serif;
}
.ui-datepicker-calendar td {
  background-color: var(--voldor-gray, #e6e0d8);
  background-image: none;
  font-family: "Mulish", serif;
  color: var(--voldor-text, #797577);
}
.ui-datepicker-calendar td a {
  border-color: var(--voldor-border-color, #f4f2ee);
  background-color: var(--voldor-gray, #e6e0d8);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--voldor-border-color, #f4f2ee);
  background-color: var(--voldor-gray, #e6e0d8);
  background-image: none;
  color: var(--voldor-text, #797577);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--voldor-white, #fff);
  background-color: #eac337;
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--voldor-white, #fff);
  background-color: #eac337;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--voldor-white, #fff);
  color: var(--voldor-black, #120f10);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

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

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--voldor-black, #120f10);
  padding: 100px 0;
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--voldor-black, #120f10);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}
.video-one .container {
  position: relative;
  text-align: center;
}
.video-one__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.video-one__btn .video-popup {
  font-size: 24px;
  color: var(--voldor-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-one__btn .video-popup:hover {
  color: #eac337;
}
.video-one__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-one__btn .curved-circle--item {
  width: 145px;
}
.video-one__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--voldor-white, #fff);
  letter-spacing: 0.4em;
}
.video-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .video-one__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-one__title {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}
.video-one__link::before {
  background-color: #eac337;
}

.video-two {
  position: relative;
  background-color: var(--voldor-black, #120f10);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--voldor-black, #120f10);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--voldor-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: #eac337;
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--voldor-white, #fff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: #eac337;
}

@media (max-width: 767px) {
  .team-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.team-card__inner {
  position: relative;
  z-index: 1;
}
.team-card__image {
  position: relative;
  z-index: 1;
}
.team-card__image::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  bottom: auto;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1080px) {
  .team-card__image img {
    object-fit: cover;
    width: 100%;
  }
}
.team-card__content {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--voldor-white, #fff);
  padding: 26px 10px;
}
@media (max-width: 575px) {
  .team-card__content {
    bottom: 0px;
    left: 0px;
    right: 0px;
  }
}
.team-card__content__inner {
  display: flex;
  gap: 38px;
  align-items: center;
}
.team-card__content__title {
  margin-top: -5px;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 5px;
  padding-bottom: 0;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .team-card__content__title {
    font-size: 19px;
  }
}
.team-card__content__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__content__title a:hover {
  background-size: 100% 1px;
}
.team-card__content__designation {
  margin-bottom: -3px;
  padding-bottom: 0;
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.37;
}
.team-card__content__hover__icon {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--voldor-text, #797577);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--voldor-white, #fff);
  font-size: 17px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.team-card__content__hover__icon:hover {
  background: #eac337;
}
.team-card__content__hover__social {
  display: flex;
  flex-direction: column;
  background: #eac337;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  position: absolute;
  bottom: 80px;
  left: 12px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 1000ms ease;
  transform-origin: bottom top;
}
.team-card__content__hover__social a {
  color: var(--voldor-white, #fff);
  line-height: 1;
  font-size: 12px;
}
.team-card__content__hover__social a:hover {
  color: var(--voldor-secondary, #241f21);
}
.team-card__content__hover__social a + a {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(244, 242, 238, 0.2);
}
.team-card__content__hover:hover .team-card__content__hover__social {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.team-card__content__svg {
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 0;
  left: 0;
}
.team-card__content__svg svg {
  transition: all 0.4s ease-in-out;
  fill: var(--voldor-border-color, #f4f2ee);
}
.team-card:hover .team-card__image::after {
  height: 100%;
}
.team-card:hover .team-card__content__svg svg {
  fill: #eac337;
}

.team-one {
  position: relative;
  z-index: 1;
}
.team-one--page {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .team-one--page {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .team-one--page {
    padding: 80px 0px;
  }
}
.team-one--home {
  background-color: var(--voldor-border-color, #f4f2ee);
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .team-one--home {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .team-one--home {
    padding: 80px 0px;
  }
}
.team-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}

.team-details {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
@media (min-width: 992px) {
  .team-details {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.team-details__image {
  display: inline-block;
  position: relative;
  margin-right: -30px;
}
.team-details__image img {
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .team-details__image {
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  .team-details__content {
    margin-top: 30px;
  }
}
@media (min-width: 1199px) {
  .team-details__content {
    padding-left: 50px;
  }
}
.team-details__content__subtitle {
  margin-top: -6px;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.18;
  font-family: var(--voldor-border-color, #f4f2ee);
}
.team-details__content__title {
  margin-top: -5px;
  font-size: 30px;
  margin-bottom: 22px;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 800;
  line-height: 125%;
  text-shadow: 0 0 0.1px currentColor;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .team-details__content__title {
    font-size: 40px;
  }
}
.team-details__content__text {
  color: var(--voldor-text, #797577);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
}
@media (min-width: 992px) {
  .team-details__content__text {
    margin-bottom: 30px;
  }
}
.team-details__content__highlight {
  background-color: var(--voldor-secondary, #241f21);
  position: relative;
  padding: 10px 20px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  border-left: 6px solid #eac337;
}
.team-details__content__highlight svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 315px;
  z-index: -1;
  height: 38px;
  fill: var(--voldor-text, #797577);
  transition: all 0.4s ease-in-out;
}
.team-details__content__highlight__text {
  max-width: 550px;
  display: block;
  width: 100%;
  color: var(--voldor-white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (min-width: 992px) {
  .team-details__content__highlight {
    padding: 22px 30px;
    margin-bottom: 38px;
  }
  .team-details__content__highlight__text {
    font-size: 20px;
  }
}
.team-details__content__highlight:hover {
  background: #eac337;
  border-left: 6px solid var(--voldor-secondary, #241f21);
}
.team-details__content__highlight:hover
  .team-details__content__highlight__text {
  color: var(--voldor-secondary, #241f21);
}
.team-details__content__highlight:hover svg {
  fill: #eac337;
}
.team-details__list {
  margin-bottom: 32px;
}
.team-details__list > li {
  margin-bottom: 13px;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.375;
}
.team-details__list > li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: var(--voldor-secondary, #241f21);
}
.team-details__list > li a:hover {
  background-size: 100% 1px;
}
.team-details__list > li a:hover {
  color: #eac337;
}
.team-details__list > li span {
  display: inline-block;
  color: var(--voldor-text, #797577);
}
.team-details__list > li:last-child {
  margin-bottom: 0;
}
.team-details__list > li i {
  color: #eac337;
  margin-right: 10px;
}
.team-details .team-skills {
  margin-bottom: 40px;
}
.team-details .team-skills__progress + .team-skills__progress {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .team-details .team-skills__progress + .team-skills__progress {
    margin-top: 34px;
  }
}
.team-details .team-skills__progress__title {
  margin-bottom: 12px;
  text-shadow: 0 0 0 0.1px currentColor;
  color: var(--voldor-secondary, #241f21);
  font-size: 18px;
  font-weight: 600;
  line-height: 144.444%;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.team-details .team-skills__progress__bar {
  width: 100%;
  height: 10px;
  position: relative;
  background-color: var(--voldor-border-color, #f4f2ee);
}
.team-details .team-skills__progress__inner {
  position: absolute;
  height: 10px;
  background-color: #eac337;
  transition: all 700ms linear;
  width: 0px;
}
.team-details .team-skills__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  margin-bottom: 8px;
  color: var(--voldor-text, #797577);
  font-size: 18px;
  font-weight: 500;
  line-height: 144.444%;
}
.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
.team-details__social a {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--voldor-border-color, #f4f2ee);
  font-size: 12px;
  color: var(--voldor-secondary, #241f21);
  line-height: 1;
  transition: all 500ms ease;
}
.team-details__social a:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}

.team-skills-one {
  padding: 120px 0 110px 0px;
}
@media (max-width: 767px) {
  .team-skills-one {
    padding: 60px 0;
  }
}
.team-skills-one__title {
  margin-bottom: 25px;
  color: var(--voldor-secondary, #241f21);
  font-size: 25px;
  font-family: "Mulish", serif;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 30px;
  }
}
.team-skills-one__text {
  max-width: 542px;
  width: 100%;
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
}
.team-skills-one__certificates {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 21px;
}
.team-skills-one__certificates__item {
  max-width: 176px;
  width: 100%;
  cursor: pointer;
}
.team-skills-one__certificates__item img {
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}
.team-skills-one__certificates__item:hover img {
  object-fit: cover;
  filter: grayscale(0%);
}
.team-skills-one__bottom {
  margin-top: 70px;
}
.team-skills-one__skill {
  padding-top: 45px;
  position: relative;
}
.team-skills-one__skill::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  clear: both;
  width: 110%;
  height: 1px;
  background-color: var(--voldor-gray, #e6e0d8);
}
@media (max-width: 767px) {
  .team-skills-one__skill::before {
    display: none;
  }
}
.team-skills-one__skill::after {
  position: absolute;
  top: 0%;
  left: 0;
  content: "";
  clear: both;
  width: 15px;
  height: 15px;
  border-radius: 500px;
  background-color: var(--voldor-secondary, #241f21);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .team-skills-one__skill::after {
    display: none;
  }
}
.team-skills-one__skill__start {
  display: block;
  margin-bottom: 10px;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.189;
}
.team-skills-one__skill__title {
  margin-bottom: 10px;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
  font-family: "Mulish", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.team-skills-one__skill__text {
  margin-bottom: 0;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.team-skills-one__skill:hover::after {
  background-color: #eac337;
}

.team-form-one {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .team-form-one {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .team-form-one {
    padding: 80px 0;
  }
}
.team-form-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.team-form-one .container {
  position: relative;
  max-width: 898px;
}
.team-form-one .sec-title {
  text-align: center;
}
.team-form-one .form-one .bootstrap-select > .dropdown-toggle,
.team-form-one .form-one input[type="text"],
.team-form-one .form-one input[type="email"],
.team-form-one .form-one textarea {
  background-color: var(--voldor-white, #fff);
}
.team-form-one .form-one textarea {
  height: 176px;
}
.team-form-one .form-one .ostech-btn {
  padding: 19px 40.5px;
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.team-form-one .form-one .ostech-btn::after {
  background: var(--voldor-secondary, #241f21);
}
.team-form-one__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: topBottom 4s ease-in-out infinite;
  mix-blend-mode: overlay;
}

.blog-card {
  position: relative;
  background-color: var(--voldor-white, #fff);
}
@media (max-width: 767px) {
  .blog-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-card__image {
  position: relative;
  overflow: hidden;
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 1000ms ease, transform 1000ms ease;
}
.blog-card__image__link::before,
.blog-card__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--voldor-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card__image img {
  width: 100%;
  object-fit: cover;
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card__content {
  margin-top: -130px;
  margin-left: 10px;
  margin-right: 10px;
  background-color: var(--voldor-border-color, #f4f2ee);
  position: relative;
  transition: all 500ms ease;
  padding: 16px 30px 18px;
}
@media (max-width: 400px) {
  .blog-card__content {
    padding: 20px 30px;
  }
}
.blog-card__content:hover {
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.06);
  background-color: var(--voldor-white, #fff);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  transition: all 0.4s ease-in-out;
  margin-bottom: 10px;
}
.blog-card__meta li {
  display: flex;
  align-items: center;
}
.blog-card__meta li i {
  color: #eac337;
  margin-right: 5px;
  font-size: 19px;
}
.blog-card__meta li a {
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 214%;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
}
.blog-card__meta li a:hover {
  color: #eac337;
  text-shadow: 0 0 1px currentColor;
}
.blog-card__date {
  position: relative;
  margin-top: -48px;
  background: var(--voldor-secondary, #241f21);
  display: flex;
  align-items: center;
}
.blog-card__date__day {
  background: #eac337;
  display: inline;
  padding: 9px 18px 12px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--voldor-white, #fff);
}
.blog-card__date__year {
  text-align: center;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2142;
  color: var(--voldor-white, #fff);
  padding: 0px 16px 0px;
  text-transform: uppercase;
}
.blog-card__date__year span {
  display: block;
  color: inherit;
}
.blog-card__title {
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 6px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 175%;
  text-transform: uppercase;
}
.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: #eac337;
}
.blog-card__link {
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 178.571%;
  position: relative;
  display: block;
  padding: 5px 0px;
  z-index: 1;
}
.blog-card__link:hover {
  color: #eac337;
}
.blog-card__link:hover::after {
  background: #eac337;
}
.blog-card__link i {
  font-size: 16px;
  position: absolute;
  right: 0;
  color: #eac337;
  top: 35%;
}
.blog-card__link::after {
  content: "";
  right: 40px;
  height: 1px;
  background: var(--voldor-gray, #e6e0d8);
  position: absolute;
  top: 55%;
  left: 95px;
  transition: all 0.4s ease-in-out;
}

.blog-card-fore {
  position: relative;
  background-color: var(--voldor-white, #fff);
  z-index: 1;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .blog-card-fore {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .blog-card-fore {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-card-fore--two {
  padding-bottom: 0;
}
.blog-card-fore--two::after {
  display: none;
}
@media (max-width: 991px) {
  .blog-card-fore--two {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .blog-card-fore--two {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog-card-fore__image {
  position: relative;
  overflow: hidden;
}
.blog-card-fore__image img {
  object-fit: cover;
  width: 100%;
}
.blog-card-fore__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 1000ms ease, transform 1000ms ease;
}
.blog-card-fore__image__link::before,
.blog-card-fore__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--voldor-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-fore__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-fore:hover .blog-card-fore__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-fore__content {
  margin-top: -124px;
  margin-left: 30px;
  margin-right: 30px;
  background-color: var(--voldor-white, #fff);
  position: relative;
  transition: all 500ms ease;
  padding: 26px 30px 20px;
  z-index: 1;
}
@media (max-width: 575px) {
  .blog-card-fore__content {
    padding: 30px 20px 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.blog-card-fore__content--two {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  margin-left: 0;
  margin-right: 60px;
  margin-top: -138px;
}
@media (max-width: 575px) {
  .blog-card-fore__content--two {
    margin-right: 20px;
  }
}
.blog-card-fore__content--two:hover {
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15) !important;
}
.blog-card-fore__content:hover {
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.06);
  background-color: var(--voldor-border-color, #f4f2ee);
}
.blog-card-fore__content__shape {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.blog-card-fore__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  transition: all 0.4s ease-in-out;
  margin-bottom: 4px;
}
.blog-card-fore__meta li {
  display: flex;
  align-items: center;
}
.blog-card-fore__meta li i {
  color: #eac337;
  margin-right: 5px;
  font-size: 19px;
}
.blog-card-fore__meta li a {
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 214%;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
}
.blog-card-fore__meta li a:hover {
  color: #eac337;
  text-shadow: 0 0 1px currentColor;
}
.blog-card-fore__date {
  position: relative;
  margin-top: -50px;
  background: var(--voldor-secondary, #241f21);
  display: flex;
  align-items: center;
}
.blog-card-fore__date--two {
  margin-top: -28px;
  margin-right: -30px;
}
@media (max-width: 575px) {
  .blog-card-fore__date--two {
    margin-top: -33px;
    margin-right: -20px;
  }
}
.blog-card-fore__date__day {
  background: #eac337;
  display: inline;
  padding: 9px 18px 12px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--voldor-white, #fff);
}
.blog-card-fore__date__year {
  text-align: center;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2142;
  color: var(--voldor-white, #fff);
  padding: 0px 16px 0px;
  text-transform: uppercase;
}
.blog-card-fore__date__year span {
  display: block;
  color: inherit;
}
.blog-card-fore__title {
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 175%;
  text-transform: uppercase;
}
.blog-card-fore__title--two {
  line-height: 150%;
  max-width: 300px;
}
.blog-card-fore__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-fore__title a:hover {
  background-size: 100% 1px;
}
.blog-card-fore__title a:hover {
  color: #eac337;
}
.blog-card-fore__link {
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 178.571%;
  position: relative;
  display: block;
  padding: 5px 0px;
  z-index: 1;
}
.blog-card-fore__link:hover {
  color: #eac337;
}
.blog-card-fore__link:hover::after {
  background: #eac337;
}
.blog-card-fore__link i {
  font-size: 16px;
  position: absolute;
  right: 0;
  color: #eac337;
  top: 35%;
}
.blog-card-fore__link::after {
  content: "";
  right: 40px;
  height: 1px;
  background: var(--voldor-gray, #e6e0d8);
  position: absolute;
  top: 55%;
  left: 95px;
  transition: all 0.4s ease-in-out;
}
.blog-card-fore::after {
  content: "";
  height: 300px;
  left: 0;
  bottom: 0;
  right: 30px;
  position: absolute;
  background: #eac337;
  z-index: -1;
}

.blog-card-two {
  position: relative;
  background-color: var(--voldor-white, #fff);
}
.blog-card-two__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.blog-card-two__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 1000ms ease, transform 1000ms ease;
}
.blog-card-two__image__link::before,
.blog-card-two__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--voldor-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-two__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-two__image:hover > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-two__date {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--voldor-secondary, #241f21);
  display: flex;
  align-items: center;
}
.blog-card-two__date__day {
  background: #eac337;
  display: inline;
  padding: 9px 18px 12px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--voldor-white, #fff);
}
.blog-card-two__date__year {
  text-align: center;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2142;
  color: var(--voldor-white, #fff);
  padding: 0px 16px 0px;
  text-transform: uppercase;
}
.blog-card-two__date__year span {
  display: block;
  color: inherit;
}
.blog-card-two__content {
  position: relative;
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  margin: 7px;
  transition: all 0.4s ease-in-out;
}
.blog-card-two__meta li:not(:first-child)::before {
  content: "|";
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 500;
  color: #6d7076;
  opacity: 0.5;
}
.blog-card-two__meta li a {
  color: var(--voldor-text, #797577);
  font-size: 14px;
  font-weight: 600;
  line-height: 214.286%;
  text-transform: uppercase;
}
.blog-card-two__meta li a i {
  font-size: 15px;
  color: #eac337;
  margin-right: 5px;
}
.blog-card-two__title {
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 20px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.8333333333;
}
.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: #eac337;
}
.blog-card-two__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
}
.blog-card-two__link {
  margin-top: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--voldor-secondary, #241f21);
}
.blog-card-two__link:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}
.blog-card-two__link:hover i {
  animation: iconTranslateX 0.4s forwards;
}

.blog-card-three {
  position: relative;
  background-color: transparent;
}
.blog-card-three__image {
  position: relative;
  overflow: hidden;
}
.blog-card-three__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card-three__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-three__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-three__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--voldor-black-rgb, 18, 15, 16), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-three__image__link::before,
.blog-card-three__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--voldor-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-three__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-three:hover .blog-card-three__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-three:hover .blog-card-three__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-three:hover .blog-card-three__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-three__date {
  width: 74px;
  height: auto;
  background-color: #eac337;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 14px 20px 16px;
  top: 30px;
  right: 30px;
  position: absolute;
  z-index: 10;
  text-transform: uppercase;
  flex-direction: column;
  color: var(--voldor-text-gray, #958f91);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.blog-card-three__date span {
  margin-top: -2px;
  display: block;
  font-size: 30px;
  font-weight: 700;
}
.blog-card-three__content {
  margin-top: -130px;
  background-color: var(--voldor-white, #fff);
  position: relative;
  transition: all 500ms ease;
  z-index: 1;
  margin-right: 20px;
  transition: all 0.4s ease-in-out;
}
.blog-card-three__content__inner {
  padding: 30px;
}
.blog-card-three__title {
  color: var(--voldor-text-gray, #958f91);
  font-size: 24px;
  font-weight: 700;
  line-height: 145.833%;
  margin-bottom: 2px;
}
.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: #eac337;
}
.blog-card-three__link {
  color: var(--voldor-text-gray, #958f91);
  font-size: 14px;
  font-weight: 600;
  line-height: 178.571%;
  position: relative;
  display: block;
  padding: 5px 0px 0px;
  margin-bottom: -2px;
  z-index: 1;
}
.blog-card-three__link:hover {
  color: #eac337;
}
.blog-card-three__link:hover::after {
  background: #eac337;
}
.blog-card-three__link i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 35%;
}
.blog-card-three__link::after {
  content: "";
  right: 40px;
  height: 1px;
  background: var(--voldor-border-color, #f4f2ee);
  position: absolute;
  top: 55%;
  left: 95px;
  transition: all 0.4s ease-in-out;
}
.blog-card-three__meta {
  margin-bottom: 6px;
  margin-top: -5px;
  transition: all 0.4s ease-in-out;
}
.blog-card-three__meta li {
  color: var(--voldor-text, #797577);
  display: flex;
  align-items: center;
}
.blog-card-three__meta li i {
  color: #eac337;
  margin-right: 5px;
  font-size: 19px;
}
.blog-card-three__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
}
.blog-card-three__meta li a:hover {
  color: #eac337;
  text-shadow: 0 0 1px currentColor;
}
.blog-card-three:hover .blog-card-three__content {
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.06);
}

.blog-one {
  position: relative;
  background: var(--voldor-white, #fff);
}
.blog-one--page {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .blog-one--page {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .blog-one--page {
    padding: 80px 0px;
  }
}
.blog-one--home {
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 120px 0px 0;
}
@media (max-width: 991px) {
  .blog-one--home {
    padding: 100px 0px 0;
  }
}
@media (max-width: 767px) {
  .blog-one--home {
    padding: 80px 0px 0;
  }
}

.blog-three {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .blog-three {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .blog-three {
    padding: 80px 0px;
  }
}
.blog-three__item + .blog-three__item {
  margin-top: 33px;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.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: 16px;
}
.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(--voldor-text, #797577);
  font-size: 16px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type="text"],
.form-one input[type="email"],
.form-one textarea {
  display: block;
  width: 100%;
  height: 58px;
  background-color: var(--voldor-border-color, #f4f2ee);
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  font-family: "Mulish", serif;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.form-one textarea {
  height: 195px;
  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;
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  background: var(--voldor-secondary, #241f21);
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-footer {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 70px;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  animation: scale 10s infinite;
}
.main-footer__middle {
  margin-top: -3px;
  position: relative;
  z-index: 1;
  padding-bottom: 104px;
}
@media (max-width: 991px) {
  .main-footer__middle {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .main-footer__middle {
    padding-bottom: 20px;
  }
}
.main-footer__bottom {
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  background: var(--voldor-secondary, #241f21);
}
.main-footer__bottom__inner {
  text-align: center;
  padding: 30.5px 0px;
}
.main-footer__copyright {
  color: var(--voldor-text-gray, #958f91);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Mulish", serif;
}
.main-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-footer__social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  background: rgba(121, 117, 119, 0.2);
  color: var(--voldor-white, #fff);
}
.main-footer__social a:hover {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.main-footer__logo {
  margin-bottom: 20px;
}
.main-footer__logo a {
  display: block;
}

@media (max-width: 991px) {
  .footer-widget {
    margin-bottom: 40px;
  }
}
.footer-widget__title {
  color: var(--voldor-white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 27px;
}
.footer-widget__text {
  color: var(--voldor-text-gray, #958f91);
  font-size: 14px;
  font-weight: 500;
  line-height: 214.286%;
  margin-bottom: 22px;
}
.footer-widget__links {
  margin-top: -9px;
}
.footer-widget__links__item {
  color: var(--voldor-text-gray, #958f91);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  font-family: "Mulish", serif;
}
.footer-widget__links__item a {
  color: inherit;
  font-family: "Mulish", serif;
}
.footer-widget__links__item::after {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background: #eac337;
  transition: all 0.4s ease-in-out;
}
.footer-widget__links__item:hover {
  color: #eac337;
  padding-left: 18px;
}
.footer-widget__links__item:hover::after {
  width: 10px;
}
.footer-widget__links__item + .footer-widget__links__item {
  margin-top: 5px;
}
.footer-widget__instagram {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
}
.footer-widget__instagram a {
  width: 100%;
  position: relative;
  display: block;
  z-index: 1;
}
.footer-widget__instagram a img {
  object-fit: cover;
  width: 100%;
  position: relative;
}
.footer-widget__instagram a::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "+";
  margin: auto;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 400;
  color: var(--voldor-white, #fff);
  transform: scale(0);
  opacity: 0;
  transition: all 500ms ease;
  transition-delay: 0s;
  z-index: 2;
}
.footer-widget__instagram a::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  transition: all 0.4s ease-in-out;
}
.footer-widget__instagram a:hover::after {
  height: 100%;
}
.footer-widget__instagram a:hover::before {
  transform: scale(1);
  transition-delay: 400ms;
  opacity: 1;
}
.footer-widget__contact {
  margin-top: -4px;
}
.footer-widget__contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget__contact__item:hover .footer-widget__contact__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.footer-widget__contact__item a:hover {
  color: #eac337;
}
.footer-widget__contact__item + .footer-widget__contact__item {
  margin-top: 10px;
}
.footer-widget__contact__icon {
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  background: rgba(121, 117, 119, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eac337;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.footer-widget__contact__text {
  color: var(--voldor-text-gray, #958f91);
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 214.286%;
  font-family: "Mulish", serif;
}
.footer-widget__contact p {
  line-height: 150.286%;
}
.footer-widget__contact__text + .footer-widget__contact__text {
  margin-top: -9px;
}
.footer-widget--about {
  margin-right: 27px;
  position: relative;
}
.footer-widget--about .footer-widget__text {
  margin-top: -9px;
  max-width: 290px;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-widget--about {
    margin-right: 0;
  }
}
.footer-widget--about::after {
  content: "";
  width: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 237%;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -72%;
  right: 0;
}
@media (max-width: 1199px) {
  .footer-widget--about::after {
    display: none;
  }
}
.footer-widget--links {
  margin-left: 35px;
}
@media (max-width: 1199px) {
  .footer-widget--links {
    margin-left: 0;
  }
}
.footer-widget--instagram {
  max-width: 248px;
  margin-left: -10px;
}
@media (max-width: 1199px) {
  .footer-widget--instagram {
    margin-left: 0;
  }
}
.footer-widget--contact {
  margin-left: 10px;
}
@media (max-width: 1199px) {
  .footer-widget--contact {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .contact-one {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0px;
  }
}
.contact-one__form {
  max-width: 868px;
  margin-left: auto;
  margin-right: auto;
}

.contact-bottom__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  margin-bottom: -70px;
}
@media (max-width: 991px) {
  .contact-bottom__inner {
    flex-direction: column;
  }
}
.contact-bottom__inner__left {
  max-width: 226px;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .contact-bottom__inner__left {
    width: 100%;
  }
}
.contact-bottom__inner__right {
  width: 100%;
}
.contact-bottom__inner__right__bottom {
  padding: 58.5px 40px;
  background: var(--voldor-secondary, #241f21);
}
.contact-bottom__thumb {
  width: 100%;
}
.contact-bottom__thumb img {
  object-fit: cover;
  width: 100%;
}
.contact-bottom__social {
  background: #eac337;
  display: inline-flex;
  padding: 12px 20px;
  align-items: center;
  gap: 12px;
}
.contact-bottom__social a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--voldor-white, #fff);
  background: rgba(230, 224, 216, 0.17);
}
.contact-bottom__social a:hover {
  background: var(--voldor-secondary, #241f21);
  color: #eac337;
}
.contact-bottom__list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-bottom__list__item {
  flex: 30%;
  width: 30%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .contact-bottom__list__item {
    flex: 50%;
    width: 50%;
  }
}
.contact-bottom__list__item__icon {
  max-width: 50px;
  width: 100%;
  height: 50px;
  border-radius: 50%;
  background: #eac337;
  color: var(--voldor-white, #fff);
  font-size: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.contact-bottom__list__item__subtitle {
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: var(--voldor-text, #797577);
  text-transform: uppercase;
}
.contact-bottom__list__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: var(--voldor-white, #fff);
}
.contact-bottom__list__item__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-bottom__list__item__text a:hover {
  background-size: 100% 1px;
}
.contact-bottom__list__item__text a:hover {
  color: #eac337;
}
.contact-bottom__list__item:hover .contact-bottom__list__item__icon i {
  animation: bounceIn 1s linear;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  background-color: var(--voldor-secondary, #241f21);
}
@media (min-width: 992px) {
  .topbar-one {
    display: block;
  }
}
.topbar-one .container-fluid {
  max-width: 1760px;
}
.topbar-one__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  font-family: "Mulish", serif;
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item a:hover {
  color: var(--voldor-white, #fff);
}
.topbar-one__info__item + .topbar-one__info__item {
  margin-left: 50px;
}
.topbar-one__info__icon {
  font-size: 14px;
  color: #eac337;
  position: relative;
  top: 2px;
  margin-right: 9px;
}
.topbar-one__right {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.05);
  position: relative;
}
@media (min-width: 992px) {
  .topbar-one__right {
    margin-top: 0;
    margin-left: auto;
  }
}
.topbar-one__right::after {
  content: "";
  background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.05);
  width: 9999999px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}
.topbar-one__social {
  display: flex;
  align-items: center;
  padding: 3.5px 0;
  padding-left: 48px;
  line-height: 1em;
}
.topbar-one__social a {
  font-size: 14px;
  color: var(--voldor-border-color, #f4f2ee);
  transition: all 500ms ease;
}
.topbar-one__social a:hover {
  color: #eac337;
}
.topbar-one__social a + a {
  margin-left: 20px;
}
.topbar-one__social a:nth-child(2),
.topbar-one__social a:nth-child(4) {
  font-size: 12px;
}

.topbar-three {
  display: none;
  background-color: var(--voldor-secondary, #241f21);
}
@media (min-width: 992px) {
  .topbar-three {
    display: block;
  }
}
.topbar-three .container-fluid {
  max-width: 1760px;
}
.topbar-three__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.topbar-three__info {
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 15px;
}
.topbar-three__info__item {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  font-family: "Mulish", serif;
}
.topbar-three__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-three__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-three__info__item a:hover {
  color: var(--voldor-white, #fff);
}
.topbar-three__info__item + .topbar-three__info__item {
  margin-left: 50px;
}
.topbar-three__info__icon {
  font-size: 12px;
  color: #eac337;
  position: relative;
  top: 0px;
  margin-right: 5px;
}
.topbar-three__right {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.02);
  position: relative;
}
@media (min-width: 992px) {
  .topbar-three__right {
    margin-top: 0;
    margin-left: auto;
  }
}
.topbar-three__right::after {
  content: "";
  background: rgba(var(--voldor-border-color-rgb, 244, 242, 238), 0.02);
  width: 9999999px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}
@media (max-width: 1500px) {
  .topbar-three__right {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.topbar-three__social {
  display: flex;
  align-items: center;
  padding: 3.5px 0;
  padding-left: 48px;
  line-height: 1em;
}
.topbar-three__social a {
  font-size: 14px;
  color: #eac337;
  transition: all 500ms ease;
}
.topbar-three__social a:hover {
  color: #eac337;
}
.topbar-three__social a + a {
  margin-left: 20px;
}
.topbar-three__social a:nth-child(2),
.topbar-three__social a:nth-child(4) {
  font-size: 12px;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background-color: var(--voldor-white, #fff);
  position: relative;
}
.main-header .container-fluid {
  max-width: 1760px;
}
.main-header__inner {
  display: flex;
  align-items: center;
  background-color: var(--voldor-white, #fff);
  position: relative;
}
@media (max-width: 767px) {
  .main-header__inner {
    padding: 10px 0px;
  }
}
.main-header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 35px;
}

@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}
@media (min-width: 768px) {
  .main-header__logo .mobile-nav__btn {
    margin-left: 30px;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header__right__info__item {
  font-size: 20px;
  color: var(--voldor-secondary, #241f21);
}
.main-header__right__info__item:hover {
  color: #eac337;
}
@media (max-width: 767px) {
  .main-header__right__info__item {
    display: none;
  }
}
.main-header__right__info__item + .main-header__right__info__item {
  margin-left: 20px;
}
.main-header__right__btn {
  padding: 22px 0px;
  margin-left: 40px;
  position: relative;
  z-index: 1;
  padding-left: 45px;
  background: #eac337;
}
@media (max-width: 767px) {
  .main-header__right__btn {
    display: none;
  }
}
.main-header__right__btn::after {
  content: "";
  background: #eac337;
  width: 9999999px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}
@media (max-width: 767px) {
  .main-header__right__btn::after {
    display: none;
  }
}
.main-header__right__call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 15px;
  border-right: 1px solid rgba(var(--voldor-white-rgb, 255, 255, 255), 0.2);
  /* margin-right: 30px; */
}
@media (max-width: 767px) {
  .main-header__right__call {
    display: none;
  }
}
.main-header__right__call:hover .main-header__right__icon {
  background: var(--voldor-white, #fff);
  color: var(--voldor-secondary, #241f21);
}
.main-header__right__icon {
  width: 40px;
  height: 40px;
  background: #b78f01;
  color: var(--voldor-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.main-header__right__text {
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  color: var(--voldor-border-color, #f4f2ee);
  text-transform: uppercase;
}
.main-header__right__number {
  color: var(--voldor-white, #fff);
  font-size: 16px;
  font-weight: 600;
  line-height: 166.667%;
  padding-bottom: 0;
  margin-bottom: 0;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__right__number:hover {
  background-size: 100% 1px;
}
.main-header__right__number:hover {
  color: var(--voldor-secondary, #241f21);
}
.main-header__btn {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--voldor-border-color, #f4f2ee);
  background: #eac337;
  border: 1px solid var(--voldor-white, #fff);
}
.main-header__btn:hover {
  color: var(--voldor-white, #fff);
  border: 1px solid var(--voldor-secondary, #241f21);
}
.main-header__nav {
  margin-left: 113px;
  margin-right: auto;
}
.main-header--two {
  background: transparent;
  border-bottom: 1px solid rgba(var(--voldor-text-rgb, 121, 117, 119), 0.1);
  position: absolute;
  width: 100%;
  z-index: 11;
  padding-top: 3px;
  padding-bottom: 3px;
}
.main-header--two .main-header__inner {
  background: transparent;
}
.main-header--two .main-header__right {
  background: #eac337;
  /* padding: 10px 0px 10px 10px; */
  margin-bottom: -1px;
  margin-right: -1px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .main-header--two .main-header__right {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .main-header--two .main-header__right::after {
    display: none;
  }
}
.main-header--two .main-header__nav {
  margin-inline: auto;
}
.main-header--two .main-header__right__info__item {
  color: var(--voldor-white, #000);
}
.main-header--two .main-header__right__info__item:hover {
  color: var(--voldor-secondary, #241f21);
}
.main-header--two .main-menu .main-menu__list > li > a {
  color: var(--voldor-white, #000);
}
@media (max-width: 767px) {
  .main-header--two .mobile-nav__btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.main-header--three {
  background: transparent;
}
.main-header--three .container {
  position: relative;
}
.main-header--three .main-header__inner {
  margin-top: -35px;
  padding: 0px 30px;
  position: absolute;
  left: 15px;
  right: 15px;
  z-index: 55;
}
@media (max-width: 1500px) {
  .main-header--three .main-header__inner {
    position: relative;
    margin-top: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    padding: 10px 15px;
  }
}
.main-header--three .mobile-nav__btn span {
  background: var(--voldor-secondary, #241f21);
}
.main-header--three .main-header__nav {
  margin-left: 60px;
  margin-right: auto;
}
.main-header--three .main-header__right__btn {
  padding: 0px 0px;
  margin-left: 0px;
  background: transparent;
}
.main-header--three .main-header__right__btn::after {
  display: none;
}
.main-header--three .main-header__right__btn .main-header__btn {
  padding: 11px 15px;
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 23px;
  padding-bottom: 23px;
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--voldor-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--voldor-black-rgb, 18, 15, 16), 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;
  transition: 0.3s all;
}

/* .main-header--two.active {
  border-bottom: 1px solid var(--voldor-secondary, #241f21);
  background: var(--voldor-secondary, #241f21);
} */

.main-header--three.active .main-header__inner {
  position: relative;
  left: 0;
  right: 0;
  margin-top: 0;
  padding: 0px;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: 30px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--voldor-white, #fff);
  transition: all 0.4s ease-in-out;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .mobile-nav__btn span {
    background: var(--voldor-secondary, #241f21);
  }
}
.mobile-nav__btn:hover span {
  background: var(--voldor-secondary, #241f21);
}

.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: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 22px;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 25px;
  }
}
.main-menu .main-menu__list > li > a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.87;
  color: #686a6f;
  font-family: "Mulish", serif;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: #eac337;
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 290px;
  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: #f3f3f3;
  padding: 25px 20px 20px;
  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: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  margin-bottom: 8px;
}
.main-menu .main-menu__list li ul li > a {
  color: #000;
  font-family: "Mulish", serif;
  display: flex;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: 400ms;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2142;
  text-transform: uppercase;
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--voldor-white, #fff);
  color: #eac337;
}
.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;
}

.sub-menu .dropdown::before {
  position: absolute;
  right: 20px;
  top: 12px;
  transform: translate(10px 10px);
  font-weight: 500;
  color: #eac337;
  visibility: hidden;
  opacity: 0;
  font-size: 15px;
  transition: all 500ms ease;
  transform: scaleX(0);
  font-family: "icomoon" !important;
  content: "\e91f";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.sub-menu .dropdown:hover::before {
  visibility: visible;
  opacity: 1;
  transform: scaleX(1);
}

@media (min-width: 1200px) 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(--voldor-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(--voldor-black, #120f10);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: #eac337;
}
.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(--voldor-border-color, #f4f2ee);
  box-shadow: 0px 10px 60px 0px rgba(var(--voldor-black3-rgb, 34, 28, 30), 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: 16px;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}
.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(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  font-size: 13px;
  padding: 12px 29px;
  background: #eac337;
  color: var(--voldor-white, #fff);
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__btn:hover {
  color: var(--voldor-white, #fff);
}
.demo-one__btn:hover::after {
  background: var(--voldor-secondary, #241f21);
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase {
  margin-top: 0px;
  margin-bottom: -20px;
  margin-left: 82px;
}
@media (max-width: 1299px) {
  .home-showcase {
    margin-left: 0;
  }
}
.home-showcase .container {
  max-width: 1360px;
}
.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--voldor-border-color, #f4f2ee);
  box-shadow: 0px 10px 60px 0px
    rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  background: var(--voldor-border-color, #f4f2ee);
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .why-choose-one {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .why-choose-one {
    padding-top: 80px;
  }
}
.why-choose-one__top {
  max-width: 550px;
  width: 100%;
  margin-bottom: 30px;
}
.why-choose-one__top .sec-title {
  padding-bottom: 20px;
}
.why-choose-one__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.why-choose-one__feature {
  margin-bottom: 30px;
}
.why-choose-one__feature__item {
  background: var(--voldor-white, #fff);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 30px;
}
@media (max-width: 575px) {
  .why-choose-one__feature__item {
    padding: 20px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.why-choose-one__feature__item__icon {
  max-width: 60px;
  width: 100%;
  height: 60px;
  border-radius: 50%;
  background: var(--voldor-border-color, #f4f2ee);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: #eac337;
  transition: all 0.4s ease-in-out;
}
.why-choose-one__feature__item__title {
  margin-top: -7px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-bottom: 0;
}
.why-choose-one__feature__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  margin-bottom: -9px;
  padding-bottom: 0;
}
.why-choose-one__feature__item:hover .why-choose-one__feature__item__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.why-choose-one__feature__item:hover .why-choose-one__feature__item__icon i {
  animation: bounceIn 1s linear;
}
.why-choose-one__cta {
  position: relative;
  z-index: 2;
  margin-bottom: -60px;
}
@media (max-width: 1199px) {
  .why-choose-one__cta {
    margin-bottom: 0;
  }
}
.why-choose-one__cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.why-choose-one__cta__bg::after {
  position: absolute;
  content: "";
  right: 145px;
  top: 0;
  left: 0;
  bottom: 30px;
  background: var(--voldor-secondary, #241f21);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
}
@media (max-width: 575px) {
  .why-choose-one__cta__bg::after {
    width: 100%;
    right: 0;
    bottom: 0;
    clip-path: none;
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  }
}
.why-choose-one__cta__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 50px 50px 70px;
}
@media (max-width: 575px) {
  .why-choose-one__cta__content {
    display: block;
    padding: 30px;
  }
}
.why-choose-one__cta__title {
  margin-top: -15px;
  max-width: 311px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 167%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .why-choose-one__cta__title {
    max-width: 100%;
    font-size: 25px;
  }
}
.why-choose-one__cta__btn {
  background: var(--voldor-white, #fff);
  color: var(--voldor-secondary, #241f21);
}
.why-choose-one__cta__btn:hover {
  color: var(--voldor-white, #fff);
}
@media (max-width: 575px) {
  .why-choose-one__cta__video {
    margin-top: 50px;
  }
}
.why-choose-one__cta__video .video_play {
  background: rgba(var(--voldor-white-rgb, 255, 255, 255), 0.9);
  width: 103px;
  height: 103px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: var(--voldor-secondary, #241f21);
  line-height: 1;
  animation: playVideo5 3s ease-in-out infinite;
}
.why-choose-one__cta__video .video_play:hover {
  background: var(--voldor-secondary, #241f21);
  color: var(--voldor-white, #fff);
}
.why-choose-one__thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 1199px) {
  .why-choose-one__thumb {
    margin-top: 40px;
    position: relative;
    width: 100%;
  }
  .why-choose-one__thumb img {
    object-fit: cover;
    width: 100%;
  }
}

.why-choose-two {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .why-choose-two {
    padding: 0px 0 120px;
  }
}
@media (max-width: 991px) {
  .why-choose-two {
    padding: 0px 0 100px;
  }
}
@media (max-width: 767px) {
  .why-choose-two {
    padding: 0px 0 80px;
  }
}
.why-choose-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  mix-blend-mode: luminosity;
  background-color: var(--voldor-secondary, #241f21);
}
.why-choose-two__thumb {
  position: absolute;
  top: -48px;
  left: 0;
  width: 48.5%;
}
@media (max-width: 1199px) {
  .why-choose-two__thumb {
    top: 0;
    position: relative;
    width: 100%;
  }
}
.why-choose-two__thumb__item {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .why-choose-two__thumb__item {
    top: 0;
    position: relative;
    width: 100%;
  }
}
.why-choose-two__thumb__item img {
  object-fit: cover;
}
@media (max-width: 1199px) {
  .why-choose-two__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.why-choose-two__thumb__item::after {
  content: "";
  width: 130px;
  height: 200px;
  background: var(--voldor-secondary, #241f21);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .why-choose-two__thumb__item::after {
    display: none;
  }
}
.why-choose-two__thumb::before {
  content: "";
  width: 57px;
  height: 48px;
  background-color: var(--voldor-text, #797577);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  right: -57px;
  top: 0;
}
@media (max-width: 1199px) {
  .why-choose-two__thumb::before {
    display: none;
  }
}
.why-choose-two__right {
  margin-left: 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .why-choose-two__right {
    margin-top: 30px;
    margin-left: 0;
  }
}
.why-choose-two__top {
  margin-bottom: 40px;
}
.why-choose-two__top .sec-title {
  padding-bottom: 20px;
}
.why-choose-two__top .sec-title .sec-title__title {
  color: var(--voldor-white, #fff);
}
.why-choose-two__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-border-color, #f4f2ee);
}
.why-choose-two__feature__item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 550px;
  width: 100%;
}
.why-choose-two__feature__item__content {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .why-choose-two__feature__item__content {
    display: block;
  }
}
.why-choose-two__feature__item__icon {
  max-width: 60px;
  width: 100%;
  height: 60px;
  background: rgba(121, 117, 119, 0.2);
  font-size: 30px;
  color: #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.why-choose-two__feature__item__title {
  font-family: "Mulish", serif;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--voldor-white, #fff);
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 90px;
  width: 100%;
}
@media (max-width: 575px) {
  .why-choose-two__feature__item__title {
    max-width: 100%;
    margin-right: 0px;
    padding-right: 0px;
    border-right: 0px solid var(--voldor-text, #797577);
    margin-bottom: 5px;
  }
}
.why-choose-two__feature__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 333px;
  width: 100%;
}
@media (max-width: 575px) {
  .why-choose-two__feature__item__text {
    max-width: 100%;
  }
}
.why-choose-two__feature__item:hover .why-choose-two__feature__item__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.why-choose-two__feature__item:hover .why-choose-two__feature__item__icon i {
  animation: bounceIn 1s linear;
}
.why-choose-two__feature__item + .why-choose-two__feature__item {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--voldor-text, #797577);
}
.why-choose-two__funfact {
  margin-left: -171px;
  margin-top: 60px;
  margin-bottom: -95px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .why-choose-two__funfact {
    margin-left: 0px;
    margin-bottom: 0px;
  }
}
.why-choose-two__funfact__item {
  background: var(--voldor-white, #fff);
  text-align: center;
  padding-bottom: 50px;
}
.why-choose-two__funfact__item__icon {
  border: 1px solid #eac337;
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 103px;
  height: 89px;
  font-size: 52px;
  color: #eac337;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.why-choose-two__funfact__item__count {
  font-family: "Mulish", serif;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  display: flex;
  align-items: center;
  line-height: 150%;
  margin-bottom: 12px;
  padding-bottom: 0;
  justify-content: center;
}
.why-choose-two__funfact__item__text {
  font-family: "Mulish", serif;
  color: var(--voldor-text, #797577);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 138%;
  text-transform: uppercase;
  margin-bottom: -11px;
}
.why-choose-two__funfact__item:hover .why-choose-two__funfact__item__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.why-choose-two__funfact__item:hover .why-choose-two__funfact__item__icon i {
  animation: bounceIn 1s linear;
}

.why-choose-three {
  padding: 50px 0px 65px;
}

@media (max-width: 991px) {
  .why-choose-three {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .why-choose-three {
    padding: 80px 0px;
  }
}
.why-choose-three__top {
  margin-bottom: 20px;
}
.why-choose-three__top .sec-title {
  padding-bottom: 20px;
}
.why-choose-three__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 170%;
  color: var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: justify;
}
.why-choose-three__funfact {
  margin-bottom: 30px;
}
.why-choose-three__funfact__item {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #eac337;
  padding: 15px;
  transition: all 0.4s ease-in-out;
}
.why-choose-three__funfact__item__icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--voldor-white, #fff);
  font-size: 35px;
  color: #eac337;
  transition: all 0.4s ease-in-out;
}
.why-choose-three__funfact__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 214%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: -3px;
}
.why-choose-three__funfact__item__count {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 75%;
  color: var(--voldor-secondary, #241f21);
  display: flex;
  align-items: center;
  margin-bottom: -2px;
}
.why-choose-three__funfact__item:hover {
  background: #fffae9;
}
.why-choose-three__funfact__item:hover .why-choose-three__funfact__item__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.why-choose-three__funfact__item:hover
  .why-choose-three__funfact__item__icon
  i {
  animation: bounceIn 1s linear;
}
.why-choose-three__list {
  margin-bottom: 25px;
  margin-left: 0;
  padding-left: 0;
}

.why-choose-three__list__item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.why-choose-three__list__item__icon {
  max-width: 34px;
  width: 100%;
  height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--voldor-border-color, #f4f2ee);
  color: #eac337;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.why-choose-three__list__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
}
.why-choose-three__list__item:hover .why-choose-three__list__item__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.why-choose-three__right__funfact__item {
  position: absolute;
  bottom: 60px;
  left: -100px;
  background: #eac337;
  text-align: start;
  display: inline-block;
  padding: 15px;
  transform: rotate(-90deg);
}
@media (max-width: 575px) {
  .why-choose-three__right__funfact__item {
    transform: rotate(0deg);
    position: relative;
    left: 0;
    bottom: 0;
    text-align: left;
    width: 100%;
  }
}
.why-choose-three__right__funfact__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: -5px;
  padding-bottom: 0;
}
.why-choose-three__right__funfact__item__count {
  display: flex;
  justify-content: start;
  align-items: center;
  font-family: "Mulish", serif;
  padding-bottom: 0;
  color: var(--voldor-white, #fff);
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 85%;
}
.why-choose-three__thumb {
  text-align: end;
  margin-left: 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .why-choose-three__thumb {
    margin-left: 0;
  }
}
.why-choose-three__thumb__item--one {
  position: relative;
}
@media (max-width: 767px) {
  .why-choose-three__thumb__item--one img {
    object-fit: cover;
    width: 100%;
  }
}
.why-choose-three__thumb__item--two {
  position: absolute;
  top: 32px;
  left: -80px;
}
@media (max-width: 575px) {
  .why-choose-three__thumb__item--two {
    top: 20px;
    left: 0px;
    position: relative;
    bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .testimonials-one {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .testimonials-one {
    padding: 80px 0px;
  }
}
.testimonials-one--page {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .testimonials-one--page {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .testimonials-one--page {
    padding-bottom: 0;
  }
}
.testimonials-one__item {
  padding-top: 65px;
  position: relative;
}
.testimonials-one__inner {
  background: var(--voldor-secondary, #241f21);
  padding: 1px 80px 40px 40px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .testimonials-one__inner {
    padding: 1px 60px 20px 20px;
  }
}
.testimonials-one__inner::after {
  content: "";
  width: 40px;
  height: 212px;
  background: var(--voldor-white, #fff);
  position: absolute;
  bottom: -0.9px;
  right: -0.9px;
  z-index: -1;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}
.testimonials-one__inner:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.testimonials-one__inner:hover .testimonials-one__author {
  background: #eac337;
}
.testimonials-one__inner:hover .testimonials-one__author__name {
  color: var(--voldor-white, #fff);
}
.testimonials-one__inner:hover .testimonials-one__author__dec {
  color: var(--voldor-white, #fff);
}
.testimonials-one__thumb {
  position: relative;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 43px;
  margin-top: -55px;
}
.testimonials-one__thumb img {
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
  border: 6px solid #eac337;
}
.testimonials-one__thumb::after {
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: var(--voldor-white, #fff);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.15);
  z-index: -2;
}
.testimonials-one__author {
  margin-top: -64px;
  background: var(--voldor-border-color, #f4f2ee);
  padding: 35px 40px;
  display: inline-block;
  border-radius: 20px 0px 0px 0px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .testimonials-one__author {
    padding: 20px;
    margin-top: -40px;
  }
}
.testimonials-one__author__name {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  line-height: 108%;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .testimonials-one__author__name {
    font-size: 20px;
  }
}
.testimonials-one__author__dec {
  display: block;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 179%;
  color: var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.testimonials-one__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  margin-bottom: 20px;
  padding-bottom: 0;
}
.testimonials-one__star {
  font-size: 22px;
  color: #eac337;
  letter-spacing: 2px;
  margin-bottom: -10px;
}

.testimonials-two {
  padding-top: 217px;
  padding-bottom: 0px;
  background: var(--voldor-border-color, #f4f2ee);
}
@media (max-width: 991px) {
  .testimonials-two {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .testimonials-two {
    padding-top: 0px;
  }
}
.testimonials-two__left {
  margin-left: -49px;
  margin-right: -30px;
}
@media (max-width: 1199px) {
  .testimonials-two__left {
    margin-left: 0;
    margin-right: 0;
  }
  .testimonials-two__left img {
    object-fit: cover;
    width: 100%;
  }
}
.testimonials-two__top {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .testimonials-two__top {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .testimonials-two__top {
    margin-left: 0px;
  }
}
.testimonials-two__inner {
  background: var(--voldor-secondary, #241f21);
  padding: 60px;
  position: relative;
  margin-top: -3px;
}
.testimonials-two__inner::after {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 33px;
  background: #342d30;
}
@media (max-width: 767px) {
  .testimonials-two__inner {
    padding: 30px 20px;
  }
}
.testimonials-two__item__star {
  font-size: 32px;
  color: #eac337;
  letter-spacing: 8px;
  text-align: center;
  margin-bottom: 15px;
}
.testimonials-two__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  text-align: center;
  margin-bottom: 45px;
}
.testimonials-two__item__author {
  text-align: center;
  position: relative;
}
.testimonials-two__item__name {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 0;
  padding-bottom: 0;
}
.testimonials-two__item__deg {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 179%;
  text-transform: uppercase;
  color: var(--voldor-text, #797577);
}
.testimonials-two__author__carousel {
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  z-index: 2;
  left: 24%;
}
@media (max-width: 575px) {
  .testimonials-two__author__carousel {
    margin-bottom: -88px;
    left: 5%;
  }
}
.testimonials-two__author__carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials-two__author__carousel
  .active.center
  .testimonials-two__meta-thumb {
  border: 7px solid #eac337;
  transform: scale(1.1);
}
.testimonials-two__author__carousel .active.center .testimonials-two__meta {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.testimonials-two__meta-thumb {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: block;
  position: relative;
}
.testimonials-two__meta-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-three {
  padding: 120px 0px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonials-three {
    padding: 100px 0px 0;
  }
}
@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0px 0;
  }
}
.testimonials-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 727px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 991px) {
  .testimonials-three__bg {
    height: 80%;
  }
}
.testimonials-three__item {
  background: var(--voldor-white, #fff);
  padding: 85px 70px 140px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonials-three__item {
    padding: 50px 50px 80px;
  }
}
@media (max-width: 767px) {
  .testimonials-three__item {
    padding: 50px 30px 80px;
  }
}
.testimonials-three__item__star {
  font-size: 22px;
  color: #eac337;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.testimonials-three__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 167%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
}
@media (max-width: 767px) {
  .testimonials-three__item__text {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .testimonials-three__item__text {
    font-size: 20px;
  }
}
.testimonials-three__item__quite {
  font-size: 50px;
  color: var(--voldor-gray, #e6e0d8);
  position: absolute;
  line-height: 1;
  top: 60px;
  right: 60px;
}
.testimonials-three__thumbs {
  margin-top: -57px;
  max-width: 1028px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-three__carousel-thumb {
  background: var(--voldor-secondary, #241f21);
}
.testimonials-three__carousel-thumb
  .active.center
  .testimonials-three__carousel-thumb__item {
  border-top: 6px solid #eac337;
}
.testimonials-three .item {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 30px 25px 30px;
}
.testimonials-three .item__image {
  max-width: 72px;
  width: 100%;
  height: 72px;
  overflow: hidden;
  border-radius: 50%;
}
.testimonials-three .item__image img {
  object-fit: cover;
  width: 100%;
}
.testimonials-three .item__name {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 0;
  padding-bottom: 0;
}
.testimonials-three .item__deg {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 179%;
  text-transform: uppercase;
  color: var(--voldor-text, #797577);
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  z-index: 1;
  padding: 100px 0px;
}
@media (max-width: 767px) {
  .cta-one {
    padding: 70px 0px;
  }
}
.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  z-index: -1;
  filter: grayscale(100%);
}
.cta-one::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.95);
  z-index: -1;
}
.cta-one__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
}
@media (max-width: 991px) {
  .cta-one__title {
    font-size: 30px;
  }
}
.cta-one__btn {
  text-align: end;
}
@media (max-width: 767px) {
  .cta-one__btn {
    text-align: left;
  }
}
.cta-one__btn a::after {
  background: var(--voldor-white, #fff);
}

.cta-three {
  position: relative;
  z-index: 1;
  padding: 120px 0px 0px;
}
@media (max-width: 991px) {
  .cta-three {
    padding: 100px 0px 0px;
  }
}
@media (max-width: 767px) {
  .cta-three {
    padding: 80px 0px 0px;
  }
}
.cta-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 752px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 991px) {
  .cta-three__bg {
    height: 80%;
  }
}
.cta-three__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.9);
  position: absolute;
  top: 0;
  left: 0;
}
.cta-three__content {
  margin-bottom: 60px;
}
.cta-three__content__subtitle {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #eac337;
  text-align: center;
}
.cta-three__content__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 70px;
  line-height: 114%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .cta-three__content__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .cta-three__content__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .cta-three__content__title {
    font-size: 35px;
  }
}
.cta-three__content__link {
  margin-top: 50px;
  text-align: center;
}
.cta-three__video {
  position: relative;
  z-index: 1;
  padding: 170px 0px;
}
@media (max-width: 991px) {
  .cta-three__video {
    padding: 120px 0px;
  }
}
@media (max-width: 767px) {
  .cta-three__video {
    padding: 100px 0px;
  }
}
.cta-three__video__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
.cta-three__video__link {
  width: 100px;
  height: 100px;
  background: var(--voldor-white, #fff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  color: var(--voldor-secondary, #241f21);
  margin-left: auto;
  margin-right: auto;
  transition: all 0.4s ease-in-out;
  animation: playVideo5 3s ease-in-out infinite;
}
.cta-three__video__link:hover {
  color: #eac337;
  background: var(--voldor-secondary, #241f21);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.gallery-one .container-fluid {
  width: 100%;
  max-width: 1572px;
}
.gallery-one--page {
  padding-top: 120px;
}
.gallery-one .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
.gallery-one__carousel .owl-nav {
  display: none !important;
}
.gallery-one__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-one__filter__list li {
  cursor: pointer;
}
.gallery-one__filter__list li span {
  display: block;
  font-size: 14px;
  transition: all 500ms ease;
  font-weight: 600;
  padding: 12px 25px;
  line-height: normal;
}
.gallery-one__filter__list li.active .voldor-btn,
.gallery-one__filter__list li:hover .voldor-btn {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}
.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--voldor-black, #120f10);
}
.gallery-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-one__card__hover .img-popup {
  position: relative;
}
.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-one__card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--voldor-secondary, #241f21);
  transition: all 0.5s ease-in-out;
}
.gallery-one__card__icon__item {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
.gallery-one__card__icon__item::after,
.gallery-one__card__icon__item::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--voldor-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-one__card__icon__item::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single {
  background-color: var(--voldor-white, #fff);
  padding: 30px 20px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.sidebar__single--search {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .sidebar__single {
    padding: 40px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  margin: 0;
  margin-top: -5px;
  margin-bottom: 29px;
  padding-bottom: 24px;
  color: var(--voldor-secondary, #241f21);
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  border-bottom: 1px solid #eac337;
  text-transform: uppercase;
  text-shadow: 0 0 0.1 currentColor;
}
.sidebar__search {
  position: relative;
  background-color: var(--voldor-border-color, #f4f2ee);
  padding: 30px;
}
.sidebar__search input[type="search"],
.sidebar__search input[type="text"] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--voldor-white, #fff);
  padding-left: 55px;
  padding-right: 20px;
  transition: all 500ms ease;
  border: none;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
}
.sidebar__search input[type="search"]:focus,
.sidebar__search input[type="text"]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.sidebar__search input[type="search"]::placeholder,
.sidebar__search input[type="text"]::placeholder {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  text-shadow: 0 0 0.1px currentColor;
}
.sidebar__search button[type="submit"] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--voldor-text, #797577);
  transition: all 0.4s ease-in-out;
}
.sidebar__search button[type="submit"]:hover {
  color: #eac337;
}
.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(--voldor-gray, #e6e0d8);
  margin-bottom: 16px;
  padding-bottom: 17px;
}
.sidebar__posts__item:hover .sidebar__posts__image::after {
  width: 100%;
  right: auto;
  left: 0;
}
.sidebar__posts__item:hover .sidebar__posts__image img {
  transform: scale(1.3) rotate(-15deg);
}
.sidebar__posts__image {
  margin-right: 20px;
  overflow: hidden;
  max-width: 70px;
  width: 100%;
  height: 70px;
  position: relative;
}
.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.sidebar__posts__image::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0%;
  left: auto;
  right: 0;
  background-color: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.5);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.sidebar__posts__title {
  margin-bottom: 0;
  font-family: "Mulish", serif;
  color: var(--voldor-secondary, #241f21);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1875;
  text-transform: uppercase;
}
.sidebar__posts__title a {
  text-shadow: 0 0 0 0.2 currentColor;
  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: #eac337;
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sidebar__posts__meta a {
  line-height: normal;
  display: inline-flex;
  align-items: center;
  transition: all 500ms ease;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.sidebar__posts__meta a:hover {
  color: #eac337;
}
.sidebar__posts__meta a i {
  color: #eac337;
  margin-right: 10px;
}
.sidebar__categories {
  margin-bottom: -4px;
}
.sidebar__categories li:not(:last-of-type) {
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
.sidebar__categories li:first-child a {
  padding-top: 0;
}
.sidebar__categories li:last-child a {
  padding-bottom: 0 !important;
}
.sidebar__categories li a {
  display: flex;
  align-items: center;
  padding: 12px 0 12px 0px;
  transition: all 500ms ease;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-shadow: 0 0 0 0.1 currentColor;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.sidebar__categories li a i {
  margin-right: 8px;
  color: #eac337;
}
.sidebar__categories li a:hover {
  padding-left: 20px;
  color: #eac337;
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background: var(--voldor-border-color, #f4f2ee);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 11px 15px;
  color: var(--voldor-text, #797577);
  line-height: normal;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.sidebar__tags a:hover {
  color: var(--voldor-white, #fff);
  background-color: #eac337;
}
.sidebar__comments {
  margin-bottom: -4px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 21px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--voldor-border-color, #f4f2ee);
  font-size: 20px;
  color: var(--voldor-text, #797577);
  margin-right: 14px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}
.sidebar__comments__title {
  color: var(--voldor-text, #797577);
  line-height: 185.714%;
  margin-bottom: 0px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  font-family: "Mulish", serif;
}
.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  color: var(--voldor-secondary, #241f21);
}

@media (max-width: 991px) {
  .service-sidebar__single {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-sidebar__single + .service-sidebar__single {
  margin-top: 30px;
}
.service-sidebar__title {
  position: relative;
  margin: 0;
  padding: 25px 30px;
  background-color: var(--voldor-secondary, #241f21);
  color: var(--voldor-white, #fff);
  font-size: 20px;
  font-weight: 700;
  line-height: 108.333%;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
.service-sidebar__title::after {
  content: "";
  width: 40px;
  height: 25px;
  position: absolute;
  bottom: -20px;
  left: 8%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--voldor-secondary, #241f21);
  transform: rotate(180deg);
}
@media (min-width: 576px) {
  .service-sidebar__title {
    font-size: 24px;
  }
}
.service-sidebar__nav {
  border-top: 0;
  margin-bottom: 0;
  padding: 40px 30px;
  background: #eac337;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .service-sidebar__nav {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .service-sidebar__nav {
    padding: 30px 20px;
  }
}
.service-sidebar__nav li a {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--voldor-white, #fff);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 14px 30px;
  margin-bottom: 10px;
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .service-sidebar__nav li a {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .service-sidebar__nav li a {
    font-size: 14px;
  }
}
.service-sidebar__nav li a i {
  color: #eac337;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .service-sidebar__nav li a i {
    font-size: 12px;
  }
}
.service-sidebar__nav li a::before {
  content: "";
  width: 0%;
  height: 100%;
  background-color: var(--voldor-secondary, #241f21);
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  z-index: -1;
  transition: all 500ms ease-in-out;
}
.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
  color: var(--voldor-white, #fff);
}
.service-sidebar__nav li.current a::after,
.service-sidebar__nav li:hover a::after {
  color: var(--voldor-secondary, #241f21);
}
.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}
.service-sidebar__nav li:last-child a {
  margin-bottom: 0;
}
.service-sidebar__contact {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 30px 30px 193px 30px;
  background-color: var(--voldor-secondary, #241f21);
}
.service-sidebar__contact-title {
  margin-top: -7px;
  max-width: 234px;
  margin-bottom: 50px;
  color: var(--voldor-white, #fff);
  font-size: 25px;
  font-weight: 700;
  line-height: 133.333%;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .service-sidebar__contact-title {
    font-size: 30px;
  }
}
.service-sidebar__contact-btn .voldor-btn {
  padding: 7.5px 28px;
  color: var(--voldor-white, #fff);
  background: #eac337;
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
}
.service-sidebar__contact-btn .voldor-btn::after {
  background: var(--voldor-white, #fff);
}
.service-sidebar__contact-btn .voldor-btn:hover {
  color: var(--voldor-secondary, #241f21);
}
.service-sidebar__contact-image,
.service-sidebar__contact-angle {
  bottom: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
  z-index: -2;
}
.service-sidebar__contact-image {
  right: 0;
  left: auto;
  z-index: -1;
}
.service-sidebar__contact-image img {
  max-height: 320px;
  width: auto;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__tags__title {
  margin: 0;
  margin-top: -4px;
  margin-bottom: -2px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (min-width: 768px) {
  .blog-details__tags__title {
    font-size: 20px;
  }
}
.blog-details__tags .sidebar__tags button {
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.blog-details__tags .sidebar__tags button:hover {
  color: var(--voldor-white, #fff);
}
.blog-details__tags .sidebar__tags2 a {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: "Mulish", serif;
}
.blog-details__tags .sidebar__tags2 a:hover {
  color: #eac337;
}

.blog-card__two {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.blog-card__two__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.blog-card__two__date {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--voldor-secondary, #241f21);
  display: flex;
  align-items: center;
}
.blog-card__two__date__day {
  background: #eac337;
  display: inline;
  padding: 9px 18px 12px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--voldor-white, #fff);
}
.blog-card__two__date__year {
  text-align: center;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2142;
  color: var(--voldor-white, #fff);
  padding: 0px 16px 0px;
  text-transform: uppercase;
}
.blog-card__two__date__year span {
  display: block;
  color: inherit;
}
.blog-card__two__meta {
  display: flex;
  align-items: center;
  margin: 7px;
  transition: all 0.4s ease-in-out;
}
.blog-card__two__meta li:not(:first-child)::before {
  content: "|";
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 500;
  color: #6d7076;
  opacity: 0.5;
}
.blog-card__two__meta li a {
  color: var(--voldor-text, #797577);
  font-size: 14px;
  font-weight: 600;
  line-height: 214.286%;
  text-transform: uppercase;
}
.blog-card__two__meta li a i {
  font-size: 15px;
  color: #eac337;
  margin-right: 5px;
}
.blog-card__two__title {
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 20px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.8333333333;
}
.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: #eac337;
}
.blog-card__two__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
}
.blog-card__two__text + .blog-card__two__text {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-one {
    margin-top: 50px;
  }
}
.comments-one__title {
  margin: 0;
  font-size: 25px;
  margin-top: -4px;
  margin-bottom: -4px;
  color: var(--voldor-secondary, #241f21);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Mulish", serif;
  text-shadow: 0 0 0.1 currentColor;
}
@media (min-width: 992px) {
  .comments-one__title {
    font-size: 30px;
  }
}
.comments-one__list {
  margin: 0;
  margin-top: 35px;
}
.comments-one__card {
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .comments-one__card {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .comments-one__card:not(:first-of-type) {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .comments-one__card__image {
    margin-right: 30px;
  }
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__title {
  margin: 0;
  color: var(--voldor-secondary, #241f21);
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  margin-bottom: 10px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .comments-one__card__title {
    font-size: 18px;
  }
}
.comments-one__card__text {
  margin: 0;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  max-width: 560px;
  font-family: "Mulish", serif;
}
@media (min-width: 768px) {
  .comments-one__card__text {
    margin-bottom: 0;
  }
}
.comments-one__card__btn {
  margin-top: 22px;
}
.comments-one__card__reply {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 10px 21.5px;
  background: var(--voldor-border-color, #f4f2ee);
}
.comments-one__card__reply:hover {
  color: var(--voldor-white, #fff);
}
.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-form {
    margin-top: 55px;
  }
}
.comments-form__title {
  margin: 0;
  font-size: 25px;
  margin-top: -4px;
  margin-bottom: -4px;
  color: var(--voldor-secondary, #241f21);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Mulish", serif;
  text-shadow: 0 0 0.1 currentColor;
}
@media (min-width: 992px) {
  .comments-form__title {
    font-size: 30px;
  }
}
.comments-form__form {
  margin-top: 45px;
}
.comments-form input::placeholder,
.comments-form textarea::placeholder {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  font-family: "Mulish", serif;
}
.comments-form textarea {
  height: 211px;
}
.comments-form .voldor-btn:hover {
  color: var(--voldor-white, #fff);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}
.product__sidebar {
  position: relative;
}
.product__sidebar--title {
  position: relative;
  margin-top: -5px;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 23px;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
.product__sidebar__search {
  position: relative;
  margin-bottom: 30px;
}
.product__sidebar__search input[type="search"],
.product__sidebar__search input[type="text"] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: #eac337;
  color: var(--voldor-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  padding-left: 60px;
  padding-right: 30px;
  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(--voldor-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}
.product__sidebar__search button[type="submit"] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--voldor-white, #fff);
}
.product__price-ranger {
  background-color: var(--voldor-white, #fff);
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
  padding: 30px;
  margin-bottom: 30px;
}
.product__price-ranger #slider-range {
  margin: 15px 0 23px 0px;
  background: var(--voldor-border-color, #f4f2ee);
  border: none;
  height: 7px;
  border-radius: 20px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: #eac337;
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: #eac337;
  border: 0;
  height: 16px;
  width: 16px !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(--voldor-text, #797577);
  width: 45px;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--voldor-text, #797577);
  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: 0px 16px;
  height: 40px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185.714%;
  text-transform: uppercase;
  z-index: 1;
  color: var(--voldor-text, #797577);
  background: var(--voldor-border-color, #f4f2ee);
}
.product__price-ranger .ranger-min-max-block button[type="submit"]:hover {
  color: var(--voldor-white, #fff);
  background: #eac337;
}
.product__price-ranger .ranger-min-max-block button[type="submit"]::after {
  display: none;
}
.product__categories {
  margin-bottom: -4px;
  background-color: var(--voldor-white, #fff);
  padding: 30px 30px 23px 30px;
  box-shadow: 0px 0px 60px 0px rgba(2, 2, 2, 0.07);
}
.product__categories__title {
  margin: 0;
  margin-top: -5px;
  padding-bottom: 15px;
  margin-bottom: 14px;
  border-bottom: 1px solid #eac337;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.product__categories ul {
  margin-bottom: 0;
}
.product__categories ul li:not(:last-of-type) {
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
.product__categories ul li:first-child a {
  padding-top: 0;
}
.product__categories ul li:last-child a {
  padding-bottom: 0 !important;
}
.product__categories ul li a {
  display: flex;
  align-items: center;
  padding: 10px 0 14.44px 0px;
  transition: all 500ms ease;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
.product__categories ul li a i {
  font-size: 13px;
  margin-right: 8px;
  color: #eac337;
}
.product__categories ul li a:hover {
  padding-left: 20px;
  background-color: var(--voldor-white, #fff);
  color: #eac337;
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@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;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
}
.product__showing-sort {
  margin: 0;
  font-size: 18px;
}
.product__showing-sort
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  position: relative;
  display: block;
  width: 270px !important;
}
@media (max-width: 360px) {
  .product__showing-sort
    .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
      .input-group-btn
    ) {
    width: 270px !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 {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--voldor-border-color, #f4f2ee) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--voldor-text, #797577) !important;
  line-height: 60px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Mulish", serif;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: #eac337;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--voldor-border-color, #f4f2ee);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  color: var(--voldor-text, #797577);
  background-color: var(--voldor-gray, #e6e0d8);
  -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(--voldor-secondary, #241f21);
  color: var(--voldor-white, #fff);
  border-color: var(--voldor-secondary, #241f21);
}
.product__item {
  position: relative;
  background-color: var(--voldor-white, #fff);
  border: 1px solid var(--voldor-gray, #e6e0d8);
  transition: all 500ms ease;
}
.product__item:hover {
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid #eac337;
}
.product__item__img {
  background-color: var(--voldor-white, #fff);
  position: relative;
  overflow: hidden;
}
.product__item__img__item {
  max-width: 228px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product__item__img__item img {
  width: 100%;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}
.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: var(--voldor-border-color, #f4f2ee);
  border-radius: 50%;
  color: var(--voldor-text, #797577);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}
.product__item__btn a:nth-child(1) {
  -webkit-transition: transform 350ms 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;
  -moz-transition: transform 350ms 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;
  -ms-transition: transform 350ms 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;
  -o-transition: transform 350ms 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;
  transition: transform 350ms 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);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(2) {
  -webkit-transition: transform 550ms 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;
  -moz-transition: transform 550ms 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;
  -ms-transition: transform 550ms 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;
  -o-transition: transform 550ms 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;
  transition: transform 550ms 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);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}
.product__item__btn a + a {
  margin-top: 12px;
}
.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);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}
.product__item__content {
  position: relative;
  text-align: center;
  padding: 20px 20px 40px 20px;
}
.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #eac337;
  letter-spacing: 4px;
  margin-bottom: 25px;
}
.product__item__title {
  margin: 0;
  margin-bottom: 10px;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  text-shadow: 0 0 0.1px currentColor;
  font-family: "Mulish", serif;
}
.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__item__title a:hover {
  background-size: 100% 1px;
}
.product__item__title a:hover {
  color: #eac337;
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--voldor-text, #797577);
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.product__item__price del {
  margin-left: 7px;
}
.product__item__link {
  color: var(--voldor-text, #797577);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185.714%;
  padding: 7px 32px;
  text-transform: uppercase;
  background: var(--voldor-border-color, #f4f2ee);
  font-family: "Mulish", serif;
}
.product__item__link:hover {
  color: var(--voldor-white, #fff);
}
.product__item__link:hover::after {
  background: #eac337;
}

.product-one {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}
.product-one--page {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .product-one--page {
    padding-top: 60px;
  }
}
.product-one--home {
  position: relative;
  padding: 0 0 90px;
}
@media (max-width: 767px) {
  .product-one--home {
    padding-bottom: 50px;
  }
}
.product-one--home .sec-title {
  text-align: center;
}
.product-one--home .product__item {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .product-one__carousel .owl-nav {
    display: none;
  }
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .product-details {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}
.product-details__img {
  background-color: var(--voldor-white, #fff);
  position: relative;
  border: 1px solid var(--voldor-gray, #e6e0d8);
  max-width: 570px;
  height: auto;
}
.product-details__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.product-details__content {
  position: relative;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .product-details__content {
    margin-top: 50px;
  }
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  margin-bottom: 0;
  padding-bottom: 15px;
}
.product-details__title {
  margin-top: 5px;
  font-size: 25px;
  line-height: normal;
  color: var(--voldor-secondary, #241f21);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (min-width: 768px) {
  .product-details__title {
    font-size: 30px;
  }
}
.product-details__price {
  margin: 0 0 -5px 17px;
  color: #eac337;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  font-size: 17px;
  color: #eac337;
}
.product-details__review a {
  display: inline-block;
  margin-left: 20px;
  transition: all 500ms ease;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.product-details__review a:hover {
  color: #eac337;
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--voldor-gray, #e6e0d8);
  margin: 32px 0 20px 0;
}
.product-details__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}
.product-details__excerpt-text1 {
  margin: 0 0 17px;
  max-width: 514px;
  color: var(--voldor-text-gray, #958f91);
  font-size: 16px;
  font-weight: 600;
  line-height: 187.5%;
  font-family: "Mulish", serif;
}
.product-details__excerpt-text2 {
  color: var(--voldor-text-gray, #958f91);
  margin-bottom: 37px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  font-family: "Mulish", serif;
}
@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}
.product-details__excerpt-text2 span {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  color: #eac337;
  text-transform: capitalize;
  font-family: "Mulish", serif;
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}
.product-details__quantity-title {
  margin: 0;
  margin-right: 35px;
  color: var(--voldor-secondary, #241f21);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: auto;
  height: 46px;
  display: flex;
}
.product-details__quantity .quantity-box input {
  width: 45px;
  height: 46px;
  border: 1px solid var(--voldor-gray, #e6e0d8);
  appearance: textfield;
  color: var(--voldor-secondary, #241f21);
  padding-left: 15px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 45px;
  height: auto;
  color: var(--voldor-secondary, #241f21);
  font-size: 13px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button:hover,
.product-details__quantity .quantity-box button:focus,
.product-details__quantity .quantity-box button:active {
  background: var(--voldor-secondary, #241f21);
  color: var(--voldor-white, #fff);
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  border-left: 1px solid var(--voldor-gray, #e6e0d8);
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
.product-details__quantity .quantity-box button.add {
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  border-right: 1px solid var(--voldor-gray, #e6e0d8);
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--voldor-white, #fff);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0px 0;
}
.product-details__buttons a {
  color: var(--voldor-white, #fff);
}
@media (max-width: 768px) {
  .product-details__buttons a {
    padding: 16.55px 35px;
  }
}
.product-details__buttons a:hover {
  color: var(--voldor-white, #fff);
}
.product-details__buttons a:last-child:hover {
  color: var(--voldor-white, #fff);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 40px;
}
.product-details__socials__title {
  display: flex;
  margin-bottom: 0;
  color: var(--voldor-secondary, #241f21);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials__item {
  display: flex;
  gap: 20px;
}
.product-details__socials__item a {
  display: inline;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--voldor-border-color, #f4f2ee);
  font-size: 13px;
  color: var(--voldor-secondary, #241f21);
  transition: all 500ms ease;
  border-radius: 50%;
}
.product-details__socials__item a:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 40px 0 0;
}
@media (min-width: 768px) {
  .product-details__description {
    margin: 50px 0 0;
  }
}
.product-details__description__title {
  margin-bottom: 22px;
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.product-details__description__text {
  color: var(--voldor-text, #797577);
  line-height: 187.5%;
  font-size: 16px;
  font-weight: 600;
  font-family: "Mulish", serif;
}
.product-details__description__lists {
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0;
}
.product-details__description__lists li {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  text-shadow: 0 0 0.1px currentColor;
}
.product-details__description__lists li i {
  color: #eac337;
  margin-right: 10px;
}
.product-details__description__lists li + li {
  margin-top: 13px;
}
.product-details__comment {
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  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;
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.product-details__comment-box {
  position: relative;
  padding: 11px 0 52px 200px;
  margin-bottom: 45px;
  min-height: 166px;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
@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(--voldor-secondary, #241f21);
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.product-details__comment-box__date {
  margin-left: 20px;
  display: inline-block;
  text-transform: none;
  letter-spacing: 0;
  color: #eac337;
  font-size: 16px;
  font-weight: 600;
  line-height: 187.5%;
  font-family: "Mulish", serif;
}
.product-details__comment-box__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  font-family: "Mulish", serif;
  color: var(--voldor-text, #797577);
}
.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 17px;
  color: #eac337;
}
@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(--voldor-secondary, #241f21);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  font-family: "Mulish", serif;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 25px;
  color: var(--voldor-secondary, #241f21);
  margin: 0 0 40px;
}
.product-details__form-ratings i {
  color: #eac337;
  font-size: 500;
}
.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--voldor-text, #797577);
  margin: 0 17px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  font-family: "Mulish", serif;
  text-transform: capitalize;
}
.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(--voldor-border-color, #f4f2ee);
}
.product-details__form__form .form-one__control input::placeholder,
.product-details__form__form .form-one__control textarea::placeholder {
  color: var(--voldor-text, #797577);
}
.product-details__form__form .voldor-btn:hover {
  color: var(--voldor-white, #fff);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  padding: 0 0 24px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8) !important;
  box-shadow: none;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  font-family: "Mulish", serif;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
  padding: 30px 0;
  letter-spacing: 0;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 500;
  line-height: 235%;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 109px;
  height: 107px;
  background-color: var(--voldor-white, #fff);
  border: 1px solid var(--voldor-gray, #e6e0d8);
  margin-right: 40px;
}
.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  margin: 0;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 700;
  line-height: 235%;
}
.cart-page__table__meta-title a {
  color: inherit;
}
.cart-page__table__meta-title a:hover {
  color: #eac337;
}
.cart-page__table__remove {
  display: block;
  color: var(--voldor-secondary, #241f21);
  font-size: 17px;
}
.cart-page__table__remove:hover {
  color: #eac337;
}
.cart-page__coupone-form {
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .cart-page__coupone-form {
    display: block;
  }
}
.cart-page__coupone-form input[type="text"] {
  height: 56px;
  width: 303px;
  border: none;
  background-color: var(--voldor-border-color, #f4f2ee);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--voldor-text, #797577);
  display: block;
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 1199px) {
  .cart-page__coupone-form input[type="text"] {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone-form input[type="text"] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__cart-total {
  position: relative;
  text-align: right;
  margin: -8px 0 24px;
  padding: 0;
}
@media (max-width: 991px) {
  .cart-page__cart-total {
    text-align: left;
    margin-top: 45px;
  }
}
.cart-page__cart-total li {
  display: block;
  font-size: 20px;
  color: var(--voldor-secondary, #241f21);
  font-weight: 700;
  margin: 0 0 0px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .cart-page__cart-total li span {
    display: inline-block;
    min-width: 172px;
  }
}
.cart-page__cart-total li:last-child {
  margin-top: 10px;
  padding-top: 15px;
  position: relative;
}
.cart-page__cart-total li:last-child::after {
  content: "";
  width: 80%;
  height: 1px;
  position: absolute;
  top: 0%;
  right: 0;
  background: var(--voldor-border-color, #f4f2ee);
}
.cart-page__cart-total-amount {
  color: var(--voldor-text, #797577);
  text-transform: inherit;
  display: inline-block;
  min-width: 220px;
  font-size: 20px;
  font-weight: 600;
  line-height: 235%;
}
.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 991px) {
  .cart-page__buttons {
    justify-content: flex-start;
  }
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .checkout-page {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
  }
}
.checkout-page__notice {
  max-width: 570px;
  margin: 0 0 30px;
  padding: 34px 50px;
  background: var(--voldor-border-color, #f4f2ee);
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3888888889;
}
.checkout-page__notice a {
  color: #eac337;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.checkout-page__notice a:hover {
  background-size: 100% 1px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  margin: 0 0 34px;
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .checkout-page__billing-address__title {
    font-size: 28px;
  }
}
.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 34px;
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 28px;
  }
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.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: 60px;
  width: 100%;
  border: none;
  background-color: var(--voldor-border-color, #f4f2ee);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  display: block;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.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(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.checkout-page__input-box
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: "Mulish", serif;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 58px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--voldor-border-color, #f4f2ee) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--voldor-text, #797577) !important;
  font-size: 14px;
  line-height: 58px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 12px;
  color: var(--voldor-text, #797577);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--voldor-border-color, #f4f2ee);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--voldor-text, #797577);
  background-color: var(--voldor-border-color, #f4f2ee);
  -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: #eac337;
  color: var(--voldor-white, #fff);
  border-color: #eac337;
}
.checkout-page__input-box textarea {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: 176px;
  width: 100%;
  background-color: var(--voldor-border-color, #f4f2ee);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}
.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(--voldor-text, #797577);
  font-size: 15px;
  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(--voldor-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  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: #eac337;
  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: 65px;
}
.checkout-page__details__title {
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
  text-shadow: 0 0 0.1px currentColor;
  text-transform: uppercase;
}
.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(--voldor-text, #797577);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
}
.checkout-page__details__check-box label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #eac337;
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 300ms ease;
}
.checkout-page__details__check-box label span::before {
  content: "\f00c";
  color: var(--voldor-white, #fff);
  position: absolute;
  top: 4px;
  left: 6px;
  line-height: 15px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__details__check-box
  input[type="checkbox"]:checked
  + label
  span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
}
.checkout-page__your-order__title {
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .checkout-page__your-order__title {
    font-size: 28px;
  }
}
.checkout-page__your-order .nionx-btn {
  padding: 19px 38px;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-family: "Mulish", serif;
  color: #eac337;
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
  font-weight: bold;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 700;
  line-height: 235%;
  text-transform: uppercase;
  text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-family: "Mulish", serif;
  color: var(--voldor-secondary, #241f21);
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  padding: 0 0 24px;
  border: none;
  text-transform: uppercase;
  text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table .pro__price {
  color: var(--voldor-text-gray, #958f91);
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0 0 0.1px currentColor;
}
.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(--voldor-border-color, #f4f2ee);
}
.checkout-page__order-table tbody tr:last-child td.pro__price {
  color: var(--voldor-secondary, #241f21);
  font-weight: 700;
}
.checkout-page__payment {
  background-color: var(--voldor-border-color, #f4f2ee);
  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;
  font-size: 20px;
  margin: 0;
  align-items: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
}
.checkout-page__payment__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--voldor-white, #fff);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  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 {
  background-color: #eac337;
  border-color: #eac337;
  content: "\f00c";
  color: var(--voldor-white, #fff);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .login-page {
    padding: 80px 0;
  }
}
.login-page__inner {
  border: 1px solid var(--voldor-gray, #e6e0d8);
  background: var(--voldor-white, #fff);
  box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
}
@media (min-width: 768px) {
  .login-page__inner {
    padding: 57px 40px 57px;
  }
}
.login-page__info {
  background-color: var(--voldor-secondary, #241f21);
  padding: 35.5px 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .login-page__info {
    margin-bottom: 30px;
    padding: 15px 30px;
  }
  .login-page__info p {
    font-size: 16px;
  }
}
.login-page__info p {
  margin: 0;
  color: var(--voldor-white, #fff);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3888888889;
}
.login-page__info p span {
  font-weight: 700;
}
.login-page__info p a {
  line-height: normal;
  font-weight: 700;
  display: inline-block;
  color: #eac337;
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__info p a:hover {
  background-size: 100% 1px;
}
.login-page__wrap {
  position: relative;
}
.login-page__wrap__title {
  margin-top: -5px;
  margin-bottom: 30px;
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.login-page__wrap .form__border {
  display: none;
}
@media (min-width: 992px) {
  .login-page__wrap .form__border {
    display: block;
  }
}
.login-page__wrap .form__border::after {
  display: none;
  position: absolute;
  top: 0;
  right: -47px;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--voldor-gray, #e6e0d8);
}
@media (min-width: 992px) {
  .login-page__wrap .form__border::after {
    display: block;
  }
}
@media (max-width: 992px) {
  .login-page .register-page__wrap {
    margin-top: 50px;
  }
}
.login-page__form {
  position: relative;
  display: block;
}
.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.login-page__form-input-box input[type="email"],
.login-page__form-input-box input[type="password"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--voldor-border-color, #f4f2ee);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  color: var(--voldor-text, #797577);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  display: block;
  font-family: "Mulish", serif;
}
.login-page__form-input-box input[type="email"]::placeholder,
.login-page__form-input-box input[type="password"]::placeholder {
  color: var(--voldor-text, #797577);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  font-family: "Mulish", serif;
}
.login-page__checked-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .login-page__checked-box {
    display: block;
  }
}
.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  text-transform: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.login-page__checked-box label span:before {
  position: absolute;
  top: 2px;
  left: 5px;
  display: block;
  border-bottom: 2px solid var(--voldor-text, #797577);
  border-right: 2px solid var(--voldor-text, #797577);
  content: "";
  width: 7px;
  height: 10px;
  pointer-events: none;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.login-page__checked-box input[type="checkbox"] {
  display: none;
}
.login-page__checked-box input[type="checkbox"] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border: 1px solid var(--voldor-gray, #e6e0d8);
}
.login-page__checked-box input[type="checkbox"]:checked + label span:before {
  opacity: 1;
}
.login-page__form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.login-page__form-btn-box .nionx-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 19px 40px;
}
.login-page__form-forgot-password {
  position: relative;
  display: block;
  margin-left: 0px;
  flex: 0 0 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .login-page__form-forgot-password {
    margin-left: 20px;
    flex: 0 0 auto;
    margin-top: 0;
  }
}
.login-page__form-forgot-password a {
  color: var(--voldor-text, #797577);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}
.login-page__form-forgot-password a:hover {
  color: var(--voldor-text, #797577);
}

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

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0px 120px;
  max-width: 496px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .error-404 {
    padding: 80px 0px 100px;
  }
}
@media (max-width: 767px) {
  .error-404 {
    padding: 60px 0px 80px;
  }
}
.error-404__img {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  padding-top: 120px;
}
.error-404__img__item {
  display: flex;
  align-items: end;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}
.error-404__img__item--one {
  position: absolute;
  top: 22%;
  left: 40%;
  animation: errorLeft 3s ease-in-out infinite;
}
@keyframes errorLeft {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
.error-404__img__item--two {
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: -1;
}
.error-404__sub-title {
  font-family: "Mulish", serif;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 65%;
  text-align: center;
  margin-bottom: 15px;
}
.error-404__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 200%;
  color: var(--voldor-text, #797577);
  text-align: center;
}
.error-404__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  width: 100%;
  max-width: 550px;
}
.error-404__search input[type="text"] {
  border: none;
  outline: none;
  display: block;
  background-color: var(--voldor-border-color, #f4f2ee);
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  max-width: 496px;
  padding-left: 70px;
  height: 60px;
}
.error-404__search input[type="text"]::placeholder {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 600;
  line-height: 162.5%;
}
.error-404__search__btn {
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--voldor-text, #797577);
  position: absolute;
  top: 50%;
  font-weight: 700;
  left: 40px;
  transform: translateY(-50%);
  font-size: 20px;
}
@media (max-width: 575px) {
  .error-404__search__btn {
    left: 30px;
  }
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page__accordion .accrodion {
  background: var(--voldor-border-color, #f4f2ee);
}
.faq-page__accordion .accrodion + .accrodion {
  margin-top: 20px;
}
.faq-page__accordion .accrodion-title {
  padding: 25px 30px 18px 30px;
  padding-right: 65px;
  cursor: pointer;
}
.faq-page__accordion .accrodion-title__text {
  position: relative;
  color: var(--voldor-secondary, #241f21);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2222222;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.faq-page__accordion .accrodion-title__icon {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  right: -35px;
  background: var(--voldor-white, #fff);
  transform: translateY(-50%);
}
.faq-page__accordion .accrodion-title__icon::after,
.faq-page__accordion .accrodion-title__icon::before {
  width: 2.555555px;
  height: 12px;
  position: absolute;
  background-color: var(--voldor-secondary, #241f21);
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.faq-page__accordion .accrodion-title__icon::after {
  width: 12px;
  height: 2px;
}
.faq-page__accordion .active .accrodion-title__icon {
  background-color: #eac337;
}
.faq-page__accordion .active .accrodion-title__icon::after,
.faq-page__accordion .active .accrodion-title__icon::before {
  background: var(--voldor-white, #fff);
  opacity: 0;
}
.faq-page__accordion .active .accrodion-title__icon::after {
  opacity: 1;
}
.faq-page__accordion .accrodion-content .inner {
  padding: 3px 30px 25px 30px;
  margin-top: -3px;
}
.faq-page__accordion .accrodion-content p {
  color: var(--voldor-text, #797577);
  padding-bottom: 0;
  margin-bottom: -2px;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  max-width: 678px;
  width: 100%;
}

.faq-page {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .faq-page {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .faq-page {
    padding: 80px 0px;
  }
}
.faq-page__thumb img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .faq-page .sec-title {
    padding-bottom: 20px;
  }
}
.faq-page__search {
  max-width: 330px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991px) {
  .faq-page__search {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.faq-page__search__item {
  position: relative;
  background-color: var(--voldor-border-color, #f4f2ee);
}
.faq-page__search__item input[type="search"],
.faq-page__search__item input[type="text"] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--voldor-border-color, #f4f2ee);
  padding-left: 55px;
  padding-right: 20px;
  transition: all 500ms ease;
  border: none;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.faq-page__search__item input[type="search"]:focus,
.faq-page__search__item input[type="text"]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.faq-page__search__item input[type="search"]::placeholder,
.faq-page__search__item input[type="text"]::placeholder {
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.faq-page__search__item button[type="submit"] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  width: auto;
  font-size: 18px;
  line-height: 1;
  color: var(--voldor-text, #797577);
  transition: all 0.4s ease-in-out;
}
.faq-page__search__item button[type="submit"]:hover {
  color: #eac337;
}

.faq-contact__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--voldor-secondary, #241f21);
  padding: 40px 30px 30px;
}
.faq-contact__inner__item {
  display: flex;
  align-items: start;
  gap: 20px;
  width: 100%;
}
@media (max-width: 575px) {
  .faq-contact__inner__item {
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .faq-contact__inner__item {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.faq-contact__inner__item__icon {
  max-width: 60px;
  width: 100%;
  height: 60px;
  border-radius: 50%;
  background: #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--voldor-white, #fff);
  transition: all 0.4s ease-in-out;
}
.faq-contact__inner__item:not(:last-of-type) {
  border-bottom: 1px solid rgba(var(--voldor-gray-rgb, 230, 224, 216), 0.2);
  padding-bottom: 17px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .faq-contact__inner__item:not(:last-of-type) {
    border-bottom: 0px solid rgba(var(--voldor-gray-rgb, 230, 224, 216), 0.2);
  }
}
.faq-contact__inner__item__subtitle {
  color: var(--voldor-white, #fff);
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
  margin-bottom: 5px;
  padding-bottom: 0;
  font-family: "Mulish", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 575px) {
  .faq-contact__inner__item__subtitle {
    font-size: 20px;
  }
}
.faq-contact__inner__item__contact {
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 197%;
}
.faq-contact__inner__item__contact a {
  color: var(--voldor-white, #fff);
  font-weight: 600;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.faq-contact__inner__item__contact a:hover {
  background-size: 100% 1px;
}
.faq-contact__inner__item__contact a:hover {
  color: #eac337;
}
.faq-contact__inner__item:hover .faq-contact__inner__item__icon {
  background: var(--voldor-white, #fff);
  color: #eac337;
}
.faq-contact__inner__item:hover .faq-contact__inner__item__icon i {
  animation: bounceIn 1s linear;
}

.faqs-two {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .faqs-two {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .faqs-two {
    padding: 80px 0px;
  }
}
.faqs-two__left {
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .faqs-two__left {
    margin-left: 0;
  }
}
.faqs-two__thumb {
  position: relative;
  z-index: 1;
  padding-bottom: 35px;
}
@media (max-width: 1199px) {
  .faqs-two__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.faqs-two__thumb__logo {
  position: absolute;
  top: 0;
  left: 40px;
}
.faqs-two__thumb__logo .voldor-logo {
  display: block;
  padding: 0px 40px 20px 30px;
  background: var(--voldor-white, #fff);
}
.faqs-two__thumb__funfact {
  position: absolute;
  bottom: 3px;
  left: 48px;
}
.faqs-two__thumb__funfact__item {
  background: #eac337;
  padding: 40px 30px;
}
.faqs-two__thumb__funfact__item__count {
  margin-top: -5px;
  display: flex;
  align-items: center;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
}
.faqs-two__thumb__funfact__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 181%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: -10px;
}
.faqs-two__thumb__funfact::after {
  content: "";
  width: 48px;
  height: 33px;
  position: absolute;
  bottom: 0;
  left: -47px;
  background: var(--voldor-text, #797577);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.faqs-two__top .sec-title {
  padding-bottom: 30px;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-card {
  border: 1px solid var(--voldor-gray, #e6e0d8);
  padding: 40px 50px 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .package-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.package-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
  padding-bottom: 27px;
  margin-bottom: 23px;
}
.package-card__head__content {
  position: relative;
  margin-top: -3px;
}
.package-card__head__price {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--voldor-secondary, #241f21);
  font-size: 47.5177px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.package-card__head__price .sup {
  bottom: 0%;
  font-size: 23.7588px;
  margin-bottom: -8px;
  margin-right: -5px;
}
.package-card__head__name {
  margin-top: 3px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
.package-card__head__icon {
  font-size: 56px;
  color: #eac337;
  position: absolute;
  top: -25px;
  line-height: 1;
  right: 10px;
  transition: all 0.4s ease-in-out;
}
.package-card::after {
  content: "";
  position: absolute;
  -webkit-mask: url('data:image/svg+xml;utf8,  <svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 174.000000 156.000000" > <g transform="translate(0.000000,156.000000) scale(0.050000,-0.050000)"> <path d="M21 3075 c11 -25 198 -436 415 -915 l395 -870 884 -10 883 -10 423 -610 c233 -335 431 -619 441 -629 11 -11 18 610 18 1535 l0 1554 -1740 0 -1739 0 20 -45z"/> </g> </svg> ');
  mask: url('data:image/svg+xml;utf8,  <svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 174.000000 156.000000" > <g transform="translate(0.000000,156.000000) scale(0.050000,-0.050000)"> <path d="M21 3075 c11 -25 198 -436 415 -915 l395 -870 884 -10 883 -10 423 -610 c233 -335 431 -619 441 -629 11 -11 18 610 18 1535 l0 1554 -1740 0 -1739 0 20 -45z"/> </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;
  width: 174px;
  height: 156px;
  background: var(--voldor-border-color, #f4f2ee);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.package-card::before {
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,  <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.000000 53.000000">  <g transform="translate(0.000000,53.000000) scale(0.050000,-0.050000)"> <path d="M19 1015 c10 -25 71 -162 136 -305 l117 -260 293 -6 293 -5 134 -195 c74 -106 142 -203 151 -213 9 -10 17 215 17 505 l0 524 -580 0 -579 0 18 -45z"/> </g> </svg> ');
  mask: url('data:image/svg+xml;utf8,  <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.000000 53.000000">  <g transform="translate(0.000000,53.000000) scale(0.050000,-0.050000)"> <path d="M19 1015 c10 -25 71 -162 136 -305 l117 -260 293 -6 293 -5 134 -195 c74 -106 142 -203 151 -213 9 -10 17 215 17 505 l0 524 -580 0 -579 0 18 -45z"/> </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;
  width: 58px;
  height: 53px;
  background: var(--voldor-white, #fff);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.package-card__content__text {
  margin-top: -10px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 261%;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.package-card__content__list {
  margin-bottom: 47px;
}
.package-card__content__list__item {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.375;
  color: var(--voldor-text, #797577);
}
.package-card__content__list__item i {
  color: #eac337;
  margin-right: 10px;
}
.package-card__content__list__item + .package-card__content__list__item {
  margin-top: 13px;
}
.package-card:hover::after {
  background: #eac337;
}
.package-card:hover .package-card__head__icon {
  color: var(--voldor-white, #fff);
}

.package-page {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .package-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}

.package-page__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .package-page__inner {
    margin-bottom: 40px;
  }
}

.package-page__inner__filter {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--voldor-border-color, #f4f2ee);
}
.package-page__inner__filter button::after {
  background: var(--voldor-border-color, #f4f2ee);
}
.package-page__inner__filter button.active-btn,
.package-page__inner__filter button:hover {
  color: var(--voldor-secondary, #241f21);
}
.package-page__inner__filter button.active-btn::after,
.package-page__inner__filter button:hover::after {
  background: var(--voldor-border-color, #f4f2ee);
  height: 380%;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px)
      translateY(20px) translateX(20px);
  }
}
@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: -100px 0;
  }
  40% {
    background-position: -200px 0;
  }
  60% {
    background-position: -150px 0;
  }
  80% {
    background-position: -100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes bounceIn2 {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale2 {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes textScrolling {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes playVideo5 {
  0% {
    box-shadow: 0 0 0px 20px rgba(255, 255, 255, 0.1);
  }
  40% {
    box-shadow: 0 0 0px 5px rgba(255, 255, 255, 0.1);
  }
  80% {
    box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0px 20px rgba(255, 255, 255, 0.1);
  }
}
/*--------------------------------------------------------------
# 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(--voldor-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(--voldor-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(--voldor-black, #120f10);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--voldor-black2, #1b1216);
  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(--voldor-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: #eac337;
}

.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(--voldor-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:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--voldor-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(--voldor-white, #fff);
  font-size: 16px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: #eac337;
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: #eac337;
  border: none;
  outline: none;
  color: var(--voldor-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(--voldor-white, #fff);
  color: var(--voldor-black, #120f10);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--voldor-secondary, #241f21);
  transition: 500ms;
  width: 35px;
  height: 35px;
  background: var(--voldor-gray, #e6e0d8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: #eac337;
  background: var(--voldor-white, #fff);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--voldor-white, #fff);
  font-size: 16px;
  font-weight: 600;
  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: #eac337;
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--voldor-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(--voldor-white, #fff);
  font-size: 16px;
  font-family: "Mulish", serif;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .voldor-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 24px;
}
.search-popup__form .voldor-btn i {
  margin: 0;
}
.search-popup__form .voldor-btn::after {
  display: none;
}
.search-popup__form .voldor-btn:hover {
  color: #eac337;
  background: var(--voldor-secondary, #241f21);
}
.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 {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .page-header {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.page-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.6);
}
.page-header .container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-header__title {
  margin: 0;
  color: var(--voldor-white, #fff);
  text-transform: uppercase;
  margin-bottom: 2px;
  padding-bottom: 0;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 94%;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}

.ostech-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
@media (min-width: 768px) {
  .ostech-breadcrumb {
    margin-bottom: 7px;
  }
}
.ostech-breadcrumb li {
  display: flex;
  align-items: center;
}
.ostech-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: 0px;
  margin-left: 7px;
  margin-right: 7px;
  color: var(--voldor-white, #fff);
  font-size: 16px;
  font-weight: 600;
}
.ostech-breadcrumb li span,
.ostech-breadcrumb li a {
  display: inline-flex;
  color: var(--voldor-white, #fff);
  font-size: 16px;
  font-weight: 600;
  line-height: 293.75%;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
.ostech-breadcrumb li a:hover {
  color: #eac337;
}

.pronation_widget {
  margin-top: 30px;
}
.pronation_widget ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.pronation_widget ul a {
  display: inline-block;
  padding: 0.5px 20px;
  border: 1px solid var(--voldor-gray, #e6e0d8);
  color: var(--voldor-secondary, #241f21);
  transition: all 500ms ease-in-out;
  font-size: 20px;
  line-height: 235%;
  font-size: 20px;
  font-weight: 600;
}
.pronation_widget ul a.active,
.pronation_widget ul a:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
  border: 1px solid #eac337;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 450px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--voldor-border-color, #f4f2ee);
}

.contact-map {
  position: relative;
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1920px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .client-carousel {
    padding: 120px 0;
  }
}
.client-carousel--one {
  background: #eac337;
}
.client-carousel__one__item img {
  opacity: 0.2;
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
}
.client-carousel__one__item:hover img {
  opacity: 1;
}
.client-carousel__top {
  margin-bottom: 55px;
  position: relative;
  z-index: 1;
}
.client-carousel__top::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: #e6e0d8;
  z-index: -1;
}
.client-carousel__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  position: relative;
  display: inline-block;
  background: var(--voldor-white, #fff);
  padding: 0px 20px;
}

.client-carousel-one {
  position: relative;
  background: var(--voldor-white, #fff);
  padding: 0 0 60px;
}
.client-carousel-one .client-carousel__one {
  padding: 74px 0 0;
}
.client-carousel-one .owl-theme .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  line-height: 0.8;
}
.client-carousel-one .owl-theme .owl-nav button {
  width: 26px;
  height: 27px;
  background-color: var(--voldor-gray, #e6e0d8);
  margin: 0 2.5px;
  padding: 0;
  transition: all 500ms ease;
  font-size: 12px;
  color: var(--voldor-black, #120f10);
  text-align: center;
  font-size: 12px;
  line-height: 27px;
  border-radius: 0;
}
.client-carousel-one .owl-theme .owl-nav button:hover {
  background-color: #eac337;
  color: var(--voldor-white, #fff);
}
.client-carousel-one .owl-theme .owl-nav::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  content: "";
  height: 1px;
  background-color: var(--voldor-border-color, #f4f2ee);
  z-index: -1;
}
.client-carousel-one .owl-theme .owl-nav::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 110px;
  content: "";
  height: 1px;
  background-color: var(--voldor-white, #fff);
}
.client-carousel-one .client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 103px;
  transition: all 500ms ease;
}
.client-carousel-one .client-carousel__one__item img {
  transition: all 500ms ease;
  opacity: 0.2;
  max-width: 100%;
  width: auto;
}
.client-carousel-one .client-carousel__one__item:hover img {
  opacity: 0.6;
}

.client-carousel-three__three {
  padding: 120px 0;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
@media (max-width: 991px) {
  .client-carousel-three__three {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .client-carousel-three__three {
    padding: 80px 0px;
  }
}
.client-carousel-three .client-carousel__one__item img {
  opacity: 0.2;
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
  filter: grayscale(80%);
  cursor: pointer;
}
.client-carousel-three .client-carousel__one__item:hover img {
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-one {
  position: relative;
  z-index: 1;
}
.hero-one .container {
  max-width: 1270px;
}
.hero-one__carousel {
  position: relative;
  width: 100%;
}
.hero-one__carousel .owl-dots {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  text-align: left;
  bottom: 80px;
  transform: translateY(-50%);
  width: 140px;
  left: 18%;
}
@media (max-width: 1400px) {
  .hero-one__carousel .owl-dots {
    width: 60px;
  }
}
@media (max-width: 1299px) {
  .hero-one__carousel .owl-dots {
    width: 40px;
    right: 10%;
    left: auto;
  }
}
@media (max-width: 991px) {
  .hero-one__carousel .owl-dots {
    width: 40px;
    right: auto;
    left: 45%;
    bottom: 40px;
  }
}
@media (max-width: 575px) {
  .hero-one__carousel .owl-dots {
    width: 40px;
    right: auto;
    left: 40%;
    bottom: 40px;
  }
}
.hero-one__carousel .owl-dots .owl-dot {
  display: block;
  margin: 6px 0;
}
@media (max-width: 767px) {
  .hero-one__carousel .owl-dots .owl-dot {
    margin: 0 6px;
  }
}
.hero-one__carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: var(--voldor-white, #fff);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}
.hero-one__carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 1px solid var(--voldor-white, #fff);
  transform: scale(2.3);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.hero-one__carousel .owl-dots .owl-dot:hover span,
.hero-one__carousel .owl-dots .owl-dot.active span {
  background-color: #eac337;
}
.hero-one__carousel .owl-dots .owl-dot:hover span::after,
.hero-one__carousel .owl-dots .owl-dot.active span::after {
  visibility: visible;
  opacity: 1;
}
.hero-one__item {
  position: relative;
  padding: 165px 0px 190px;
  height: 860px;
}
@media (max-width: 1199px) {
  .hero-one__item {
    padding: 150px 0px 150px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .hero-one__item {
    padding: 120px 0px 120px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero-one__item {
    padding: 100px 0px 100px;
    height: auto;
  }
}
.hero-one__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transition: all 1500ms ease-in-out;
}
.hero-one__item__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    107.77deg,
    #241f21 22.16%,
    rgba(0, 0, 0, 0.83) 90.09%
  );
  opacity: 0.85;
}
.hero-one__item__shape {
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(100%);
  opacity: 0;
}
.hero-one__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.hero-one__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 800;
  font-size: 100px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  display: inline-block;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}
.hero-one__title__top {
  display: inline-block;
  background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.8);
  padding: 5px 40px 10px;
}
@keyframes bgColor {
  0% {
    background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.8);
  }
  50% {
    background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.9);
  }
  100% {
    background: rgba(var(--voldor-base-rgb, 174, 143, 98), 0.8);
  }
}
.hero-one__title__overlay {
  background-color: var(--voldor-white, #fff);
  width: 25%;
  transform: scaleX(1);
  height: calc(100% - 2px);
  display: block;
  position: absolute;
  transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2s;
  z-index: 1;
}
.hero-one__title__overlay:nth-child(2),
.hero-one__title__overlay:nth-child(4) {
  top: 1px;
}
.hero-one__title__overlay:nth-child(1),
.hero-one__title__overlay:nth-child(3) {
  bottom: 1px;
}
.hero-one__title__overlay:nth-child(2) {
  left: 25%;
}
.hero-one__title__overlay:nth-child(4) {
  left: 75%;
}
.hero-one__title__overlay:nth-child(1) {
  left: 0;
}
.hero-one__title__overlay:nth-child(3) {
  left: 50%;
}
@media (max-width: 1300px) {
  .hero-one__title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .hero-one__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-one__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-one__title {
    font-size: 40px;
  }
}
.hero-one__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
  color: var(--voldor-border-color, #f4f2ee);
  max-width: 678px;
  width: 100%;
  margin-bottom: 40px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(500px);
  opacity: 0;
}
.hero-one__btn {
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}
.hero-one__btn a::after {
  background: var(--voldor-white, #fff);
}
.hero-one__btn a:hover {
  color: var(--voldor-secondary, #241f21);
}
.hero-one .active .hero-one__item__bg {
  transition: all 1500ms ease-in-out;
  animation: heroScale 12s linear;
  animation-delay: 1100ms;
}
@keyframes heroScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
.hero-one .active .hero-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.hero-one .active .hero-one__title__top {
  animation: bgColor 3s ease-in-out infinite;
}
.hero-one .active .hero-one__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.hero-one .active .hero-one__title__overlay {
  transform: scaleX(0);
}
.hero-one .active .hero-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.hero-one .active .hero-one__item__shape {
  transform: translateX(0%);
  opacity: 1;
  transition-delay: 1700ms;
}
.hero-one__thumb {
  width: 280px;
  height: 110px;
  overflow: hidden;
  transform: rotate(90deg) translateX(30%);
  position: absolute;
  top: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media (max-width: 1500px) {
  .hero-one__thumb {
    left: -5.5%;
  }
}
@media (max-width: 1299px) {
  .hero-one__thumb {
    top: auto;
    bottom: 50px;
    left: 0;
    transform: rotate(0deg) translateX(0%);
  }
}
@media (max-width: 1199px) {
  .hero-one__thumb {
    top: auto;
    bottom: 20px;
    left: 0;
    transform: rotate(0deg) translateX(0%);
  }
}
@media (max-width: 991px) {
  .hero-one__thumb {
    display: none;
    padding: 180px 0px 120px;
    height: auto;
  }
}
.hero-one__thumb__carousel .active.center .hero-one__thumb__item {
  transform: scaleY(1.2);
  border: 7px solid var(--voldor-white, #fff);
}
.hero-one__thumb .owl-carousel .owl-stage-outer {
  overflow: none !important;
}
.hero-one__thumb__item {
  display: block;
  position: relative;
}
.hero-one__thumb__item__meta-thumb {
  display: block;
  position: relative;
}
.hero-one__thumb__item__meta-thumb img {
  object-fit: cover;
  text-align: center;
  height: 100%;
}

.hero-two__carousel {
  position: relative;
  width: 100%;
}
.hero-two__carousel .owl-dots {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  text-align: left;
  bottom: 70px;
  transform: translateX(-35%);
  width: 140px;
  left: 50%;
}
@media (max-width: 1400px) {
  .hero-two__carousel .owl-dots {
    width: 60px;
  }
}
@media (max-width: 1199px) {
  .hero-two__carousel .owl-dots {
    width: 40px;
  }
}
@media (max-width: 991px) {
  .hero-two__carousel .owl-dots {
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    left: 47%;
    top: auto;
  }
}
.hero-two__carousel .owl-dots .owl-dot {
  display: block;
  margin: 6px 0;
}
@media (max-width: 767px) {
  .hero-two__carousel .owl-dots .owl-dot {
    margin: 0 6px;
  }
}
.hero-two__carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: var(--voldor-white, #fff);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}
.hero-two__carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 1px solid var(--voldor-white, #fff);
  transform: scale(2.3);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.hero-two__carousel .owl-dots .owl-dot:hover span,
.hero-two__carousel .owl-dots .owl-dot.active span {
  background-color: #eac337;
}
.hero-two__carousel .owl-dots .owl-dot:hover span::after,
.hero-two__carousel .owl-dots .owl-dot.active span::after {
  visibility: visible;
  opacity: 1;
}
.hero-two .container {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}
.hero-two__item {
  position: relative;
  padding: 368px 0px 205px;
  height: 955px;
}
@media (max-width: 1199px) {
  .hero-two__item {
    padding: 250px 0px 180px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .hero-two__item {
    padding: 180px 0px 150px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero-two__item {
    padding: 180px 0px 120px;
    height: auto;
  }
}
.hero-two__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transition: all 1500ms ease-in-out;
}
.hero-two__item__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    107.77deg,
    #241f21 22.16%,
    rgba(0, 0, 0, 0.83) 90.09%
  );
  opacity: 0.8;
}
.hero-two__item__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-100%);
  opacity: 0;
}
@media (max-width: 991px) {
  .hero-two__item__shape {
    display: none;
  }
}
.hero-two__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.hero-two__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 800;
  font-size: 100px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  text-align: center;
  opacity: 0;
  transition: transform 1500ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
.hero-two__title__overlay {
  background-color: var(--voldor-white, #fff);
  width: 25%;
  transform: scaleX(1);
  height: calc(100% - 2px);
  display: block;
  position: absolute;
  transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2s;
  z-index: 1;
}
.hero-two__title__overlay:nth-child(2),
.hero-two__title__overlay:nth-child(4) {
  top: 1px;
}
.hero-two__title__overlay:nth-child(1),
.hero-two__title__overlay:nth-child(3) {
  bottom: 1px;
}
.hero-two__title__overlay:nth-child(2) {
  left: 25%;
}
.hero-two__title__overlay:nth-child(4) {
  left: 75%;
}
.hero-two__title__overlay:nth-child(1) {
  left: 0;
}
.hero-two__title__overlay:nth-child(3) {
  left: 50%;
}
@media (max-width: 1300px) {
  .hero-two__title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .hero-two__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-two__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-two__title {
    font-size: 40px;
  }
}
.hero-two__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
  color: var(--voldor-white, #fff);
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
  transition: transform 1500ms ease, opacity 1300ms ease;
  transform: translateY(500px);
  opacity: 0;
}
.hero-two__btn {
  transition: transform 1500ms ease, opacity 1300ms ease;
  transform: translateY(200px);
  text-align: center;
}
.hero-two__btn a::after {
  background: var(--voldor-white, #fff);
}
.hero-two__btn a:hover {
  color: var(--voldor-secondary, #241f21);
}
.hero-two .active .hero-two__item__bg {
  animation: heroScale 12s linear;
  animation-delay: 1100ms;
}
@keyframes heroScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
.hero-two .active .hero-two__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}
.hero-two .active .hero-two__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}
.hero-two .active .hero-two__title__overlay {
  transform: scaleX(0);
}
.hero-two .active .hero-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.hero-two .active .hero-two__item__shape {
  transform: translateX(0%);
  opacity: 1;
  transition-delay: 1700ms;
}

.hero-three .owl-dots {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  text-align: left;
  top: 40%;
  transform: translateX(-35%);
  width: 140px;
  left: 5%;
}
@media (max-width: 1400px) {
  .hero-three .owl-dots {
    left: 1%;
  }
}
@media (max-width: 991px) {
  .hero-three .owl-dots {
    flex-direction: row;
    top: auto;
    bottom: 50px;
    left: 10%;
    transform: translateX(50%);
  }
}
.hero-three .owl-dots .owl-dot {
  display: block;
  margin: 6px 0;
}
@media (max-width: 767px) {
  .hero-three .owl-dots .owl-dot {
    margin: 0 6px;
  }
}
.hero-three .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: var(--voldor-white, #fff);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}
.hero-three .owl-dots .owl-dot span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 1px solid var(--voldor-white, #fff);
  transform: scale(2.3);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.hero-three .owl-dots .owl-dot:hover span,
.hero-three .owl-dots .owl-dot.active span {
  background-color: #eac337;
}
.hero-three .owl-dots .owl-dot:hover span::after,
.hero-three .owl-dots .owl-dot.active span::after {
  visibility: visible;
  opacity: 1;
}
.hero-three__item {
  position: relative;
  padding: 220px 0px 233px;
  height: 927px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .hero-three__item {
    padding: 180px 0px 180px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .hero-three__item {
    padding: 120px 0px 100px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero-three__item {
    padding: 100px 0px 80px;
    height: auto;
  }
}
.hero-three__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.hero-three__item__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    107.77deg,
    #241f21 22.16%,
    rgba(0, 0, 0, 0.83) 90.09%
  );
  opacity: 0.9;
}
.hero-three__item__shape {
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(100%);
}
@media (max-width: 767px) {
  .hero-three__item__shape {
    display: none;
  }
}
.hero-three__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.hero-three__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 800;
  font-size: 90px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  display: inline-block;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
  border-bottom: 1px solid #eac337;
  padding-bottom: 20px;
}
.hero-three__title__top {
  display: inline-block;
  color: #eac337;
}
.hero-three__title__overlay {
  background-color: var(--voldor-white, #fff);
  width: 25%;
  transform: scaleX(1);
  height: calc(100% - 2px);
  display: block;
  position: absolute;
  transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 2s;
  z-index: 1;
}
.hero-three__title__overlay:nth-child(2),
.hero-three__title__overlay:nth-child(4) {
  top: 1px;
}
.hero-three__title__overlay:nth-child(1),
.hero-three__title__overlay:nth-child(3) {
  bottom: 1px;
}
.hero-three__title__overlay:nth-child(2) {
  left: 25%;
}
.hero-three__title__overlay:nth-child(4) {
  left: 75%;
}
.hero-three__title__overlay:nth-child(1) {
  left: 0;
}
.hero-three__title__overlay:nth-child(3) {
  left: 50%;
}
@media (max-width: 1300px) {
  .hero-three__title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .hero-three__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-three__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .hero-three__title {
    font-size: 40px;
  }
}
.hero-three__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
  color: var(--voldor-border-color, #f4f2ee);
  max-width: 760px;
  width: 100%;
  margin-bottom: 40px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(500px);
  opacity: 0;
}
.hero-three__btn {
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}
.hero-three__btn a::after {
  background: var(--voldor-white, #fff);
}
.hero-three__btn a:hover {
  color: var(--voldor-secondary, #241f21);
}
.hero-three .active .hero-three__item__bg {
  animation: heroScale 12s linear;
  animation-delay: 1100ms;
}
@keyframes heroScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
.hero-three .active .hero-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.hero-three .active .hero-three__text {
  opacity: 0.5;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.hero-three .active .hero-three__title__overlay {
  transform: scaleX(0);
}
.hero-three .active .hero-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.hero-three .active .hero-three__item__shape {
  transform: translateX(0%);
  opacity: 1;
  transition-delay: 1700ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  padding-top: 120px;
  background: var(--voldor-white, #fff);
}
@media (max-width: 991px) {
  .feature-one {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .feature-one {
    padding-top: 80px;
  }
}
.feature-one__item {
  position: relative;
  z-index: 1;
  background: var(--voldor-gray, #e6e0d8);
  padding-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.feature-one__item__top {
  background: var(--voldor-text, #797577);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}
.feature-one__item__top__icon {
  max-width: 94px;
  width: 100%;
  height: 94px;
  background: var(--voldor-secondary, #241f21);
  color: #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 55px;
  transition: all 0.4s ease-in-out;
}
.feature-one__item__top__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 146%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
}
.feature-one__item__top__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.feature-one__item__top__title a:hover {
  background-size: 100% 1px;
}
.feature-one__item__content {
  margin-left: 20px;
  background: var(--voldor-white, #fff);
  padding: 20px 30px 20px 25px;
  position: relative;
  margin-top: -20px;
}
.feature-one__item__content::after {
  content: "";
  width: 40px;
  height: 60px;
  background: var(--voldor-gray, #e6e0d8);
  position: absolute;
  bottom: 0;
  right: 0px;
  transition: all 0.4s ease-in-out;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.feature-one__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0;
  padding-bottom: 0;
}
.feature-one__item:hover {
  background: var(--voldor-border-color, #f4f2ee);
}
.feature-one__item:hover .feature-one__item__top {
  background: var(--voldor-secondary, #241f21);
}
.feature-one__item:hover .feature-one__item__top__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.feature-one__item:hover .feature-one__item__top__icon i {
  animation: bounceIn 1s linear;
}
.feature-one__item:hover .feature-one__item__content::after {
  background: var(--voldor-border-color, #f4f2ee);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  padding: 40px 0px;
  background: var(--voldor-white, #fff);
}
.about-one--page {
  padding-top: 80px;
}
@media (max-width: 991px) {
  .about-one--page {
    padding-top: 50px 0px;
  }
}
@media (max-width: 767px) {
  .about-one--page {
    padding-top: 50px 0px;
  }
}
@media (max-width: 991px) {
  .about-one {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .about-one {
    padding: 80px 0px;
  }
}
.about-one__left {
  position: relative;
  margin-left: -30px;
  margin-right: 80px;
}
@media (max-width: 1199px) {
  .about-one__left {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.about-one__thumb {
  position: relative;
}
@media (max-width: 1199px) {
  .about-one__thumb {
    margin-bottom: 30px;
  }
}
.about-one__thumb__item {
  position: relative;
  z-index: 2;
}
.about-one__thumb__item img {
  object-fit: cover;
  width: auto;
}
@media (max-width: 1199px) {
  .about-one__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}
.about-one__thumb__item--two {
  position: relative;
  margin-top: -175px;
  margin-left: -100px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .about-one__thumb__item--two {
    margin-top: -100px;
  }
  .about-one__thumb__item--two img {
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .about-one__thumb__item--two {
    margin-top: -100px;
    margin-left: -50px;
  }
  .about-one__thumb__item--two img {
    object-fit: cover;
    width: 70%;
  }
}
.about-one__thumb::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -45px;
  width: 226px;
  height: 325px;
  background: transparent;
  border: 15px solid #eac337;
  /* z-index: -1; */
  animation: topBottom 3s ease-in-out infinite;
}
.about-one__funfact__item {
  position: absolute;
  bottom: 20px;
  right: 15px;
  background: #eac337;
  text-align: center;
  display: inline-block;
  padding: 20px;
  z-index: 3;
}
.about-one__funfact__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  margin-bottom: -5px;
  padding-bottom: 0;
}
.about-one__funfact__item__count {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 52.1212px;
  line-height: 65%;
  padding-bottom: 0;
  color: var(--voldor-white, #fff);
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 18px;
}
.about-one__right {
  margin-left: -30px;
}
@media (max-width: 1199px) {
  .about-one__right {
    margin-left: 0;
  }
}
.about-one__top {
  margin-bottom: 25px;
}
.about-one__top .sec-title {
  padding-bottom: 20px;
}
.about-one__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
}
.about-one__progress {
  margin-bottom: 40px;
}
.about-one__progress + .team-skills__progress {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .about-one__progress + .team-skills__progress {
    margin-top: 34px;
  }
}
.about-one__progress__title {
  margin-bottom: 16px;
  text-shadow: 0 0 0 0.1px currentColor;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.about-one__progress__bar {
  width: 100%;
  height: 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--voldor-border-color, #f4f2ee);
}
.about-one__progress__inner {
  position: absolute;
  height: 8px;
  border-radius: 4px;
  background-color: var(--voldor-secondary, #241f21);
  transition: all 700ms linear;
  width: 0px;
}
.about-one__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  margin-bottom: 8px;
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}
.about-one__feature {
  display: flex;
  align-items: center;
  gap: 35px;
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .about-one__feature {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-one__feature__item {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 50%;
}
.about-one__feature__item:hover .about-one__feature__icon {
  background: #0c4da2;
}
.about-one__feature__item:hover .about-one__feature__icon i {
  animation: bounceIn 1s linear;
}
.about-one__feature__icon {
  max-width: 70px;
  padding: 8px;
  height: 70px;
  border-radius: 50%;
  background: var(--voldor-border-color, #f4f2ee);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: #eac337;
  line-height: 1;
  transition: all 0.4s ease-in-out;

  img {
    width: 100%;
    height: 100%;
  }
}
.about-one__feature__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  max-width: 160px;
  width: 100%;
}
.about-one__list {
  margin-bottom: 48px;
}
.about-one__list__item {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--voldor-text, #797577);
  text-transform: capitalize;
}
.about-one__list__item i {
  color: #eac337;
  margin-right: 15px;
  font-size: 19px;
  transition: all 0.4s ease-in-out;
}
.about-one__list__item:hover i {
  color: #0c4da2;
}
.about-one__list__item + .about-one__list__item {
  margin-top: 15px;
}

.about-two {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .about-two {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0px;
  }
}
.about-two__left {
  margin-left: -125px;
}
@media (max-width: 991px) {
  .about-two__left {
    margin-left: auto;
  }
}
.about-two__thumb {
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .about-two__thumb {
    display: block;
  }
}
.about-two__thumb__item {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .about-two__thumb__item img {
    width: 100%;
    object-fit: cover;
  }
}
.about-two__thumb__call {
  position: relative;
  margin-left: 45px;
  margin-right: 45px;
  margin-top: -55px;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .about-two__thumb__call {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 767px) {
  .about-two__thumb__call {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.about-two__thumb__call__item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #eac337;
  padding: 20px 25px;
}
.about-two__thumb__call__item:hover .about-two__thumb__icon {
  background: rgba(var(--voldor-white-rgb, 255, 255, 255), 0.07);
}
.about-two__thumb__call__item:hover .about-two__thumb__icon i {
  transform: rotateY(180deg);
}
.about-two__thumb__icon {
  max-width: 60px;
  width: 100%;
  height: 58px;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--voldor-white, #fff);
  transition: all 0.4s ease-in-out;
}
.about-two__thumb__icon i {
  color: inherit;
  transition: all 0.4s ease-in-out;
}
.about-two__thumb__subtitle {
  display: block;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 189%;
  text-transform: capitalize;
  color: var(--voldor-gray, #e6e0d8);
  margin-top: -7px;
  margin-bottom: -7px;
}
.about-two__thumb__number {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 163%;
  color: var(--voldor-white, #fff);
  text-transform: uppercase;
  margin-top: -7px;
  margin-bottom: -7px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-two__thumb__number:hover {
  background-size: 100% 1px;
}
.about-two__right {
  margin-left: -30px;
}
@media (max-width: 1199px) {
  .about-two__right {
    margin-left: 0px;
  }
}
.about-two__top {
  margin-bottom: 30px;
}
.about-two__top .sec-title {
  padding-bottom: 20px;
}
.about-two__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
}
.about-two__highlight {
  background: var(--voldor-border-color, #f4f2ee);
  padding: 15px 10px 15px 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .about-two__highlight {
    padding: 30px;
  }
}
.about-two__highlight__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--voldor-secondary, #241f21);
  margin-top: -8px;
  margin-bottom: -7px;
  transition: all 0.4s ease-in-out;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  .about-two__highlight__text {
    font-size: 15px;
  }
}
.about-two__highlight::after {
  position: absolute;
  content: "";
  top: 15%;
  left: 0;
  width: 5px;
  height: 70%;
  background: #eac337;
  animation: topBottom 3s ease-in-out infinite;
}

.about-two__feature {
  margin-bottom: 50px;
}
.about-two__feature__left {
  margin-right: -20px;
}
.about-two__feature__funfact {
  padding: 15px;
  border: 1px solid var(--voldor-gray, #e6e0d8);
}
.about-two__funfact__item {
  background: var(--voldor-border-color, #f4f2ee);
  padding: 13px 10px 14px 25px;
  transition: all 0.4s ease-in-out;
}
.about-two__funfact__item__count {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 113%;
  text-transform: uppercase;
  color: #eac337;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: -3px;
  padding-bottom: 0;
}
.about-two__funfact__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-two__funfact__item:hover {
  background: var(--voldor-gray, #e6e0d8);
}
.about-two__feature__right {
  margin-left: 10px;
}
.about-two__feature__list {
  margin-bottom: 0;
}
.about-two__feature__list__item {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--voldor-text, #797577);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.about-two__feature__list__item i {
  color: #eac337;
  margin-right: 10px;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.about-two__feature__list__item:hover i {
  color: var(--voldor-secondary, #241f21);
}
.about-two__feature__list__item + .about-two__feature__list__item {
  margin-top: 13px;
}

.about-three {
  padding: 0px 0px 120px;
}
@media (max-width: 991px) {
  .about-three {
    padding: 0px 0px 100px;
  }
}
@media (max-width: 767px) {
  .about-three {
    padding: 0px 0px 80px;
  }
}
.about-three__left {
  margin-right: -30px;
}
@media (max-width: 1199px) {
  .about-three__left {
    margin-right: 0;
  }
}
.about-three__right {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .about-three__right {
    margin-left: 0;
  }
}
.about-three__top {
  margin-bottom: 30px;
}
.about-three__top .sec-title {
  padding-bottom: 20px;
}
.about-three__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-three__feature {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
}
.about-three__feature__left {
  margin-right: 20px;
}
.about-three__feature__right {
  position: relative;
  z-index: 1;
}
.about-three__feature__item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 50px;
}
.about-three__feature__item__icon {
  max-width: 48px;
  width: 100%;
  height: 48px;
  background: var(--voldor-border-color, #f4f2ee);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #eac337;
  transition: all 0.4s ease-in-out;
}
.about-three__feature__item__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-three__feature__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-three__feature__item__title a:hover {
  background-size: 100% 1px;
}
.about-three__feature__item:hover .about-three__feature__item__icon {
  background: var(--voldor-secondary, #241f21);
}
.about-three__feature__item:hover .about-three__feature__item__icon i {
  animation: bounceIn 1s linear;
}
.about-three__feature__item + .about-three__feature__item {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
}
.about-three__feature__list {
  margin-bottom: 0;
  margin-left: 0;
  background: var(--voldor-border-color, #f4f2ee);
  padding: 30px 25px 30px;
  margin-left: -55px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .about-three__feature__list {
    margin-left: 0px;
  }
}
@media (max-width: 575px) {
  .about-three__feature__list {
    margin-left: 0px;
  }
}
.about-three__feature__list__item {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  color: var(--voldor-text, #797577);
}
.about-three__feature__list__item i {
  font-size: 18px;
  margin-right: 10px;
  color: var(--voldor-secondary, #241f21);
}
.about-three__feature__list__item + .about-three__feature__list__item {
  margin-top: 12px;
}
.about-three__feature__list::after {
  position: absolute;
  bottom: -10px;
  margin-left: -40px;
  margin-right: 15px;
  content: "";
  background: #eac337;
  left: 0;
  right: 0;
  height: 30px;
  z-index: -1;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .about-three__feature__list::after {
    margin-left: 15px;
  }
}
@media (max-width: 575px) {
  .about-three__feature__list::after {
    margin-left: 15px;
  }
}
.about-three__feature__list:hover {
  background: var(--voldor-gray, #e6e0d8);
}
.about-three__author {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .about-three__author {
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .about-three__author {
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
  }
}
.about-three__author__man {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-three__author__image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 50%;
  border: 3px solid #eac337;
}
.about-three__author__image img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
}
.about-three__author__sig {
  display: block;
}
.about-three__author__deg {
  display: block;
  margin-top: 0;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 179%;
  text-transform: uppercase;
  color: var(--voldor-text, #797577);
}
.about-three__author__left + .about-three__author__right {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid var(--voldor-gray, #e6e0d8);
  width: 100%;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .about-three__author__left + .about-three__author__right {
    margin-left: 0;
    padding-left: 0;
    border-left: 0px solid var(--voldor-gray, #e6e0d8);
  }
}
@media (max-width: 575px) {
  .about-three__author__left + .about-three__author__right {
    margin-left: 0;
    padding-left: 0;
    border-left: 0px solid var(--voldor-gray, #e6e0d8);
  }
}
.about-three__author__call {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-three__author__call__icon {
  max-width: 53px;
  width: 100%;
  height: 53px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #eac337;
  background: var(--voldor-secondary, #241f21);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.about-three__author__call__icon::after {
  content: "";
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: #eac337;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.about-three__author__call__dec {
  display: block;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 179%;
  text-transform: uppercase;
  color: var(--voldor-text, #797577);
  margin-bottom: 5px;
}
.about-three__author__call__number {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  text-transform: uppercase;
  color: #eac337;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-three__author__call__number:hover {
  background-size: 100% 1px;
}
.about-three__author__call:hover .about-three__author__call__icon {
  color: var(--voldor-white, #fff);
}
.about-three__author__call:hover .about-three__author__call__icon::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-three__thumb {
  position: relative;
  z-index: 1;
}
.about-three__thumb__item--one {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .about-three__thumb__item--one img {
    object-fit: cover;
    width: 100%;
  }
}
.about-three__thumb__item--two {
  position: absolute;
  bottom: 0;
  background: var(--voldor-white, #fff);
  border-top: 20px solid var(--voldor-white, #fff);
  border-right: 20px solid var(--voldor-white, #fff);
  z-index: 1;
}
@media (max-width: 767px) {
  .about-three__thumb__item--two img {
    object-fit: cover;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-card {
  padding-top: 56px;
  padding-bottom: 45px;
}
@media (max-width: 767px) {
  .service-card {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-card__inner {
  background: var(--voldor-white, #fff);
  box-shadow: 0px 6px 30px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-top: 1px;
  padding-bottom: 1px;
}
.service-card__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--voldor-gray, #e6e0d8);
  width: 41px;
  height: 56px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.service-card__icon {
  position: relative;
  margin-top: -57px;
  margin-left: 41px;
  width: 120px;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--voldor-secondary, #241f21);
  font-size: 65px;
  color: var(--voldor-white, #fff);
  transition: all 0.4s ease-in-out;
}
.service-card__content {
  margin: 25px 20px 20px 40px;
}
.service-card__content__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 200%;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
}
.service-card__content__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__content__title a:hover {
  background-size: 100% 1px;
}
.service-card__content__title a:hover {
  color: #eac337;
}
.service-card__content__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-card__thumb {
  position: relative;
  margin-left: 40px;
  margin-bottom: -45px;
  overflow: hidden;
}
.service-card__thumb__item {
  position: relative;
}
.service-card__thumb__item img {
  object-fit: cover;
  width: 100%;
}
.service-card__thumb a {
  position: absolute;
  bottom: 20px;
  text-transform: uppercase;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-white, #fff);
  padding: 4px 20px;
  transform: translateX(-100%);
}
.service-card__thumb::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  transition: all 0.4s ease-in-out;
}
.service-card:hover .service-card__thumb::after {
  bottom: 0%;
  height: 100%;
}
.service-card:hover .service-card__thumb a {
  transform: translateX(0%);
  transition-duration: 1000ms;
}
.service-card:hover .service-card__icon {
  background: #eac337;
}
.service-card:hover .service-card__icon i {
  animation: bounceIn 1s linear;
}

.service-card-two {
  position: relative;
  background: var(--voldor-white, #fff);
}
.service-card-two__thumb {
  max-height: 395px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card-two__thumb__item {
  position: relative;
}
.service-card-two__thumb__item img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.service-card-two__thumb__item::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  transition: all 0.4s ease-in-out;
}
.service-card-two__thumb__link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 65px;
  background: var(--voldor-white, #fff);
  font-size: 22px;
  color: var(--voldor-text, #797577);
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-card-two__thumb__link:hover {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.service-card-two__thumb__link:hover i {
  transform: scale(1.2) rotate(30deg);
}
.service-card-two__content {
  position: relative;
  display: flex;
  z-index: 1;
  align-items: center;
  gap: 10px;
  background: var(--voldor-white, #fff);
}
.service-card-two__content::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #eac337;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.service-card-two__icon {
  width: 65px;
  height: 65px;
  background: #0c4da2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: #eac337;
  padding: 6px;
}

.service-card-two__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 240%;
  text-transform: uppercase;
  margin-bottom: 0;
}
.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:hover
  .service-card-two__thumb
  .service-card-two__thumb__item
  img {
  transform: scale(1.1);
}
.service-card-two:hover
  .service-card-two__thumb
  .service-card-two__thumb__item::after {
  bottom: 0%;
  height: 100%;
}
.service-card-two:hover .service-card-two__content::after {
  width: 100%;
}
.service-card-two:hover .service-card-two__title {
  color: var(--voldor-white, #fff);
}
.service-card-two:hover .service-card-two__icon i {
  animation: bounceIn 1s linear;
}

.service-page {
  background: var(--voldor-white, #fff);
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .service-page {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .service-page {
    padding: 80px 0px;
  }
}
.service-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  height: 635px;
  mix-blend-mode: overlay;
}
.service-page--two {
  padding-bottom: 170px;
}
@media (max-width: 1199px) {
  .service-page--two {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .service-page--two {
    padding-bottom: 80px;
  }
}
.service-page--home {
  position: relative;
  z-index: 1;
}
.service-page--home .container {
  max-width: 1600px;
}
.service-page--home::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 635px;
  z-index: -2;
  background-color: var(--voldor-border-color, #f4f2ee);
}

.service-two {
  position: relative;
  z-index: 1;
  padding: 40px 0px;
  background: var(--voldor-secondary, #241f21);
}
@media (max-width: 991px) {
  .service-two {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .service-two {
    padding: 80px 0px;
  }
}
.service-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.service-two .sec-title .sec-title__title {
  color: var(--voldor-white, #fff);
}
.service-two__item {
  background: var(--voldor-white, #fff);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.service-two__item__top {
  padding: 35px 25px 1px 30px;
  position: relative;
}
.service-two__item__top__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 160%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  margin-top: -10px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.service-two__item__top__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-two__item__top__title a:hover {
  background-size: 100% 1px;
}
.service-two__item__top__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  color: var(--voldor-text, #797577);
  padding-bottom: 0;
  margin-bottom: 33px;
  transition: all 0.4s ease-in-out;
}
.service-two__item__top__icon {
  width: 90px;
  height: 85px;
  background: var(--voldor-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 52px;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: -86px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.service-two__item__top::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/shapes/service-2-2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.2;
}
.service-two__item__thumb {
  position: relative;
}
.service-two__item__thumb img {
  object-fit: cover;
  width: 100%;
}
.service-two__item__thumb__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.service-two__item__thumb::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.7);
  transition: all 0.4s ease-in-out;
}
.service-two__item:hover {
  background: #eac337;
}
.service-two__item:hover .service-two__item__top__title {
  color: var(--voldor-white, #fff);
}
.service-two__item:hover .service-two__item__top__text {
  color: var(--voldor-gray, #e6e0d8);
}
.service-two__item:hover .service-two__item__top__icon {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.service-two__item:hover .service-two__item__top__icon i {
  animation: bounceIn 1s linear;
}
.service-two__item:hover .service-two__item__thumb__shape {
  visibility: visible;
  opacity: 0.6;
}
.service-two__item:hover .service-two__item__thumb::after {
  height: 100%;
}
.service-two__carousel .owl-nav {
  display: none !important;
}
.service-two__carousel .owl-dots {
  gap: 32px !important;
}
.service-two__carousel .owl-dots .owl-dot span {
  border: none !important;
  background: var(--voldor-text, #797577) !important;
  border-radius: 50% !important;
}
.service-two__carousel .owl-dots .owl-dot span:hover {
  box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.1) !important;
  background: #eac337 !important;
}
.service-two__carousel .owl-dots .active span {
  box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.1) !important;
  background: #eac337 !important;
}

.service-three {
  padding: 50px 0px 60px;
}

@media (max-width: 991px) {
  .service-three {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .service-three {
    padding: 80px 0px;
  }
}
.service-three__carouse .owl-nav {
  position: absolute;
  top: -40%;
  right: 0;
}
.service-three__carouse .owl-nav button span {
  width: 60px !important;
  height: 60px !important;
  font-size: 19px !important;
  font-weight: 600 !important;
}
.service-three__carouse .owl-nav button span:hover {
  color: var(--voldor-white, #fff) !important;
  background: #eac337 !important;
}
@media (max-width: 991px) {
  .service-three__carouse .owl-nav {
    display: none !important;
  }
}
.service-three__carouse .owl-dots {
  display: none !important;
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  padding: 120px 0;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .service-details {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.service-details__thumbnail {
  margin-bottom: 35px;
}
.service-details__thumbnail img {
  max-width: 100%;
}
.service-details__title {
  margin: 0;
  margin-bottom: 15px;
  color: var(--voldor-secondary, #241f21);
  font-size: 30px;
  font-weight: 700;
  line-height: 156.667%;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.service-details__sub-title {
  margin: 0;
  margin-bottom: 17px;
  color: #eac337;
  font-size: 30px;
  font-weight: 700;
  line-height: 156.667%;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.service-details__text {
  margin: 0;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  font-family: "Mulish", serif;
}
.service-details__text + .service-details__sub-title {
  margin-top: 17px;
}
.service-details__title + .service-details__text {
  margin-top: 22px;
}
.service-details__text + .service-details__title {
  margin-top: 40px;
}
.service-details__text + .service-details__list {
  margin-top: 40px;
}
.service-details__text + .service-details__text {
  margin-top: 35px;
}
.service-details__list {
  margin-bottom: 0;
}
.service-details__list li {
  position: relative;
  color: var(--voldor-secondary, #241f21);
  font-size: 18px;
  font-weight: 600;
  line-height: 261.111%;
  margin-bottom: -5px;
  font-family: "Mulish", serif;
  text-transform: uppercase;
}
.service-details__list li i {
  color: #eac337;
  margin-right: 7px;
}
@media (max-width: 575px) {
  .service-details__list li {
    line-height: 161.111%;
    font-size: 16px;
  }
}
.service-details__list li + li {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .service-details__list li + li {
    margin-top: 0;
  }
}
.service-details__single + .service-details__single {
  margin-top: 35px;
}
.service-details__benefit {
  margin-left: -30px;
}
@media (max-width: 1199px) {
  .service-details__benefit {
    margin-left: 0px;
  }
}
.service-details__benefit__title {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 156.667%;
  color: var(--voldor-secondary, #241f21);
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (min-width: 768px) {
  .service-details__benefit__title {
    font-size: 30px;
  }
}
.service-details__benefit__sub_title {
  margin-top: -3px;
  margin-bottom: 10px;
  color: var(--voldor-secondary, #241f21);
  font-size: 24px;
  font-weight: 700;
  line-height: 195.833%;
  text-transform: uppercase;
  font-family: "Mulish", serif;
}
@media (max-width: 575px) {
  .service-details__benefit__sub_title {
    line-height: 135%;
  }
}
.service-details__benefit__text {
  max-width: 410px;
  color: var(--voldor-text, #797577);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}
.service-details__single-inner .service-details__title {
  margin-top: -10px;
  margin-bottom: 28px;
}
.service-details__inner-item {
  display: flex;
  background: var(--voldor-white, #fff);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
}
.service-details__inner-item .item-icon {
  background: #eac337;
  max-width: 85px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.service-details__inner-item .item-icon .icon {
  font-size: 40px;
  color: var(--voldor-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.service-details__inner-item .item-content {
  padding: 25px 30px 24px 30px;
}
.service-details__inner-item .item__title {
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0;
  padding-bottom: 6px;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2222222222;
  text-transform: uppercase;
}
.service-details__inner-item .item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-details__inner-item .item__title a:hover {
  background-size: 100% 1px;
}
.service-details__inner-item .item__dec {
  padding-bottom: 0;
  margin-bottom: -6px;
  color: var(--voldor-text, #797577);
  font-family: "Mulish", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
}
.service-details__inner-item:hover .item-icon {
  background: var(--voldor-secondary, #241f21);
}
.service-details__inner-item:hover .item-icon .icon {
  color: #eac337;
}
.service-details__inner-item:hover .item-icon .icon i {
  animation: bounceIn 1s linear;
}
.service-details .faq-page__accordion {
  padding-top: 5px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--voldor-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--voldor-black-rgb, 18, 15, 16), 0.08);
}
body.boxed-wrapper .hero-one__thumb {
  left: -5.5%;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  position: relative;
  counter-reset: count;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .work-process-one {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0;
  }
}
.work-process-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}
.work-process-one__item {
  position: relative;
  background: var(--voldor-white, #fff);
  margin-top: 34px;
  padding: 1px 30px 40px;
  max-width: 322px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .work-process-one__item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.work-process-one__item.active {
  background: var(--voldor-secondary, #241f21);
  max-width: 100%;
}
@media (max-width: 991px) {
  .work-process-one__item.active {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.work-process-one__item.active .work-process-one__item__title {
  color: var(--voldor-white, #fff);
}
.work-process-one__item.active .work-process-one__item__text {
  color: var(--voldor-text, #797577);
}
.work-process-one__item.active .work-process-one__item__count {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.work-process-one__item:hover {
  background: var(--voldor-secondary, #241f21);
}
.work-process-one__item:hover .work-process-one__item__title {
  color: var(--voldor-white, #fff);
}
.work-process-one__item:hover .work-process-one__item__text {
  color: var(--voldor-text, #797577);
}
.work-process-one__item:hover .work-process-one__item__count {
  background: #eac337;
  color: var(--voldor-white, #fff);
}
.work-process-one__item__count {
  width: 58px;
  height: 58px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -34px;
  border-radius: 50%;
  background: var(--voldor-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: courseNumber;
  position: relative;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 114%;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}
.work-process-one__item__count::before {
  position: relative;
  z-index: 1;
  content: counters(courseNumber, ".", decimal-leading-zero);
}
.work-process-one__item__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  padding-bottom: 0;
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.work-process-one__item__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  text-align: center;
  margin-bottom: -5px;
  padding-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.work-process-one .col-lg-4:last-child .work-process-one__item {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991px) {
  .work-process-one .col-lg-4:last-child .work-process-one__item {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.work-process-one__line {
  position: absolute;
  top: 63%;
  text-align: center;
  left: 25%;
  z-index: -1;
}
@media (max-width: 991px) {
  .work-process-one__line {
    display: none;
  }
}

/*--------------------------------------------------------------
#Project
--------------------------------------------------------------*/
.project-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .project-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.project-card.project-card-two .project-card__content {
  padding-left: 10px;
  padding-right: 10px;
}
.project-card__image {
  position: relative;
}
.project-card__image img {
  object-fit: cover;
  width: 100%;
}
.project-card__image::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--voldor-secondary-rgb, 36, 31, 33), 0.8);
  transition: all 0.4s ease-in-out;
}
.project-card__content {
  background: var(--voldor-secondary, #241f21);
  padding: 1px 30px 30px;
  position: absolute;
  bottom: -100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.project-card__icon {
  width: 67px;
  height: 67px;
  background: #eac337;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--voldor-white, #fff);
  margin-left: auto;
  margin-right: auto;
  transform: rotate(45deg);
  margin-top: -35px;
  z-index: 1;
  margin-bottom: 45px;
  transition: all 0.4s ease-in-out;
}
.project-card__icon i {
  transform: rotate(-45deg);
}
.project-card__icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid rgba(var(--voldor-gray-rgb, 230, 224, 216), 0.13);
  animation: scale 3s ease-in-out infinite;
}
.project-card__icon:hover {
  background: var(--voldor-white, #fff);
  color: var(--voldor-secondary, #241f21);
}
.project-card__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 196%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  text-align: center;
}
.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__dec {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 294%;
  font-family: "Mulish", serif;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  text-align: center;
  margin-top: -20px;
  margin-bottom: -15px;
}
.project-card:hover .project-card__content {
  bottom: 0px;
}
.project-card:hover .project-card__image::after {
  bottom: 0;
  height: 100%;
}

.project-page {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .project-page {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .project-page {
    padding: 80px 0px;
  }
}
.project-page--home {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .project-page--home {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .project-page--home {
    padding-bottom: 0;
  }
}
.project-page__carousel {
  position: relative;
  z-index: 1;
}
.project-page__carousel .owl-nav {
  margin-top: 0 !important;
  position: absolute;
  top: -25%;
  right: 19.5%;
}
@media (max-width: 991px) {
  .project-page__carousel .owl-nav {
    right: 20px;
    top: -20%;
  }
}
@media (max-width: 767px) {
  .project-page__carousel .owl-nav {
    display: none !important;
  }
}
.project-page__carousel .owl-nav button span {
  width: 60px !important;
  height: 60px !important;
  font-size: 19px !important;
  font-weight: 600 !important;
}
.project-page__carousel .owl-nav button span:hover {
  color: var(--voldor-white, #fff) !important;
  background: #eac337 !important;
}
.project-page__carousel .owl-dots {
  display: none !important;
}

.project-two {
  background: var(--voldor-white, #fff);
  padding: 165px 0px 120px;
}
@media (max-width: 991px) {
  .project-two {
    padding: 145px 0px 100px;
  }
}
@media (max-width: 767px) {
  .project-two {
    padding: 100px 0px 80px;
  }
}
.project-two--home {
  padding-top: 0;
}
.project-two--home .container {
  max-width: 1170px !important;
}
.project-two .container {
  max-width: 1500px;
}
.project-two__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-two__item__bg {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 400ms ease-out;
}
.project-two__item.expand {
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 991px) {
  .project-two__item.expand {
    max-height: 100% !important;
    height: 100% !important;
  }
}
.project-two__item.expand .project-two__item__inner {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  width: 100%;
}
@media (max-width: 1400px) {
  .project-two__item.expand .project-two__item__inner {
    max-height: 500px;
  }
}
@media (max-width: 1199px) {
  .project-two__item.expand .project-two__item__inner {
    max-height: 400px;
  }
}
.project-two__item.expand .project-two__thumb {
  visibility: visible;
  opacity: 1;
}
.project-two__item.expand .project-two__item__bg {
  display: none;
}
.project-two__item.expand .project-two__content {
  transform: translateX(0);
  opacity: 1;
}
.project-two__item.choice {
  width: 100%;
  max-width: 270px;
  height: 526px;
  transition: all 200ms ease;
  overflow: hidden;
}
@media (max-width: 991px) and (min-width: 767px) {
  .project-two__item.choice {
    width: 49%;
    flex: 49%;
  }
}
@media (max-width: 1400px) {
  .project-two__item.choice {
    width: 100%;
    height: 500px;
  }
}
@media (max-width: 1199px) {
  .project-two__item.choice {
    width: 100%;
    max-width: 200px;
    height: 400px;
  }
}
@media (max-width: 991px) {
  .project-two__item.choice {
    max-width: 100%;
    max-height: 400px;
    height: 100%;
  }
}
.project-two__item__inner {
  position: relative;
  visibility: hidden;
  opacity: 1;
}
.project-two__thumb {
  height: 100%;
  width: 100%;
  transition: width 600ms ease;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .project-two__thumb {
    max-width: 100%;
    max-height: 470px;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .project-two__thumb {
    max-width: 570px;
  }
}
.project-two__thumb img {
  object-fit: cover;
}
@media (max-width: 991px) {
  .project-two__thumb img {
    width: 100%;
  }
}
.project-two__content {
  background: var(--voldor-secondary, #241f21);
  padding: 25px 40px 30px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 0;
  right: 130px;
  transform: translateX(-100%);
  transition: transform 1s linear;
  transition-delay: 0.4s;
  opacity: 0;
}
@media (max-width: 1400px) {
  .project-two__content {
    padding: 25px 20px 30px;
    right: 30px;
  }
}
.project-two__content__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 200%;
  text-transform: uppercase;
  color: var(--voldor-white, #fff);
  padding-bottom: 0;
  margin-bottom: 0;
}
.project-two__content__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.project-two__content__title a:hover {
  background-size: 100% 1px;
}
.project-two__content__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
  margin-bottom: 0;
  padding-bottom: 0;
}
.project-two__content__btn {
  position: absolute;
  top: -71px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 79px;
  background: #eac337;
  height: 71px;
  font-size: 23px;
  color: var(--voldor-white, #fff);
  transition: all 0.4s ease-in-out;
}
.project-two__content__btn i {
  transform: rotate(-20deg);
  transition: all 0.3s ease-in-out;
}
.project-two__content__btn:hover i {
  transform: rotate(0deg) scale(1.2);
}

.horizontal-project {
  display: flex;
  width: 100%;
  padding: 0;
  gap: 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .horizontal-project {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
#Project Details
--------------------------------------------------------------*/
.project-details {
  padding: 120px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .project-details {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .project-details {
    padding: 80px 0px;
  }
}
.project-details__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.project-details__inner__title {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 157%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  margin-bottom: 0;
  padding-bottom: 0;
}
.project-details__inner__text {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  background: #eac337;
  color: var(--voldor-white, #fff);
  margin-bottom: 0;
  padding: 3px 5px;
}
.project-details__thumb {
  margin-bottom: 40px;
}
.project-details__thumb img {
  width: 100%;
  object-fit: contain;
}
.project-details__left {
  margin-top: -10px;
}
.project-details__text {
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: var(--voldor-text, #797577);
}
.project-details__text--two {
  color: #eac337;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 167%;
  text-transform: uppercase;
  margin-bottom: 0;
}
.project-details__text + .project-details__text {
  margin-top: 23px;
}
.project-details__list__title {
  margin-top: 23px;
  margin-bottom: 22px;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
  font-family: "Mulish", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 157%;
}
.project-details__list {
  margin-bottom: 30px;
}
.project-details__list__item {
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
}
.project-details__list__item i {
  color: #eac337;
  font-size: 18px;
  margin-right: 15px;
}
.project-details__list__item + .project-details__list__item {
  margin-top: 16px;
}
.project-details__box {
  border-top: 5px solid #eac337;
  background: var(--voldor-white, #fff);
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
}
@media (max-width: 991px) {
  .project-details__box {
    margin-top: 30px;
  }
}
.project-details__box__content {
  padding-bottom: 30px;
}
.project-details__box__text {
  margin-bottom: 0;
  padding-bottom: 0;
  text-shadow: 0 0 0.1px currentColor;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 188%;
  text-transform: uppercase;
  color: var(--voldor-secondary, #241f21);
}
.project-details__box__text__top {
  color: var(--voldor-text, #797577);
  display: block;
  font-family: "Mulish", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  text-transform: capitalize;
}
.project-details__box__text + .project-details__box__text {
  margin-top: 20px;
}
.project-details__box__social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.project-details__box__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  background: var(--voldor-border-color, #f4f2ee);
  justify-content: center;
  align-items: center;
  color: var(--voldor-secondary, #241f21);
  font-size: 12px;
  transition: all 0.4s ease-in-out;
}
.project-details__box__social a:hover {
  color: var(--voldor-white, #fff);
  background: #eac337;
}
.project-details__link {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--voldor-gray, #e6e0d8);
  border-bottom: 1px solid var(--voldor-gray, #e6e0d8);
  padding: 20px 0px;
}
@media (max-width: 1199px) {
  .project-details__link {
    margin-top: 70px;
  }
}
@media (max-width: 991px) {
  .project-details__link {
    margin-top: 50px;
  }
}
.project-details__link__item {
  width: 40px;
  height: 40px;
  background: var(--voldor-border-color, #f4f2ee);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--voldor-secondary, #241f21);
}
.project-details__link__item:hover {
  color: var(--voldor-white, #fff);
  background: #eac337;
}
.project-details__link__left,
.project-details__link__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.project-details__link span {
  font-family: "Mulish", serif;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--voldor-secondary, #241f21);
}

.sticky-header--cloned.main-header--two .main-menu .main-menu__list > li > a {
  color: #000 !important;
}

.sticky-header--cloned.main-header--two
  .main-menu
  .main-menu__list
  > li
  > a.active {
  color: #eac337 !important;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 10px);
  position: relative;
  z-index: 2;
  margin-top: -0.38em;
}

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

.sub-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #eac337;
  margin-bottom: 27px;
  text-transform: uppercase;
  line-height: 24px;
  margin-top: -0.34em;
  position: relative;
  padding-left: 40px;
}

.sub-title:before {
  width: 30px;
  top: auto;
  bottom: 7px;
}

.sub-title:before,
.sub-title:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: #eac337;
}

.sub-title:after {
  width: 20px;
  top: 8px;
}

.title-area .sec-title {
  font-family: "Montserrat", serif;
  font-size: 40px;
  line-height: 46px;
  font-weight: 800;
  padding-bottom: 20px;
  margin-bottom: 0;

  span {
    color: #eac337;
  }
}

.sec-title {
  margin-top: -0.32em;
  font-weight: 600;
  font-size: 3.16rem;
}

.rofiex-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: #0c4da2;
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 30px;
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-family: "Mulish", sans-serif;
  text-align: center;
}

.rofiex-btn::after {
  content: "";
  background-color: #eac337;
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
}

.rofiex-btn i {
  font-size: 12px;
  margin-left: 9px;
  color: inherit;
  display: inline-block;
  transition: all 0.2s ease;
}

.rofiex-btn:hover:after {
  width: 100%;
  height: calc(100% + 30px);
  border-radius: 10px;
}

.funfact-one {
  position: relative;
  z-index: 1;
}
.funfact-one__list {
  position: relative;
  z-index: 2;
  margin: 0;
  background-color: var(--rofiex-white, #fff);
  padding: 0 40px;
  margin-bottom: -117px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.09);
  border-radius: 100px;
}
@media (min-width: 768px) {
  .funfact-one__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .funfact-one__list {
    justify-content: space-between;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .funfact-one__list {
    padding: 0 20px;
  }
}
.funfact-one__item {
  display: flex;
  align-items: center;
  padding: 30px 0 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .funfact-one__item:last-child {
    margin-top: -55px;
  }
}
@media (max-width: 767px) {
  .funfact-one__item {
    padding: 30px 0;
  }
  .funfact-one__item:last-child {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .funfact-one__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .funfact-one__item {
    flex: 0 0 auto;
    max-width: none;
  }
}
.funfact-one__item:hover .funfact-one__item__icon i {
  transform: rotateY(180deg);
}
.funfact-one__item__icon {
  font-size: 110px;
  line-height: 1;
  color: #eac337;
  border-right: 1px solid var(--rofiex-border-color, #dddddd);
  margin-right: 28px;
  padding-right: 28px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .funfact-one__item__icon {
    font-size: 100px;
    margin-right: 20px;
    padding-right: 20px;
  }
}
.funfact-one__item__icon i {
  display: inline-block;
  transition: all 0.6s ease;
}
.funfact-one__item__count {
  margin: 0 0 6px;
  color: var(--rofiex-black2, #222222);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.funfact-one__item__text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.funfact-two {
  position: relative;
}
.funfact-two__list {
  background-color: var(--rofiex-white, #fff);
  padding: 0;
  margin: 0;
  border-radius: 50px;
  border: 1px solid var(--rofiex-border-color, #dddddd);
  list-style: none;
  display: flex;
  overflow: hidden;
  z-index: 2;
  position: relative;
  margin: 0 0 -173px;
}
@media (max-width: 991px) {
  .funfact-two__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .funfact-two__list {
    flex-direction: column;
    padding: 30px 0;
  }
}
.funfact-two__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: all 500ms ease;
  margin: 0;
  padding: 100px 0 55px;
  flex-grow: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .funfact-two__item {
    padding: 45px 0 20px;
  }
}
.funfact-two__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 200px;
  background-color: var(--rofiex-border-color, #dddddd);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .funfact-two__item:not(:last-of-type)::before {
    display: none;
  }
}
.funfact-two__item:hover .funfact-two__icon {
  background-color: var(--rofiex-black, #000000);
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.funfact-two__item:hover .funfact-two__icon::after {
  background-color: var(--rofiex-black, #000000);
}
.funfact-two__icon {
  background-color: #eac337;
  border-bottom: none;
  width: 90px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 45px;
  color: var(--rofiex-white, #fff);
  transition: all 400ms ease;
}
.funfact-two__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: #eac337;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
  transition: all 400ms ease;
}
.funfact-two__icon span {
  display: inline-block;
  top: -10px;
  position: relative;
}
.funfact-two__count {
  font-size: 50px;
  font-weight: 700;
  line-height: 26px;
  color: var(--rofiex-black, #000000);
  margin: 35px 0 17px;
}
.funfact-two__text {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 24px;
  margin: 0;
}

.portfolio-one {
  padding: 160px 0 20px;
  position: relative;
  counter-reset: count;
  height: 700px;
}

@media (max-width: 767px) {
  .portfolio-one {
    padding: 205px 0 80px;
  }
}
.portfolio-one--page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .portfolio-one--page {
    padding: 80px 0;
  }
}
.portfolio-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.portfolio-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.8);
}
.portfolio-one__carousel {
  position: relative;
  padding: 0 35px;
}
@media (max-width: 991px) {
  .portfolio-one__carousel {
    padding: 0 25px;
  }
}

.team-card-two {
  position: relative;
}
.team-card-two__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.team-card-two__image img {
  width: 100%;
  height: auto;
  transition: all 500ms ease;
}
.team-card-two__image img:nth-child(2) {
  transition: 0.4s;
  transform: translatey(-50%) scaley(2);
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-two__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.5);
  transition: all 300ms ease;
  visibility: hidden;
  opacity: 0;
}
.team-card-two:hover .team-card-two__image img:nth-child(2) {
  transform: translatey(0) scaley(1);
  opacity: 1;
  filter: blur(0);
}
.team-card-two:hover .team-card-two__image::after {
  visibility: visible;
  opacity: 1;
}
.team-card-two__content {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 30px;
  padding: 20px 20px 18px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.team-card-two__content::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: #eac337;
  z-index: -1;
  transition: 0.5s;
}
.team-card-two:hover .team-card-two__content::after {
  height: 100%;
}
.team-card-two__title {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.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__title a:hover {
  background-size: 1px 100%;
}
.team-card-two:hover .team-card-two__title {
  color: var(--rofiex-white, #fff);
}
.team-card-two__designation {
  margin: 0;
  text-transform: capitalize;
  transition: 0.3s;
}
.team-card-two:hover .team-card-two__designation {
  color: var(--rofiex-white, #fff);
}
.team-card-two__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 30px;
  top: 30px;
  transform: translateX(100%) scale(0.1);
  z-index: 1;
  transition: 0.7s;
  opacity: 0;
}
.team-card-two__social a {
  width: 45px;
  height: 45px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #eac337;
}

.team-card-two__social a:hover {
  background-color: #eac337;
  color: var(--rofiex-white, #fff);
}
.team-card-two:hover .team-card-two__social {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.portfolio-two {
  padding: 120px 0;
  background-color: var(--rofiex-gray, #f5f1ef);
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-two {
    padding: 80px 0;
  }
}
.portfolio-two__wrapper {
  display: flex;
  width: 100%;
  gap: 30px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .portfolio-two__wrapper {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-two__wrapper {
    flex-direction: column;
  }
}
.portfolio-two__item {
  position: relative;
  overflow: hidden;
  flex: 1;
  overflow: hidden;
  transition: 0.4s;
  margin: 0;
  line-height: 0;
  height: 479px;
}
@media (max-width: 767px) {
  .portfolio-two__item {
    height: auto;
  }
}
.portfolio-two__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  background: linear-gradient(
    transparent,
    var(--rofiex-black2, #222222) 80%,
    var(--rofiex-black2, #222222) 80%
  );
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.portfolio-two__item.active::after {
  height: 100%;
}
.portfolio-two__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
.portfolio-two__item.active {
  flex: 1 1 17.1%;
}
@media (max-width: 1199px) {
  .portfolio-two__item.active {
    flex: 1 1 22%;
  }
}
@media (max-width: 991px) {
  .portfolio-two__item.active {
    flex: 1 1 38%;
  }
}
.portfolio-two__item.active .portfolio-two__item__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 400ms;
}
.portfolio-two__item.active .portfolio-two__item__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 300ms;
}
.portfolio-two__item.active .portfolio-two__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 200ms;
}
.portfolio-two__item__content {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.portfolio-two__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--rofiex-text, #636363);
  margin: 0 0 3px;
  text-transform: capitalize;
  padding: 1px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 700ms ease;
}
.portfolio-two__item__title {
  margin: 0 0 24px;
  padding: 8px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 600ms ease;
}
.portfolio-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-two__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-two__item__title a:hover {
  color: #eac337;
}
.portfolio-two__item__rm {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: #eac337;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--rofiex-white, #fff);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 500ms ease;
}
.portfolio-two__item__rm i {
  display: inline-block;
  transition: all 400ms ease;
}
.portfolio-two__item__rm:hover i {
  transform: rotate(45deg);
}

.portfolio-three {
  padding: 120px 0 90px;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-three {
    padding: 80px 0 50px;
  }
}
.portfolio-three__btn {
  position: relative;
  text-align: right;
  margin: 58px 0 0;
}
@media (max-width: 991px) {
  .portfolio-three__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.portfolio-three .post-filter {
  position: relative;
  height: 479px;
  z-index: 2;
  margin: 0;
  padding: 29px 0 29px 40px;
  list-style: none;
  text-align: right;
}
@media (max-width: 991px) {
  .portfolio-three .post-filter {
    margin: 0 0 30px;
  }
}
.portfolio-three .post-filter::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 100px);
  content: "";
  background-color: var(--rofiex-black, #000000);
}
.portfolio-three .post-filter li {
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: 0.4s;
  background-color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 27px;
  border: 1px solid var(--rofiex-border-color, #dddddd);
  padding: 18px 45px;
  font-size: 22px;
  color: var(--rofiex-black, #000000);
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .portfolio-three .post-filter li {
    padding: 18px 35px;
  }
}
.portfolio-three .post-filter li i {
  font-size: 45px;
  color: #eac337;
  transition: 0.4s;
}
.portfolio-three .post-filter li:hover,
.portfolio-three .post-filter li.active {
  background-color: #eac337;
  color: var(--rofiex-white, #fff);
  border-color: #eac337;
}
.portfolio-three .post-filter li:hover i,
.portfolio-three .post-filter li.active i {
  color: var(--rofiex-white, #fff);
}
.portfolio-three .post-filter li + li {
  margin-top: 30px;
}
.portfolio-three__item {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  margin: 0;
  height: 479px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .portfolio-three__item {
    height: auto;
  }
}
.portfolio-three__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  background: linear-gradient(
    transparent,
    var(--rofiex-black2, #222222) 80%,
    var(--rofiex-black2, #222222) 80%
  );
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.portfolio-three__item:hover::after {
  height: 100%;
}
.portfolio-three__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .portfolio-three__item img {
    min-height: 300px;
  }
}
.portfolio-three__item:hover .portfolio-three__item__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 100ms;
}
.portfolio-three__item:hover .portfolio-three__item__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 300ms;
}
.portfolio-three__item:hover .portfolio-three__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 400ms;
}
.portfolio-three__item__content {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.portfolio-three__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--rofiex-text, #636363);
  margin: 0 0 3px;
  text-transform: capitalize;
  padding: 1px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 500ms ease;
}
.portfolio-three__item__title {
  margin: 0 0 24px;
  padding: 8px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 400ms ease;
}
.portfolio-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;
}
.portfolio-three__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-three__item__title a:hover {
  color: #eac337;
}
.portfolio-three__item__rm {
  position: relative;
  z-index: 2;
  color: #eac337;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 300ms ease;
}
.portfolio-three__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.portfolio-three__item__rm:hover {
  color: var(--rofiex-white, #fff);
}
.portfolio-three__item__rm:hover span {
  background-size: 100% 1px;
}
.portfolio-three__item__rm i {
  font-size: 20px;
}

/*--------------------------------------------------------------
  # Portfolio details
  --------------------------------------------------------------*/
.portfolio-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .portfolio-details {
    padding: 80px 0;
  }
}
.portfolio-details__image {
  position: relative;
  margin: 0 0 30px;
}
.portfolio-details__image img {
  width: 100%;
  height: auto;
}
.portfolio-details__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.portfolio-details__content {
  position: relative;
}
.portfolio-details__content__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.portfolio-details__content__title.mt {
  margin-top: 24px;
}
.portfolio-details__content__text {
  font-weight: 500;
  margin: 0 0 20px;
}
.portfolio-details__content__list {
  margin: 25px 0 37px;
  padding: 0;
  list-style: none;
}
.portfolio-details__content__list li {
  font-size: 16px;
  line-height: 28px;
  color: var(--rofiex-black, #000000);
  font-weight: 600;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-details__content__list li i {
  color: #eac337;
  display: inline-block;
}
.portfolio-details__content__image {
  position: relative;
}
.portfolio-details__content__image img {
  width: 100%;
  height: auto;
}
.portfolio-details__content__image .video-popup {
  width: 62px;
  height: 62px;
  transition: all 500ms ease;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.portfolio-details__content__image .video-popup i {
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  transition: all 500ms ease;
  font-size: 16px;
  color: #eac337;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-details__content__image .video-popup .ripple {
  content: "";
  border: 1px solid var(--rofiex-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.portfolio-details__content__image .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--rofiex-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.portfolio-details__content__image .video-popup:hover i {
  color: var(--rofiex-white, #fff);
  background-color: #eac337;
}
.portfolio-details__content .mb {
  margin-bottom: 21px;
}
.portfolio-details__info {
  position: relative;
  background-color: var(--rofiex-gray, #f5f1ef);
}
.portfolio-details__info__title {
  background-color: #eac337;
  color: var(--rofiex-white, #fff);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  padding: 20px 30px;
}
.portfolio-details__info__list {
  margin: 0;
  padding: 22px 30px;
  list-style: none;
}
.portfolio-details__info__list li {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rofiex-text, #636363);
}
.portfolio-details__info__list li span {
  display: block;
  color: var(--rofiex-black, #000000);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-weight: 700;
  margin: 0 0 5px;
}
.portfolio-details__info__list li + li {
  border-top: 1px solid var(--rofiex-border-color, #dddddd);
  padding: 22px 0 0;
  margin: 23px 0 0;
}
.portfolio-details__service {
  margin-top: 40px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 30px 30px;
}
.portfolio-details__service::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.8);
}
.portfolio-details__service__price {
  position: relative;
  z-index: 1;
  font-size: 50px;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  line-height: 1;
  font-weight: 700;
  color: #eac337;
  margin-bottom: 18px;
}
.portfolio-details__service__title {
  position: relative;
  z-index: 1;
  color: var(--rofiex-white, #fff);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.portfolio-details__service__text {
  position: relative;
  z-index: 1;
  color: var(--rofiex-white, #fff);
  margin: 0 0 82px;
}
.portfolio-details__service .rofiex-btn {
  border-radius: 0;
}
.portfolio-details__service .rofiex-btn::after {
  background-color: var(--rofiex-white, #fff);
}
.portfolio-details__service .rofiex-btn:hover {
  color: #eac337;
}
.portfolio-details .funfact-one__list {
  margin: 60px 0 0;
}

.funfact-one__item__icon img {
  width: 90px;
}

.portfolio-one .sec-title {
  color: #fff;
}

.portfolio-one .owl-dots {
  display: block !important;
}

.portfolio-one {
  background: url("../images/pro-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.rts-section-gap3 {
  padding: 70px 0 40px 0;
}

.about-image-thumbnail-3 {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 150px;
}

[data-sal|="slide"].sal-animate,
body.sal-disabled [data-sal|="slide"] {
  opacity: 1;
  transform: none;
}

[data-sal][data-sal-delay="100"] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

[data-sal="slide-up"] {
  transform: translateY(20%);
}

[data-sal|="slide"] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal] {
  transition-duration: 0.2s; /* Default duration */
  transition-delay: 0s; /* Default delay */
  transition-timing-function: ease; /* Default easing function */
}

[data-sal] {
  transition-duration: var(--sal-duration, 0.2s);
  transition-delay: var(--sal-delay, 0s);
  transition-timing-function: var(--sal-easing, ease);
}

.about-image-thumbnail-3 .image-2 {
  position: absolute;
  right: 0;
  top: -150px;
  animation: jump-2 8s linear infinite;
}

@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.title-three-left {
  position: relative;
}

.title-three-left .bg-title {
  font-size: 76px;
  position: absolute;
  left: 0;
  top: -13px;
  z-index: -1;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(180deg, #0c0a0a 0%, rgba(12, 10, 10, 0) 100%);
  opacity: 0.05;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 93px;
  display: flex;
  align-items: center;
  -webkit-text-stroke: 1px #000000;
}

.title-three-left span.pre-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e9c237;
}

.title-three-left .title {
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: #0c0a0a;
  margin-top: 12px;
}

[data-sal|="slide"].sal-animate,
body.sal-disabled [data-sal|="slide"] {
  opacity: 1;
  transform: none;
}

[data-sal][data-sal-delay="400"] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

.rts-tab-three-start {
  margin-top: 45px;
}

[data-sal="slide-up"] {
  transform: translateY(20%);
}

[data-sal|="slide"] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal] {
  transition-duration: var(--sal-duration, 0.2s);
  transition-delay: var(--sal-delay, 0s);
  transition-timing-function: var(--sal-easing, ease);
}

.rts-tab-three-start ul {
  padding: 0;
  margin: 0;
  border: none;
}

.rts-tab-three-start ul li {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
}

.rts-tab-three-start ul li button[aria-selected="true"] {
  background: #171717 !important;
  color: #fff !important;
}

.rts-tab-three-start ul li button {
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  border: 1px solid #f0f0f0 !important;
  padding: 12px 34px;
}

.single-tab-content-three {
  margin-top: 20px;
}

.single-tab-content-three .disc {
  margin-bottom: 20px;
}

.single-tab-content-three .list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.single-tab-content-three .list-wrapper .single {
  margin-right: 30px;
}

.single-tab-content-three .list-wrapper .single ul {
  margin-left: 20px;
}

.rts-tab-three-start ul {
  padding: 0;
  margin: 0;
  border: none;
}

.single-tab-content-three {
  margin-top: 20px;
  .disc {
    margin-bottom: 20px;
    line-height: 30px;
  }
  .list-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    .single {
      margin-right: 30px;
      width: 50%;
      ul {
        margin-left: 0px;
        li {
          margin-bottom: 10px;
          margin-top: 5px;
          list-style-type: none;
          display: flex;
          /* align-items: center; */
          gap: 8px;
        }
      }
    }
  }
}

.rts-tab-three-start ul li button[aria-selected="true"] {
  background: #eac337 !important;
  color: #fff !important;
}

.rts-tab-three-start ul li button:hover {
  background: #eac337 !important;
  color: #fff !important;
}

.single-tab-content-three {
  margin-top: 20px;
}

.rts-tab-three-start ul li button {
  background: #0c4da2 !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  color: #fff;
  border: 1px solid #f0f0f0 !important;
  padding: 12px 34px;
  border-radius: 0 !important;
}

.rts-about-area .rts-tab-three-start {
  margin-top: 6px;
}

.pl--60 {
  padding-left: 60px !important;
}

.rts-about-area .title {
  font-family: "Montserrat", serif;
  font-size: 40px;
  line-height: 46px;
  font-weight: 800;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.about-three-wrapper {
  padding-right: 30px;
}

.sliding-text {
  position: relative;
  display: block;
  z-index: 3;
  padding: 20px 0;
  /* rotate: -3deg; */
  overflow: hidden;
}
.sliding-text__inner {
  position: relative;
  display: block;
  padding: 0px 0px;
  border-top: 1px solid rgba(0, 22, 89, 0.2);
  border-bottom: 1px solid rgba(0, 22, 89, 0.2);
  height: 100px;
  z-index: 1;
}
.sliding-text__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
}

.sliding-text__list li {
  position: relative;
  display: block;
  float: left;
}

.sliding-text__list li:first-child {
  margin-left: 30px;
}

.sliding-text__list li + li {
  margin-left: 50px;
}

.sliding-text__text {
  color: transparent;
  font-size: 45px;
  font-weight: 700;
  -webkit-text-stroke: 1px #565969;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.sliding-text__text:hover {
  color: #eac337;
  -webkit-text-stroke: 1px #eac337;
}

.sliding-text__icon {
  position: relative;
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke: 1px #eac337;
  top: 5px;
}

.sliding-text__icon:hover {
  color: #eac337;
}

@keyframes marqueeAnimation-1780784 {
  100% {
    transform: translateX(-2358.72px);
  }
}

.js-marquee-wrapper:hover {
  animation-play-state: paused !important;
}

.sliding-text__list {
  margin-bottom: 0;
}

.app-slider .owl-dots {
  display: none !important;
}

.cta-area {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
  padding: 60px 0;
  margin-top: 30px;
  background-image: url("../images/01.png");
}

.cta-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #065a3b;
  /* background: #064e5a; */
  opacity: 0.85;
  z-index: -1;
}

.cta-area::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  background: #63c153;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.cta-content {
  text-align: center;
}

.cta-content h1 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-content .theme-btn,
.site-heading .theme-btn {
  background: #eac337;
  color: #fff;

  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;

  i {
    margin-left: 8px;
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
  }
}

.work-section-one {
  padding: 40px 0;
  overflow: hidden;
}
.heading-box {
  margin-bottom: 50px;
}
.work-icon-one {
  position: relative;
  height: 100px;
  width: 100px;
  background-color: #0c4da2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;

  img {
    width: 100%;
    height: 100%;
  }
}
.work-box-one {
  text-align: center;
  padding: 6px 25px;
  position: relative;
  margin-top: 15px;
}
.work-box-one::after {
  content: "";
  position: absolute;
  right: -62px;
  top: 50px;
  height: 3px;
  width: 100px;
  background-color: #eac337;
}
.col-lg-3:last-child .work-box-one::after {
  display: none;
}
.work-icon-one span {
  position: absolute;
  top: -24px;
  right: -24px;
  border-radius: 100%;
  background-color: #eac337;
  height: 55px;
  width: 55px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 55px;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #fff;
}
.work-box-one h4 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-weight: 500;
}
.work-box-one p {
  font-size: 15px;
  line-height: 26px;
  color: #666666;
  margin-bottom: 0;
  font-family: "Montserrat", serif;
}

.testimonial-area {
  position: relative;
}

.tm-bg {
  position: relative;
  background: #002452;
}

.tm-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/07.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.testimonial-item {
  position: relative;
  background: #fff;
  padding: 15px 30px;
  border-bottom: 5px solid #0c4da2;
  border-radius: 50px 50px 0px 50px;
  margin-bottom: 28px;
}

.testimonial-quote p {
  position: relative;
  color: #064e5a;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  z-index: 1;
  line-height: 34px;
}

.testimonial-content {
  position: relative;
  border-left: 3px solid #064e5a;
  padding-left: 15px;
  margin-top: 15px;
  z-index: 1;
}

.testimonial-author-img {
  position: absolute;
  right: 20px;
  bottom: -50px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 4px solid #0c4da2;
}

.testimonial-author-img img {
  border-radius: 50%;
  border: 4px solid #fff;
  width: 100%;
  height: 100%;
}

.testimonial-author-info h4 {
  font-size: 20px;
  color: #064e5a;
  margin-bottom: 0;
}

.testimonial-author-info p {
  color: #eac337;
  font-weight: 500;
}

.testimonial-quote-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;

  img {
    width: 100%;
    height: 100%;
  }
}

.testimonial-shadow-icon img {
  width: 200px !important;
}

.testimonial-rate {
  color: #fb9902;
  margin-bottom: 10px;
}

/* testimonial-area 2 */
.testimonial-area2 .testimonial-item {
  border-radius: 30px 30px 50px 30px;
  border-bottom: none;
}

.testimonial-area2 .testimonial-author-img {
  width: 80px;
  height: 80px;
  right: -30px;
  bottom: -20px;
  border: 7px solid #064e5a;

  img {
    width: 100%;
    height: 100%;
  }
}

/* testimonial-slider */
.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.testimonial-slider .owl-dots .owl-dot span {
  background: #eac337;
  margin: 5px;
  border-radius: 10px;
  width: 15px;
  height: 7px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.testimonial-slider .owl-dots .owl-dot.active span {
  background-color: #eac337;
  width: 8px;
  height: 8px;
}

.testimonial-area {
  padding: 50px 0 40px 0;
  margin-top: 20px;
}

.site-footer-two {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  background-color: #002452;
}

.site-footer-two__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.site-footer-two__top {
  position: relative;
  display: block;
  padding: 40px 0 10px;
}

.site-footer-two__top-inner {
  position: relative;
  display: block;
}

.footer-widget-two__about {
  position: relative;
  display: block;
}

.footer-widget-two__logo {
  position: relative;
  display: block;
  margin-bottom: 29px;
}

.footer-widget-two__about-text {
  color: #fff;
  line-height: 26px;
}

.footer-widget-two__about-form {
  position: relative;
  display: block;
}

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

.footer-widget-two__about-form-input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: #09316f;
  outline: none;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  border: none;
  padding-right: 70px;
  padding-left: 20px;
}

.footer-widget-two__about-btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  bottom: 0;
  width: 60px;
  background-color: #eac337;
  border-radius: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget-two__about-btn:hover {
  background-color: #fff;
}

.footer-widget-two__about-btn span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__about-btn:hover span {
  color: var(--elitecons-base);
}

.site-footer-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 10px;
}

.site-footer-two__social > a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #eac337;
}

.site-footer-two__social > a:hover {
  color: #fff;
}

.site-footer-two__social > a + a {
  margin-left: 25px;
}

.footer-widget-two__service {
  position: relative;
  display: block;
  margin-left: 35px;
}

.footer-widget-two__title-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
  margin-top: 13px;
}

.footer-widget-two__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  color: #eac337;
  /* position: relative;
  
    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background-color: #eac337;
    } */
}

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

.footer-widget-two__service-list > li {
  position: relative;
  display: block;
}

.footer-widget-two__service-list > li + li {
  margin-top: 8px;
}

.footer-widget-two__service-list > li > a {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  i {
    color: #eac337;
  }
}

.footer-widget-two__service-list > li > a > span {
  font-size: 13px;
  color: var(--elitecons-base);
}

.footer-widget-two__service-list > li > a:hover {
  color: #eac337;
}

.footer-widget-two__links {
  position: relative;
  display: block;
  margin-left: 25px;
}

.footer-widget-two__contact {
  position: relative;
  display: block;
}

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

.footer-widget-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget-two__contact-list li + li {
  margin-top: 8px;
}

.footer-widget-two__contact-list li .icon {
  position: relative;

  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eac337;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget-two__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--elitecons-base);
}

.footer-widget-two__contact-list li .content {
  position: relative;
  display: block;
  margin-left: 15px;
  color: #fff;

  h6 {
    color: #eac337;
  }

  a {
    color: #fff;
  }
}

.footer-widget-two__contact-list li .content > p {
  color: #fff;
  font-weight: 700;
  margin-top: 3px;
  line-height: 26px;
}

.footer-widget-two__contact-list li .content > p > a {
  color: #fff;
}

.footer-widget-two__contact-list li .content > p > a:hover {
  color: var(--elitecons-base);
}

.site-footer-two__bottom {
  position: relative;
  display: block;
  border-top: 1px solid #09316f;
}

.site-footer-two__bottom-inner {
  position: relative;
  padding: 20px 0 20px;
}

.site-footer-two__bottom-text {
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu li + li {
  margin-left: 30px;
}

.site-footer-two__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--elitecons-base);
}

.footer-widget-two__logo a img {
  width: 120px;
}

.work-slider .owl-nav,
.work-slider .owl-dots {
  display: none;
}

.main-header--two .main-header__right:hover {
  background: #0c4da2;
}

.offcanvasToggle {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #eac337;
}

.pro-slider .owl-nav {
  display: none !important;
}

.cta-area h1 {
  font-size: 2.6rem;
}

.widget_stal_core_side_area_opener {
  height: 100%;
}

.qodef-side-area-opener.qodef-side-area-opener--predefined {
  z-index: 999;
  right: 0;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  width: 80px;
  padding: 0 18px;
  background-color: #eac337;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.qodef-side-area-opener {
  position: relative;
  vertical-align: middle;
  line-height: 1;
}

.qodef-side-area-opener.qodef-side-area-opener--predefined .qodef-lines {
  position: relative;
  display: block;
  width: 33px;
  height: 18px;
}

.qodef-side-area-opener.qodef-side-area-opener--predefined
  .qodef-lines
  .qodef-line.qodef-line-1 {
  top: 0;
  width: 3px;
}

.qodef-side-area-opener.qodef-side-area-opener--predefined
  .qodef-lines
  .qodef-line {
  position: absolute;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: top 0.3s ease, transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3sease;
}

.qodef-side-area-opener.qodef-side-area-opener--predefined
  .qodef-lines
  .qodef-line.qodef-line-2 {
  top: 0;
  right: 0;
  left: auto;
  width: 21px;
  -webkit-transition: width 0.3s cubic-bezier (0.29, 0.21, 0, 0.97);
  -o-transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  transition: width 0.3s cubic-bezier (0.29, 0.21, 0, 0.97);
}

.qodef-side-area-opener.qodef-side-area-opener--predefined
  .qodef-lines
  .qodef-line.qodef-line-3 {
  top: 8px;
  width: 27px;
  -webkit-transition: left 0.3s cubic-bezier (0.29, 0.21, 0, 0.97);
  -o-transition: left 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  transition: left 0.3s cubic-bezier (0.29, 0.21, 0, 0.97);
}

.qodef-side-area-opener.qodef-side-area-opener--predefined
  .qodef-lines
  .qodef-line.qodef-line-4 {
  bottom: 0;
  width: 100%;
  -webkit-transition: width 0.3s cubic-bezier (0.29, 0.21, 0, 0.97);
  -o-transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  transition: width 0.3s cubic-bezier (0.29, 0.21, 0, 0.97);
}

.qodef-side-area-opener.qodef-side-area-opener--predefined
  .qodef-lines
  .qodef-line.qodef-line-5 {
  bottom: 0;
  left: 30px;
  width: 3px;
}

.qodef-side-area-opener.qodef-side-area-opener--predefined:hover
  .qodef-lines
  .qodef-line.qodef-line-2 {
  width: 100%;
  -webkit-transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  -o-transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
}

.qodef-side-area-opener.qodef-side-area-opener--predefined:hover
  .qodef-lines
  .qodef-line.qodef-line-3 {
  -webkit-transition: left 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  -o-transition: left 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  transition: left 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
}

.qodef-side-area-opener.qodef-side-area-opener--predefined:hover
  .qodef-lines
  .qodef-line.qodef-line-4 {
  width: 21px;
  -webkit-transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  -o-transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
  transition: width 0.3s cubic-bezier(0.29, 0.21, 0, 0.97);
}

.xs-sidebar-group.isActive .xs-overlay {
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  left: 0;
  z-index: 9999;
  visibility: visible;
  opacity: 0.9;
}

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

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

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

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0%;
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.xs-sidebar-widget {
  max-width: 25rem;
}

.xs-sidebar-widget {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  /* max-width: 31.375rem; */
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  /* visibility: hidden; */
  /* opacity: 0; */
}

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

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

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

.close-side-widget {
  color: #1768dd;
  font-size: rem(15px);
  display: block;
}

.close-side-widget,
.close-side-widget:hover {
  color: #000000 !important;
  font-size: 26px;
  font-family: "Mulish", sans-serif;
}

.sidebar-textwidget {
  padding: 30px 25px 20px;
}
.sidebar-info-contents {
  position: relative;
}
.sidebar-info-contents .content-inner {
  position: relative;
}
.sidebar-info-contents .content-inner .logo {
  padding-bottom: 20px;
}

.sidebar-info-contents .content-inner .logo img {
  display: inline-block;
  max-width: 100%;
}

.content-inner img {
  width: 123px;
}

.sidebar-info-contents .content-inner .content-box {
  position: relative;
}

.sidebar-info-contents .content-inner h5 {
  color: #000;
  margin-bottom: 10px;
  font-weight: bold;
}

.sidebar-info-contents .content-inner .content-box .text {
  color: #000;
  margin-bottom: 25px;
  line-height: 26px;
}

.sidebar-info-contents .content-inner .contact-info {
  position: relative;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  color: #000;
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 30px;
}

.list-style-one li .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  color: #eac337;
  font-size: 18px;
  line-height: 1em;
  font-weight: 300;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.fa-location-arrow:before {
  content: "\f124";
}

.sidebar-info-contents .content-inner .social-box {
  position: relative;
  margin-top: 20px;
}

.sidebar-info-contents .content-inner .social-box li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.sidebar-info-contents .content-inner .social-box li a {
  position: relative;
  width: 36px;
  height: 36px;
  color: #010c3a;
  z-index: 1;
  font-size: 14px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.list-style-one {
  padding-left: 0;
}

.list-style-one li {
  list-style-type: none;
}

.widget-heading {
  position: relative;
  z-index: 99;
}

.widget-heading a {
  user-select: none;
  cursor: pointer;
}

.circle-contact {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: -38px;
}

.circle-contact .circle-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 15px;
  color: #131313;
  background-color: #eac337;
  /* border: 2px solid #131313; */
  border-radius: 50%;
  line-height: 1;
  position: relative;
}

.circle-contact .circle-button::before {
  position: absolute;
  content: "";
  width: 135px;
  height: 135px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../images/circle-shapes.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-animation: contactrotate 20s infinite linear;
  animation: contactrotate 20s infinite linear;
}

.circle-contact .circle-button .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  font-size: 34px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

@keyframes contactrotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about-two {
  position: relative;
  padding: 50px 0 60px;
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0;
  }
}
.about-two__image {
  position: relative;
}
@media (max-width: 1199px) {
  .about-two__image {
    max-width: 570px;
  }
}
.about-two__image img {
  width: 100%;
  height: auto;
}
.about-two__experiance {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  margin: auto;
  width: 170px;
  height: 170px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 0 0;
}
@media (max-width: 767px) {
  .about-two__experiance {
    top: auto;
    bottom: 70px;
  }
}
.about-two__experiance::after {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  border: 1px dashed #eac337;
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.about-two__experiance__text {
  font-size: 18px;
  font-weight: 500;
  color: #eac337;
  line-height: 20px;
  text-transform: capitalize;
  margin: 2px 0 0;
}
.about-two__experiance__text br {
  display: block;
}
.about-two__experiance__years {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 50px;
  font-weight: 700;
  color: #eac337;
  line-height: 1;
  gap: 8px;
}
.about-two__content {
  position: relative;
  padding: 0;
}
@media (max-width: 1199px) {
  .about-two__content {
    margin: 0 0 45px;
  }
}
.about-two__content .sec-title {
  padding-bottom: 20px;
}
.about-two__content__text {
  font-weight: 500;
  margin: 0 0 35px;
  line-height: 28px;
}
@media (min-width: 1200px) {
  .about-two__content__text {
    padding-right: 50px;
  }
}
.about-two__content__box {
  position: relative;
  padding: 0 0 0 100px;
  min-height: 78px;
}
.about-two__content__box__icon {
  width: 78px;
  height: 78px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rofiex-white, #fff);
  font-size: 42px;
  background-color: #eac337;
  position: absolute;
  left: 0;
  top: 0;
}
.about-two__content__box__icon i {
  display: inline-block;
  transition: all 500ms ease;
}
.about-two__content__box:hover .about-two__content__box__icon i {
  transform: rotateY(180deg);
}
.about-two__content__box__title {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 5px;
}
.about-two__content__box__text {
  font-weight: 500;
  margin: 0;
}
@media (min-width: 1200px) {
  .about-two__content__box__text {
    padding-right: 50px;
  }
}
.about-two__content__box-border {
  margin-top: 25px;
  border-top: 1px solid var(--rofiex-border-color, #dddddd);
  padding-top: 25px;
  margin-right: 50px;
}
.about-two__content__info-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .about-two__content__info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-two__content__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-two__content__info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 20px;
  color: #eac337;
  background-color: transparent;
  border: 1px solid #eac337;
  transition: all 400ms ease;
}
.about-two__content__info:hover .about-two__content__info__icon {
  background-color: #eac337;
  color: var(--rofiex-white, #fff);
}
.about-two__content__info__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.about-two__content__info__number {
  font-size: 24px;
  font-weight: 600;
  color: #eac337;
  margin: 0;
}
.about-two__content__info__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px
    95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-two__content__info__number a:hover {
  background-size: 100% 1px;
}
.about-two__content__info__number a:hover {
  color: var(--rofiex-black, #000000);
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.why-choose-three__left {
  padding-right: 40px;
}

.sticky-header--cloned.active .main-header__logo img {
  width: 90px;
}

.service-card-two__thumb__link i {
  rotate: -40deg;
  color: #eac337;
}

.service-card-two__icon img {
  width: 100%;
  height: 100%;
}

/* Error Page */

.error-page {
  margin: auto;
}

.error-page .error-page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  gap: 30px;
}

.error-page__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error-page__heading-title {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 500;
  color: #eac337;
}
.error-page__heading-desciption {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 400;
  color: #000;
}
.error-page__button {
  color: inherit;
  text-decoration: none;
  border: 1px solid #eac337;
  font-size: 18px;
  font-weight: 200;
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0px 7px 0px -2px #eac337;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.error-page__button:hover {
  box-shadow: none;
  background-color: #eac337;
  color: #fff;
}
.eyes {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.eye {
  width: 80px;
  height: 80px;
  background-color: #eac337;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.eye__pupil {
  width: 30px;
  height: 30px;
  background-color: #050505;
  border-radius: 50%;
  animation: movePupil 2s infinite ease-in-out;
  transform-origin: center center;
}
@keyframes movePupil {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10px, -10px);
  }
  50% {
    transform: translate(10px, 10px);
  }
  75% {
    transform: translate(-10px, 10px);
  }
}
.color-switcher {
  position: fixed;
  top: 40px;
  right: 40px;
  background-color: transparent;
  font-size: 30px;
  cursor: pointer;
  color: #eac337;
  border: 0;
}

.main-menu__list li a.active {
  color: #eac337 !important;
}

.video-section {
  position: relative;
  padding: 110px 0 110px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .video-section {
    padding: 180px 0;
  }
}
.video-section .bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0e171b;
  opacity: 0.7;
}
.video-section .overlay-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: auto;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .video-section .overlay-2 {
    display: none;
  }
}

.overlay-2 {
  width: 860px;
  height: 621px;
  background-image: url(../images/overlay-2.png);
}

.video-section .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .video-section .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.video-section .outer-box .title-box {
  position: relative;
  padding-left: 35px;
  border-left: 12px solid #eac337;
}
@media (max-width: 991.98px) {
  .video-section .outer-box .title-box {
    margin-bottom: 30px;
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .video-section .outer-box .title-box {
    padding-left: 0;
    border: none;
  }
}
.video-section .outer-box .title-box .title {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.2em;
  margin-bottom: 0;
  font-weight: bold;
  font-family: "Montserrat", serif;
}
@media (max-width: 575.98px) {
  .video-section .outer-box .title-box .title {
    font-size: 38px;
  }
  .video-section .outer-box .title-box .title br {
    display: none;
  }
}
.video-section .outer-box .video-box {
  position: relative;
}
.video-section .outer-box .video-box .icon-box {
  position: absolute;
  top: 0;
  right: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-section .outer-box .video-box .icon-box .title {
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  margin-right: 15px;
}
@media (max-width: 991.98px) {
  .video-section .outer-box .video-box .icon-box .title {
    display: none;
  }
}
.video-section .outer-box .video-box .icon-box img {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .video-section .outer-box .video-box .icon-box img {
    display: none;
  }
}
.video-section .outer-box .video-box .play-now-two {
  position: relative;
  display: inline-block;
  height: 113px;
  width: 113px;
  line-height: 113px;
  font-size: 24px;
  border-radius: 50%;
  color: #eac337;
  background-color: #ffffff;
  text-align: center;
}
.video-section .outer-box .video-box .play-now-two::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
.video-section .outer-box .video-box .play-now-two:hover {
  background-color: #eac337;
  border-color: #eac337;
  color: #ffffff;
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form-control,
.input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
  font-family: "Mulish", sans-serif;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

textarea.form-control {
  min-height: calc(1.5em + (0.75rem + 2px));
}

.contact-details {
  padding: 40px 0;
}

.contact-details__info {
  position: relative;
  display: block;
  margin-top: 25px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.contact-details__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.contact-details__info li .icon {
  height: 70px;
  width: 70px;
  background-color: #eac337;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-details__info li .icon span {
  color: #ffffff;
  font-size: 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.lnr,
[class^="lnr-"],
[class*=" lnr-"] {
  font-family: "linearicons-free";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact-details__info li .text {
  margin-left: 30px;
}

.contact-details__info li .text a {
  font-size: 18px;
  color: var(--notech-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-details__info li .text span {
  font-size: 20px;
  color: var(--notech-black);
}

.contact-details {
  margin-top: 30px;
  color: #707173;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  /* line-height: 1.9; */
}

.text {
  font-family: "Mulish", sans-serif;
}

.contact-details__right {
  padding-left: 15px;
}

.contact-details__right .text {
  line-height: 26px;
}

/* .rts-breadcrumb-area.contact-bd {
  background-image: url(../images/breadcrumb-13.webp);
} */

@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .rts-breadcrumb-area {
    margin-right: 50px;
    margin-left: 50px;
  }
}

.rts-breadcrumb-area {
  /* background-image: url(../images/banner/breadcrumb.webp);
  margin: auto; */
  height: 400px;
  max-width: 1820px;
  margin: auto;
  /* margin-top: 17px; */
  border-radius: 10px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
}

.rts-section-gap {
  padding: 140px 0 60px;
}

.breadcrumb-area-inner {
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .breadcrumb-area-inner .water-text {
    font-size: 100px;
  }
}

.water-text {
  font-size: 180px;
  text-transform: uppercase;
  position: absolute;
  z-index: 0;
  font-weight: 700;
  left: 336px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: rgb(255 255 255 / 4%);
  top: 23%;
}
.breadcrumb-area-inner .title {
  font-size: 60px;
  max-width: 65%;
  color: #fff;
}

.breadcrumb-area-inner .nav-area-navigation {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 15px 31px;
  border-radius: 10px 10px 0 0;
  gap: 33px;
  display: flex;
}

.breadcrumb-area-inner .nav-area-navigation a {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  font-size: 15px;
  color: #141416;
}

.breadcrumb-area-inner .nav-area-navigation a.current {
  color: #eac337;
  position: relative;
}

.breadcrumb-area-inner .nav-area-navigation a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}

.breadcrumb-area-inner .nav-area-navigation a.current::after {
  position: absolute;
  content: "";
  left: -20px;
  height: 4px;
  width: 4px;
  background: #0c4da2;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.service-detail-page .service-detail,
.project-detail-page .project-detail,
.team-detail-page .team-detail {
  background-image: url(../images/body.png);
  background-position: bottom left;
  background-repeat: no-repeat;
}

.project-detail {
  padding: 40px 0 25px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5) !important;
  background-repeat: repeat;
  content: "";
}

.mb-8,
.my-8 {
  margin-bottom: 25px !important;
}

.shadow {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12) !important;
}

.p-2 {
  padding: 10px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 15px !important;
  margin-top: 15px !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.blue {
  color: #001659;
  list-style-type: disclosure-closed;

  span {
    color: #c9a522;
  }
}

.divider-pattern {
  background: repeating-linear-gradient(
    -60deg,
    #fafafa69,
    #808080 1px,
    transparent 1px,
    transparent 3px
  );
}

.mb-4,
.my-4 {
  margin-bottom: 15px !important;
  margin-top: 15px !important;
}

.pt-1,
.py-1 {
  padding-top: 5px !important;
}

.mb-6,
.my-6 {
  margin-bottom: 30px !important;
}

.project-detail-info h4,
.uses h3 {
  font-family: "Montserrat", serif;
  font-size: 40px;
  line-height: 46px;
  font-weight: 800;
  padding-bottom: 20px;
  margin-bottom: 0 !important;
}

.project-detail-info {
  padding-left: 25px;
}

.project-detail-info p {
  line-height: 26px;
}

.project-detail-list {
  margin-top: 20px;
}

.uses .content p {
  line-height: 26px;
}

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

.uses .single-item {
  position: relative;
  display: block;
  border: 1px solid #e1e8e4;
  padding: 16px 30px 16px 53px;
  margin-bottom: 20px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.uses .single-item .icon-box {
  color: #eac337;
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 18px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.uses .single-item .title {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.uses .single-item:hover {
  background-color: #eac337;
  color: #fff;
}

.uses .single-item:hover .icon-box {
  color: #fff;
}

.why-choose-us-area {
  padding: 40px 0;
}

.application-img {
  width: 100%;
}

.single-choose-us-one .icon {
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: #0c4da2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}

.single-choose-us-one .icon span {
  position: absolute;
  height: 30px;
  width: 30px;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e4ded8;
  box-shadow: 0px 4px 29px rgba(57, 46, 35, 0.18);
  color: #eac337;
  font-weight: 600;
}

.single-choose-us-one {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
}

.disc {
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 0 !important;
}

.single-choose-us-one .icon img {
  width: 90%;
  height: 90%;
}

.how-we-works-wrappers {
  padding-left: 16px;
}

.section-four {
  padding: 30px 0;
  margin-bottom: 90px;
}

.services-box-col {
  position: relative;
}

.service-box-img {
  max-width: 100%;
}

@media (max-width: 1399px) {
  .services-hov-box {
    padding: 15px;
  }
}
.services-hov-box {
  background: #ffffff;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.5s ease;
  z-index: 1;
  width: calc(100% - 50px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.plumbing-repair {
  color: #0c4da2;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 4px;
  margin-bottom: 0;
  font-family: "Mulish", sans-serif;
}

.Porttitor {
  color: var(--4, #222);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.services-box-col:hover .services-hov-box {
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    96deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(5px);
  height: calc(100% - 30px);
}

.section-four .title-area {
  margin-bottom: 15px;
}

.info-wrapper .title {
  font-weight: bold;
  /* color: #0c4da2; */
  margin-bottom: 0;
}

.single-service-box {
  position: relative;
  padding: 10px;
  overflow: hidden;
}

.service-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0px;
  left: 0px;
  top: 0px;
  z-index: -1;
  opacity: 0;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(73, 175, 69);
  border-image: initial;
  border-radius: 5px;
  transition: 0.5s;
}

.single-service-box:hover .service-content::before {
  height: 100%;
  opacity: 1;
}

.section {
  padding: 6em 2em 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.r-container {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.bg-accent-color {
  background-color: #eac337;
}

.certificate {
  padding: 40px 0;

  .certi-wrapper {
    cursor: pointer;
    position: relative;
    margin-top: 20px;

    h5 {
      color: #fff;
    }

    &::after {
      /* content: ""; */
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 0;
      transition: 0.4s all;
      background: rgba(236, 255, 69, 0.5);
    }

    &:hover {
      &::after {
        height: 100%;
      }
    }
  }
}

.list-unstyled.funfact-one__list {
  padding-inline: 40px;
}

.infra-img {
  position: relative;
  img {
    width: 100%;
  }
}

.infra.goal-mov {
  position: absolute;
  bottom: 23%;
  border-radius: 91px;
  left: -4%;
  z-index: 32;
  width: 189px;
  height: 186px;
}

figure {
  overflow: hidden;
  margin: 0;
}

.goal-mov {
  width: 160px;
  height: 160px;
  position: absolute;
  bottom: -56px;
  right: -48px;
}

.goal-mov figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* border: 1px solid #a1a1a1; */
  border-radius: 50%;
  padding: 26px;
  width: 120px;
  height: 120px;
}

.goal-mov > img {
  animation-name: rotateme;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cost-effective .goal-mov::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  background-color: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.process-section {
  padding: 40px 0;
}

.process-section {
  position: relative;

  .process-block-one {
    margin-top: 20px;
  }
}

.process-block-one .inner-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.process-block-one .inner-box .text {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 11px;
}

.process-block-one .inner-box h2 {
  display: block;
  font-size: 110px;
  line-height: 80px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #eac337;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.process-block-one .inner-box h3 {
  display: block;
  font-size: 26px;
  line-height: 31px;
  margin-bottom: 15px;
  font-weight: bold;
}

.process-block-one .inner-box p {
  line-height: 28px;
}

.process-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 45px;
  top: 0px;
  width: 197px;
  height: 197px;
  background-repeat: no-repeat;
}

.process-section .pattern-layer .pattern-2 {
  position: absolute;
  right: 184px;
  bottom: 240px;
  width: 192px;
  height: 192px;
  background-repeat: no-repeat;
}

.about-two.infra {
  padding: 40px 0 20px;
}

.infra.second {
  padding: 20px 0;
}

.about-two.infra.second .why-choose-three__left {
  padding-left: 30px;
}

.molten-metal {
  padding: 30px 0;

  p {
    line-height: 28px;
  }

  ul {
    padding-left: 0;
    li {
      list-style-type: none;
      display: flex;
      gap: 12px;
      line-height: 28px;
      margin-bottom: 20px;
    }
  }
}

.transport-img-wrapper img {
  width: 100%;
}

.quality {
  padding: 20px 0 25px;

  .infra-content {
    margin-top: 20px;
  }
}

.about-section.quality {
  .why-choose-three__list__item__text {
    font-weight: 600;
    text-transform: none;
    font-size: 17px;
    color: #797577;
  }
}

.spectro-img {
  height: 100%;
}

.spectro-img img {
  width: 100%;
  height: 100%;
}

.team-section {
  margin-top: 4rem;
}

.inner-container {
  box-shadow: 1px 1px 20px 1px #7979795e;
  border-radius: 10px;
  padding: 10px 30px;
}

.inner-container {
  box-shadow: 1px 1px 20px 1px #7979795e;
  border-radius: 10px;
  padding: 10px 30px;
}

.sec-title1 h2 {
  font-family: "Mulish", sans-serif;
  margin-bottom: 15px;
  font-weight: bold;
}

.team-card {
  position: relative;
  border-radius: 10px;
  background-color: #eecd1542;
  margin-bottom: 65px;
}

.team-card__image {
  position: relative;
  z-index: 2;
  background-color: var(--alefox-white, #fff);
  border-radius: 50%;
  width: 278px;
  height: 278px;
  margin: 0 auto;
  overflow: hidden;
  padding: 12px;
}

.team-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}

.team-card__image::after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: var(--alefox-base, #0c4da2);
  transition: all 500ms ease;
}

.team-card__content {
  position: absolute;
  z-index: 3;
  bottom: -54px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 270px;
  margin: 0 auto 0;
  background-color: var(--alefox-white, #fff);
  border-radius: 10px;
  text-align: center;
  padding: 25px 20px 22px;
  transition: all 500ms ease;
  filter: drop-shadow(0 0 68px rgba(0, 0, 0, 0.06));
}

.team-card__title {
  margin: 0;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 7px;
}

.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__designation {
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  transition: all 300ms ease;
}

.team-card__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #eecd15;
  border-radius: 10px;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}

.team-card:hover .team-card__image::after {
  height: 50%;
}

.team-card:hover .team-card__content::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.text p span {
  display: inline-block;
  line-height: 28px;
}


.certi-name {
  padding: 10px;
}
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;

  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInStable {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  33.333% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  66.666666% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomInStable {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  33.333% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  66.666666% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.zoomInStable {
  -webkit-animation-name: zoomInStable;
  animation-name: zoomInStable;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@keyframes anime {
  from {
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}

@-webkit-keyframes anime {
  from {
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}

@-moz-keyframes anime {
  from {
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}

@-o-keyframes anime {
  from {
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}

@-ms-keyframes anime {
  from {
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
}

/* -------- Static HTML conversion fixes -------- */
:root{--ki-blue:#002c5f;--ki-yellow:#edc627;--ki-dark:#001f43;--ki-text:#6b6f7a;}
html,body{margin:0;padding:0;overflow-x:hidden;background:#fff;color:#6b6f7a;font-family:var(--voldor-font, 'Arial', sans-serif);} 
a{text-decoration:none!important;cursor:pointer}.img-fluid{max-width:100%;height:auto}.text-gold{color:var(--ki-yellow)!important}.bg-accent-color{background:#e8c42a!important}.blue{color:#00265a}.static-page{min-height:40vh}.container-fluid{padding-left:0;padding-right:0}.main-header{position:absolute;top:0;left:0;right:0;z-index:99;background:rgba(0,0,0,.20);border-bottom:1px solid rgba(255,255,255,.14)}.main-header.sticky-header--cloned.active{position:fixed;background:#001f43;box-shadow:0 8px 30px rgba(0,0,0,.12);animation:slideDown .25s ease}.main-header__inner{display:flex;align-items:center;justify-content:space-between;min-height:96px;padding:0 20px}.main-header__logo img{width:94px;height:auto}.main-menu__list{display:flex;align-items:center;gap:0;list-style:none;margin:0;padding:0}.main-menu__list>li{position:relative}.main-menu__list>li>a{display:block;color:#fff;font-size:14px;font-weight:800;text-transform:uppercase;letter-spacing:.4px;padding:38px 14px}.main-menu__list>li>a.active,.main-menu__list>li:hover>a{color:var(--ki-yellow)!important}.main-menu .sub-menu{position:absolute;left:0;top:100%;min-width:310px;background:#fff;list-style:none;margin:0;padding:22px 0;opacity:0;visibility:hidden;transform:translateY(12px);transition:.25s;box-shadow:0 12px 35px rgba(0,0,0,.12);z-index:9}.main-menu .dropdown:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}.main-menu .sub-menu li a{display:block;padding:14px 38px;color:#151515;font-size:15px;text-transform:uppercase}.main-menu .sub-menu li a:hover{background:#f7f7f7;color:#d2aa0f}.main-header__right{display:flex;align-items:center}.nav-btn{width:76px;height:76px;background:var(--ki-yellow);display:flex;align-items:center;justify-content:center;margin-right:0}.qodef-lines{display:block;width:28px;height:18px;position:relative}.qodef-line{position:absolute;height:2px;background:#fff;right:0}.qodef-line-1{top:0;width:20px}.qodef-line-2{top:5px;width:12px}.qodef-line-3{top:10px;width:25px}.qodef-line-4{top:15px;width:16px}.qodef-line-5{display:none}.mobile-nav__btn{display:none}.rts-banner-area{min-height:390px;display:flex;align-items:center;background-position:center!important;background-size:cover!important;border-bottom-left-radius:6px;border-bottom-right-radius:6px;position:relative;overflow:visible}.rts-banner-area:before{content:"";position:absolute;inset:0;background:rgba(0,16,35,.15)}.breadcrumb-area-inner{position:relative;z-index:1;padding-top:60px}.breadcrumb-area-inner .water-text{position:absolute;left:290px;top:78px;font-size:78px;text-transform:uppercase;color:rgba(255,255,255,.07);font-weight:800;letter-spacing:2px}.breadcrumb-area-inner .title{font-size:56px;font-weight:400;color:#fff;margin:55px 0 55px}.nav-area-navigation{position:absolute;bottom:-92px;left:0;background:#fff;border-radius:8px 8px 0 0;padding:30px 42px;box-shadow:0 5px 20px rgba(0,0,0,.04)}.nav-area-navigation a{font-size:14px;font-weight:700;text-transform:uppercase;color:#0b1828;margin-right:18px}.nav-area-navigation a.current{color:#d2aa0f}.nav-area-navigation a.current:before{content:"•";color:#0b1828;margin-right:18px}.hero-two{position:relative}.hero-two .carousel-item img{width:100%;display:block}.carousel-control-prev,.carousel-control-next{display:none}.about-two,.page-pad{padding:95px 0}.title-area{margin-bottom:28px}.sub-title{display:inline-block;color:#d2aa0f;text-transform:uppercase;font-size:13px;font-weight:700;letter-spacing:.6px;position:relative;padding-left:30px;margin-bottom:10px}.sub-title:before{content:"";width:22px;height:2px;background:#d2aa0f;position:absolute;left:0;top:50%}.sec-title{font-size:42px;line-height:1.05;font-weight:900;color:#141414;letter-spacing:1px;margin:0}.text p,p{line-height:1.8}.why-choose-three__top__text{font-size:15px;line-height:1.9}.why-choose-three__list{padding:0;margin:20px 0 25px;list-style:none}.why-choose-three__list__item{display:flex;align-items:center;border-bottom:1px solid #eee;padding:12px 0}.why-choose-three__list__item__icon{width:20px;height:20px;border-radius:50%;background:#f0f0f0;margin-right:13px;display:flex;align-items:center;justify-content:center;color:#d2aa0f;font-size:10px}.why-choose-three__list__item__text{font-size:13px;font-weight:800;color:#222;margin:0;text-transform:uppercase}.rofiex-btn{display:inline-flex;align-items:center;justify-content:center;background:#00459b;color:#fff!important;font-size:13px;font-weight:800;text-transform:uppercase;padding:16px 28px;position:relative;overflow:visible;border:none}.rofiex-btn:after{content:"";position:absolute;bottom:-8px;left:50%;width:18px;height:18px;border-radius:50%;background:#e8c42a;transform:translateX(-50%);z-index:-1}.about-two__image img{width:100%;object-fit:cover}.about-two__image__one img{height:215px}.about-two__image__two img{height:215px}.about-two__image__three img{height:255px}.about-two__image__experiance{position:absolute;left:50%;top:42%;transform:translate(-50%,-50%);background:#fff;border-radius:50%;width:120px;height:120px;display:flex;align-items:center;justify-content:center;text-align:center;color:#e8c42a;font-weight:800;box-shadow:0 5px 30px rgba(0,0,0,.18)}.about-two__image{position:relative}.funfact-wrap{margin-top:-45px;position:relative;z-index:5}.funfact-card{background:#fff;border-radius:80px;padding:32px 26px;box-shadow:0 5px 22px rgba(0,0,0,.08);display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.funfact-card .item{display:flex;align-items:center;gap:15px}.funfact-card .icon{font-size:38px;color:#e8c42a}.funfact-card h3{font-size:35px;font-weight:900;color:#141414;margin:0}.funfact-card p{font-size:12px;margin:0;color:#616161}.product-home{background:url('../images/pro-bg.png') center/cover no-repeat;padding:105px 0 65px;position:relative;color:#fff}.product-home:before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.70)}.product-home .container{position:relative}.product-home .sec-title{color:#fff}.product-card{position:relative;overflow:hidden;height:300px;background:#111}.product-card img{width:100%;height:100%;object-fit:cover;transition:.3s}.product-card:hover img{transform:scale(1.05)}.product-card .label{position:absolute;left:0;bottom:0;background:#fff;color:#001f43;font-weight:800;text-transform:uppercase;padding:14px 10px;writing-mode:vertical-rl;transform:rotate(180deg);font-size:12px}.why-home{padding:75px 0}.why-home .large-img{width:100%;height:410px;object-fit:cover}.marquee-text{font-size:26px;white-space:nowrap;overflow:hidden;color:#aeb4bf;text-transform:uppercase;letter-spacing:8px;font-weight:700;padding:36px 0;border-top:1px solid #eee;border-bottom:1px solid #eee}.green-cta{background:url('../images/bg5.png') center/cover no-repeat;position:relative;padding:90px 0;text-align:center;color:#fff}.green-cta:before{content:"";position:absolute;inset:0;background:rgba(0,96,74,.78)}.green-cta .container{position:relative}.green-cta h2{color:#fff;font-size:34px;font-weight:800}.green-cta p{max-width:650px;margin:0 auto 25px;color:#fff}.work-process{padding:85px 0;text-align:center}.process-item{padding:20px}.process-item .num{position:absolute;right:45px;top:5px;background:#e8c42a;color:#fff;border-radius:50%;width:32px;height:32px;line-height:32px;font-weight:800}.process-item img{height:64px;margin-bottom:20px}.process-item h4{font-size:20px;font-weight:800;color:#141414}.testimonial{background:#002e66 url('../images/quote.png') center/contain no-repeat;padding:80px 0;color:#fff}.testimonial h2{font-size:36px;color:#fff;font-weight:800}.test-card{background:rgba(255,255,255,.16);border-radius:12px;padding:28px;color:#fff;min-height:150px}.industries{padding:90px 0}.industry-card{position:relative;overflow:hidden;background:#eee}.industry-card img{width:100%;height:165px;object-fit:cover;filter:saturate(.7);opacity:.75}.site-footer-two{background:#002a5b;color:#fff}.site-footer-two__top{padding:70px 0}.site-footer-two__logo img{width:95px}.footer-widget-two__about-text{font-size:15px;color:#fff;max-width:280px}.footer-widget-two__title{font-size:28px;color:#e8c42a;font-weight:800;margin-bottom:25px}.footer-widget-two__service-list li{margin-bottom:13px}.footer-widget-two__service-list a{color:#fff}.footer-widget-two__contact-list li{display:flex;gap:16px;margin-bottom:24px;color:#fff}.footer-widget-two__contact-list .icon{width:36px;height:36px;border-radius:50%;background:#e8c42a;flex:0 0 36px;color:#002a5b;display:flex;align-items:center;justify-content:center}.footer-widget-two__contact-list a,.footer-widget-two__contact-list p{color:#fff;font-weight:700}.site-footer-two__bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;text-align:center}.site-footer-two__bottom-text{color:#fff;font-weight:700;margin:0}.site-footer-two__bottom img{width:55px;margin-left:8px}.xs-sidebar-group{position:fixed;inset:0;z-index:9999;pointer-events:none}.xs-overlay{position:absolute;inset:0;background:rgba(0,0,0,.65);opacity:0;visibility:hidden;transition:.25s}.xs-sidebar-widget{position:absolute;right:-430px;top:0;width:400px;max-width:92%;height:100%;background:#fff;padding:35px;transition:.3s;overflow:auto}.xs-sidebar-group.isActive{pointer-events:auto}.xs-sidebar-group.isActive .xs-overlay{opacity:1;visibility:visible}.xs-sidebar-group.isActive .xs-sidebar-widget{right:0}.close-side-widget{font-size:20px;font-weight:800;color:#111;float:right}.sidebar-info-contents .logo img{width:95px}.content-box h5,.contact-info h5{font-weight:800;color:#111;margin-top:25px}.list-style-one{list-style:none;padding:0}.list-style-one li{margin:14px 0;color:#333}.list-style-one .icon{color:#d2aa0f;margin-right:9px}.about-page-img{position:relative}.about-page-img img{width:100%;filter:grayscale(55%);opacity:.75}.about-page-img .yellow-frame{position:absolute;left:-18px;top:-38px;width:190px;height:250px;border:14px solid #e8c42a}.experience-box{background:#e8c42a;color:#fff;display:inline-block;padding:24px 52px;text-align:center;font-weight:800;margin-top:55px}.experience-box strong{font-size:42px;display:block}.two-feature{display:grid;grid-template-columns:1fr 1fr;gap:25px;margin:28px 0}.feature-box{background:#fff;padding:28px;box-shadow:0 8px 28px rgba(0,0,0,.05)}.feature-box h5{font-size:18px;font-weight:800;color:#111}.wide-dark{background:url('../images/about-page-img2.png') center/cover no-repeat;padding:90px 0;position:relative;color:#fff}.wide-dark:before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.55)}.wide-dark .container{position:relative}.wide-dark h2{font-size:44px;color:#fff;font-weight:800;max-width:760px}.director-card{background:#fff;box-shadow:0 4px 28px rgba(0,0,0,.12);padding:36px;border-radius:8px;margin-bottom:65px}.director-card h3{font-size:32px;font-weight:700;color:#111}.director-card img{background:#fff4bc;border-radius:6px;width:100%;max-height:260px;object-fit:contain}.certi-wrapper{overflow:hidden;border-radius:4px;max-width:315px}.certi-wrapper img{width:100%;height:auto}.certi-name{min-height:58px;justify-content:center}.certi-name h5{margin:0;color:#fff;font-size:20px}.project-detail{padding:80px 0 50px}.project-info-image img{height:520px;object-fit:cover}.project-detail-info h2{font-size:44px;color:#111;font-weight:900;margin-bottom:25px}.project-detail-list li{font-size:18px;letter-spacing:.5px;color:#00265a}.project-detail-list li:before{content:'▶';font-size:13px;color:#00265a;margin-right:10px}.project-detail-list span{color:#c89b00}.divider-pattern{border-bottom:1px dashed #aaa}.uses{padding:30px 0}.uses h3{font-size:42px;color:#111;font-weight:900;margin-bottom:15px}.feature-list .single-item{border:1px solid #ddd;padding:16px;text-align:center;margin-bottom:20px}.feature-list .title{font-size:14px;font-weight:800;text-transform:uppercase;color:#111;margin:0}.application-img{width:100%;height:520px;object-fit:cover}.why-choose-us-area{padding:70px 0}.single-choose-us-one .title{font-size:22px;font-weight:800;color:#111}.section-four{padding:60px 0}.service-box-img{width:100%;height:120px;object-fit:cover}.services-hov-box{text-align:center;padding:16px}.plumbing-repair{font-size:21px;color:#00459b}.Porttitor{font-size:14px}.infra-intro{padding:140px 0 60px;min-height:360px}.journey{padding:70px 0}.journey .step-num{font-size:80px;line-height:1;color:transparent;-webkit-text-stroke:2px #e8c42a;font-weight:400}.journey h4{font-size:24px;color:#111;font-weight:800}.quality-img-large{width:100%;height:450px;object-fit:cover}.quality-gallery img{width:100%;height:175px;object-fit:cover}.buy-card{margin-bottom:35px;border-radius:6px;overflow:hidden}.buy-card img{width:100%;height:260px;object-fit:cover}.buy-card h5{background:#e8c42a;color:#fff;text-align:center;padding:14px;margin:0;font-size:20px}.contact-details{padding:95px 0}.contact-details input,.contact-details textarea{height:58px;border:1px solid #d8dce3;border-radius:0;padding:15px}.contact-details textarea{height:auto}.contact-details__info{padding:0;margin:25px 0 0}.contact-details__info li{display:flex;gap:24px;margin-bottom:18px}.contact-details__info .icon{width:70px;height:70px;background:#e8c42a;flex:0 0 70px;display:flex;align-items:center;justify-content:center;color:#fff}.contact-details__info h6{font-size:17px;color:#111}.contact-details__info a,.contact-details__info p{font-size:20px;color:#6b6f7a}.text-section{font-size:16px;line-height:1.9}.white-gap{height:120px}@keyframes slideDown{from{transform:translateY(-100%)}to{transform:translateY(0)}}
@media(max-width:1199px){.main-menu__list>li>a{padding:38px 9px;font-size:13px}.main-header__logo img{width:80px}.nav-btn{width:68px;height:68px}.sec-title{font-size:36px}}
@media(max-width:991px){.main-header{position:relative;background:#001f43}.main-menu{display:none}.mobile-nav__btn{display:flex;flex-direction:column;gap:5px;margin-left:12px}.mobile-nav__btn span{width:28px;height:2px;background:#fff}.rts-banner-area{min-height:280px}.breadcrumb-area-inner .title{font-size:42px}.nav-area-navigation{bottom:-72px;padding:22px}.funfact-card{grid-template-columns:1fr 1fr;border-radius:25px}.project-info-image img,.application-img,.quality-img-large{height:auto}.two-feature{grid-template-columns:1fr}.wide-dark h2{font-size:34px}.contact-details__info a,.contact-details__info p{font-size:16px}}
@media(max-width:767px){.main-header__inner{min-height:80px}.main-header__logo img{width:70px}.nav-btn{width:58px;height:58px}.breadcrumb-area-inner .title{font-size:34px}.breadcrumb-area-inner .water-text{display:none}.sec-title{font-size:30px}.funfact-card{grid-template-columns:1fr}.about-two,.page-pad,.contact-details{padding:70px 0}.hero-two .carousel-item img{height:290px;object-fit:cover}.footer-widget-two__title{font-size:24px}.project-detail-info h2,.uses h3{font-size:32px}.buy-card img{height:220px}.contact-details__info .icon{width:55px;height:55px;flex-basis:55px}}


/* ===============================
   Kailash v11: real home banner slider + counter fix
   This slider does not depend on Bootstrap/Owl/React, so it works from file://, localhost and hosting.
   =============================== */
.ki-home-hero{
  position:relative;
  overflow:hidden;
  width:100%;
  background:#071525;
  line-height:0;
}
.ki-home-hero .ki-slide{
  position:absolute;
  inset:0;
  opacity:0;
  z-index:1;
  transition:opacity .85s ease-in-out;
  animation:kiHomeAutoFade 16s infinite;
}
.ki-home-hero .ki-slide:first-child{
  position:relative;
}
.ki-home-hero .ki-slide:nth-child(1){animation-delay:0s;}
.ki-home-hero .ki-slide:nth-child(2){animation-delay:4s;}
.ki-home-hero .ki-slide:nth-child(3){animation-delay:8s;}
.ki-home-hero .ki-slide:nth-child(4){animation-delay:12s;}
.ki-home-hero .ki-slide img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
@keyframes kiHomeAutoFade{
  0%{opacity:0;z-index:1;}
  4%{opacity:1;z-index:2;}
  24%{opacity:1;z-index:2;}
  29%{opacity:0;z-index:1;}
  100%{opacity:0;z-index:1;}
}
.ki-home-hero.js-active .ki-slide{
  animation:none;
  position:absolute;
}
.ki-home-hero.js-active .ki-slide:first-child{
  position:relative;
}
.ki-home-hero.js-active .ki-slide.is-active{
  opacity:1;
  z-index:2;
}
.ki-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(0,0,0,.35);
  color:#fff;
  z-index:6;
  line-height:42px;
  text-align:center;
  font-size:24px;
  cursor:pointer;
  opacity:0;
  transition:.25s;
}
.ki-home-hero:hover .ki-slider-arrow{opacity:1;}
.ki-slider-prev{left:22px;}
.ki-slider-next{right:22px;}
.ki-slider-arrow:hover{background:#e8c42a;color:#001f43;}
.ki-slider-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  z-index:7;
  line-height:1;
}
.ki-slider-dots button{
  width:8px;
  height:8px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.65);
  padding:0;
  cursor:pointer;
}
.ki-slider-dots button.active{background:#e8c42a;width:22px;border-radius:10px;}
.funfact-card .ki-counter{min-width:72px;}
@media(max-width:767px){
  .ki-home-hero .ki-slide img{height:290px;object-fit:cover;}
  .ki-slider-arrow{display:none;}
  .ki-slider-dots{bottom:9px;}
}

/* v12: Home Why Choose clickable tabs */
.why-home-tabs{padding:70px 0 40px;background:#fff;overflow:hidden;}
.why-home-tabs .about-image-thumbnail-3{min-height:500px;}
.why-home-tabs .about-image-thumbnail-3 .image-1{width:424px;max-width:82%;height:auto;object-fit:cover;position:relative;z-index:2;}
.why-home-tabs .about-image-thumbnail-3 .image-2{width:312px;max-width:64%;height:auto;z-index:1;}
.why-home-tabs .title-three-left .pre-title{display:block;}
.why-home-tabs .rts-tab-three-start{margin-top:6px;}
.why-home-tabs .rts-tab-three-start ul.nav{display:flex;align-items:center;flex-wrap:wrap;gap:20px;margin:0 0 0 0;padding:0;border:none;}
.why-home-tabs .rts-tab-three-start ul.nav li{margin:0;padding:0;list-style:none;}
.why-home-tabs .rts-tab-three-start .ki-why-tab-btn{background:#0c4da2!important;color:#fff!important;border:1px solid #f0f0f0!important;border-radius:0!important;font-weight:500;font-size:16px;line-height:17px;padding:12px 34px;box-shadow:none;min-width:142px;text-align:center;}
.why-home-tabs .rts-tab-three-start .ki-why-tab-btn.active,.why-home-tabs .rts-tab-three-start .ki-why-tab-btn[aria-selected="true"]{background:#eac337!important;color:#fff!important;}
.why-home-tabs .ki-why-panel{display:none;animation:kiFadeUp .35s ease;}
.why-home-tabs .ki-why-panel.active{display:block;}
.why-home-tabs .single-tab-content-three .disc{font-size:16px;line-height:30px;color:#5e6470;margin-bottom:20px;}
.why-home-tabs .single-tab-content-three .list-wrapper{display:flex;align-items:flex-start;margin-bottom:30px;gap:30px;}
.why-home-tabs .single-tab-content-three .list-wrapper .single{width:50%;margin:0;}
.why-home-tabs .single-tab-content-three .list-wrapper ul{margin:0!important;padding:0!important;list-style:none!important;}
.why-home-tabs .single-tab-content-three .list-wrapper li{display:flex;align-items:center;gap:10px;margin:0 0 14px 0;color:#5e6470;font-size:15px;line-height:1.4;}
.why-home-tabs .single-tab-content-three .why-choose-three__list__item__icon{width:34px;height:34px;border-radius:50%;background:#f5f2ed;color:#eac337;display:inline-flex;align-items:center;justify-content:center;flex:0 0 34px;font-size:13px;font-weight:700;margin:0;}
@keyframes kiFadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:991px){.why-home-tabs .about-image-thumbnail-3{margin-top:25px;margin-bottom:35px;min-height:360px}.why-home-tabs .about-image-thumbnail-3 .image-2{right:20px;top:-55px}.why-home-tabs .pl--60{padding-left:15px!important}.why-home-tabs .title-three-left .title{font-size:34px;line-height:42px}.why-home-tabs .title-three-left .bg-title{font-size:46px}.why-home-tabs .rts-tab-three-start .ki-why-tab-btn{min-width:auto;padding:12px 22px}}
@media(max-width:575px){.why-home-tabs .single-tab-content-three .list-wrapper{display:block}.why-home-tabs .single-tab-content-three .list-wrapper .single{width:100%}.why-home-tabs .rts-tab-three-start ul.nav{gap:10px}.why-home-tabs .rts-tab-three-start .ki-why-tab-btn{font-size:14px;padding:11px 16px}.why-home-tabs .about-image-thumbnail-3{min-height:300px}.why-home-tabs .about-image-thumbnail-3 .image-1{max-width:78%}.why-home-tabs .about-image-thumbnail-3 .image-2{max-width:58%;top:-35px}}


/* ===============================
   Kailash v13: moving marquee + static Swiper replacement
   =============================== */
.funfact-one{position:relative;z-index:4;margin-top:-65px;margin-bottom:0;padding:0;}
.funfact-one .container{position:relative;z-index:3;}
.funfact-one__list{box-shadow:0 10px 40px rgba(0,0,0,.08);}
.funfact-one__item__icon img{max-width:78px;height:auto;}
.funfact-one__item__count .ki-counter{font:inherit;color:inherit;}
.about-two__image__experiance .ki-counter{font:inherit;color:inherit;}

/* product section should retain dark background like original */
.portfolio-one.product-home{position:relative;overflow:hidden;padding:110px 0 75px;background:#111;z-index:1;margin-top:-45px;}
.portfolio-one.product-home .portfolio-one__bg{position:absolute;inset:0;background:url('../images/pro-bg.png') center/cover no-repeat;opacity:.34;z-index:-2;}
.portfolio-one.product-home::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.70);z-index:-1;}
.portfolio-one.product-home .title-area{position:relative;z-index:2;margin-bottom:35px;}
.portfolio-one.product-home .sec-title{color:#fff;}
.portfolio-one.product-home .team-card-two{height:100%;}
.portfolio-one.product-home .team-card-two__image img{height:360px;object-fit:cover;}

/* dependency-free carousel used in product, work, testimonial, industry sections */
.ki-auto-carousel{position:relative;width:100%;overflow:hidden;}
.ki-carousel-viewport{overflow:hidden;width:100%;}
.ki-carousel-track{display:flex;align-items:stretch;transition:transform .65s ease;will-change:transform;}
.ki-carousel-slide{flex:0 0 calc(100% / var(--ki-per-view,3));max-width:calc(100% / var(--ki-per-view,3));padding:0 15px;box-sizing:border-box;}
.ki-auto-carousel:hover .ki-carousel-track{transition-duration:.65s;}
.ki-carousel-dots{display:flex;justify-content:center;gap:8px;margin-top:22px;}
.ki-carousel-dots button{width:8px;height:8px;border:0;border-radius:50%;background:#d8d8d8;padding:0;cursor:pointer;}
.ki-carousel-dots button.active{width:22px;border-radius:30px;background:#eac337;}

/* original-style marquee */
.sliding-text{overflow:hidden;background:#fff;border-top:1px solid #ddd;border-bottom:1px solid #ddd;padding:33px 0;}
.sliding-text__inner{width:100%;overflow:hidden;}
.sliding-text__list{display:block;white-space:nowrap;overflow:hidden;margin:0;padding:0;}
.ki-marquee-wrap{display:inline-block;white-space:nowrap;animation:kiMarqueeMove 24s linear infinite;}
.ki-marquee-wrap:hover{animation-play-state:paused;}
.ki-marquee-row{display:inline-flex;align-items:center;white-space:nowrap;}
.ki-marquee-row li{display:inline-flex;align-items:center;float:none!important;margin:0 24px 0 0!important;list-style:none;}
.sliding-text__text{font-size:46px;line-height:1;font-weight:800;letter-spacing:9px;text-transform:uppercase;color:transparent!important;-webkit-text-stroke:1px #8d929d;text-decoration:none;}
.sliding-text__text:hover{color:#eac337!important;-webkit-text-stroke:1px #eac337;}
.sliding-text__icon{font-size:34px;color:transparent!important;-webkit-text-stroke:1px #eac337;text-decoration:none;}
@keyframes kiMarqueeMove{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* work carousel exact home style */
.work-section-one.work-process{padding:70px 0 75px;background:#fff;overflow:hidden;}
.work-section-one .title-area{margin-bottom:48px;}
.ki-work-carousel{overflow:visible;}
.work-box-one{text-align:center;position:relative;padding:5px 25px 0;min-height:260px;}
.work-icon-one{position:relative;height:100px;width:100px;background:#0c4da2;display:flex;align-items:center;justify-content:center;margin:0 auto 24px;}
.work-icon-one img{width:100%;height:100%;object-fit:contain;padding:18px;}
.work-icon-one span{position:absolute;right:-22px;top:-22px;width:58px;height:58px;border-radius:50%;background:#eac337;color:#fff;display:flex;align-items:center;justify-content:center;font-size:25px;font-weight:700;}
.work-box-one::after{content:"";position:absolute;top:50px;right:-70px;width:100px;height:2px;background:#eac337;}
.ki-work-carousel .ki-carousel-slide:nth-child(3n) .work-box-one::after{display:none;}
.work-box-one h4{font-size:27px;font-weight:500;margin-bottom:18px;color:#111;}
.work-box-one p{font-size:17px;line-height:30px;color:#676b75;}

/* testimonial section matching original cards */
.testimonial-area.tm-bg{position:relative;background:#002f64 url('../images/bg5.png') center/cover no-repeat;padding:84px 0 72px;overflow:hidden;z-index:1;}
.testimonial-area.tm-bg::before{content:"";position:absolute;inset:0;background:rgba(0,32,70,.72);z-index:-1;}
.testimonial-area .site-heading{padding-right:25px;}
.testimonial-area .sec-title{color:#fff;font-size:44px;line-height:1.18;}
.testimonial-area .site-heading p{font-size:18px;line-height:32px;margin-top:18px;}
.testimonial-item{position:relative;padding-bottom:35px;}
.testimonial-quote{position:relative;background:#fff;border-radius:80px 80px 0 0;padding:30px 45px 58px;min-height:240px;box-shadow:0 8px 22px rgba(0,0,0,.12);overflow:hidden;}
.testimonial-quote::before{content:"";position:absolute;left:0;right:0;bottom:0;height:5px;background:#0c4da2;}
.testimonial-quote-icon{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);opacity:.10;}
.testimonial-quote-icon img{width:150px;}
.testimonial-quote p{position:relative;z-index:2;font-size:18px;line-height:38px;color:#03404a;font-style:italic;margin:0;}
.testimonial-content{position:absolute;left:38px;right:20px;bottom:0;display:flex;align-items:center;gap:17px;}
.testimonial-author-img{width:70px;height:70px;border-radius:50%;background:#eac337;padding:6px;order:2;margin-left:auto;}
.testimonial-author-img img{width:100%;height:100%;object-fit:contain;border-radius:50%;background:#fff;}
.testimonial-author-info h4{font-size:24px;color:#00465d;margin:0;position:relative;padding-left:24px;}
.testimonial-author-info h4::before{content:"";position:absolute;left:0;top:50%;width:3px;height:28px;background:#00465d;transform:translateY(-50%);}

/* industry carousel cards same as original */
.service-three.industries{padding:86px 0 80px;background:#fff;overflow:hidden;}
.service-three .title-area{margin-bottom:40px;}
.ki-industry-carousel{overflow:visible;}
.service-card-two{position:relative;overflow:visible;}
.service-card-two__thumb{position:relative;overflow:hidden;}
.service-card-two__thumb__item{height:330px;overflow:hidden;}
.service-card-two__thumb__item img{width:100%;height:100%;object-fit:cover;display:block;}
.service-card-two__content{position:relative;margin:-35px 0 0 0;background:#fff;min-height:72px;display:flex;align-items:center;gap:16px;padding:0 16px 0 0;z-index:2;box-shadow:0 0 0 rgba(0,0,0,0);}
.service-card-two__icon{width:75px;height:72px;flex:0 0 75px;background:#0c4da2;display:flex;align-items:center;justify-content:center;}
.service-card-two__icon img{max-width:48px;max-height:48px;object-fit:contain;}
.service-card-two__title{margin:0;font-size:20px;font-weight:800;text-transform:uppercase;color:#111;}
.service-card-two__title a{color:#111;text-decoration:none;}
.service-card-two__thumb__link{position:absolute;right:18px;bottom:88px;width:44px;height:44px;border-radius:50%;background:#eac337;color:#fff;display:flex;align-items:center;justify-content:center;opacity:0;transform:translateY(10px);transition:.3s;}
.service-card-two:hover .service-card-two__thumb__link{opacity:1;transform:translateY(0);}

@media(max-width:991px){
  .funfact-one{margin-top:20px;}
  .portfolio-one.product-home{margin-top:0;padding:70px 0;}
  .portfolio-one.product-home .team-card-two__image img{height:300px;}
  .sliding-text__text{font-size:34px;letter-spacing:5px;}
  .work-box-one::after{display:none;}
  .testimonial-area .sec-title{font-size:34px;}
  .testimonial-quote{border-radius:45px 45px 0 0;}
}
@media(max-width:767px){
  .ki-carousel-slide{padding:0 10px;}
  .sliding-text{padding:25px 0;}
  .sliding-text__text{font-size:28px;letter-spacing:3px;}
  .service-card-two__thumb__item{height:260px;}
  .testimonial-quote{padding:28px 24px 60px;}
  .testimonial-quote p{font-size:16px;line-height:30px;}
}

/* ======================================================
   Kailash v14: restore original testimonial design + keep slider
   ====================================================== */
.testimonial-area.tm-bg{
  position:relative!important;
  background:#002452!important;
  background-image:none!important;
  padding:50px 0 40px 0!important;
  margin-top:20px!important;
  overflow:hidden!important;
  z-index:1!important;
}
.testimonial-area.tm-bg::before{
  content:""!important;
  position:absolute!important;
  width:100%!important;
  height:100%!important;
  left:0!important;
  top:0!important;
  background-image:url('../images/07.png')!important;
  background-repeat:no-repeat!important;
  background-size:cover!important;
  background-position:center!important;
  background-color:transparent!important;
  opacity:.10!important;
  z-index:-1!important;
}
.testimonial-area .row{align-items:center!important;}
.testimonial-area .site-heading{padding-right:22px!important;}
.testimonial-area .sec-title{
  color:#fff!important;
  font-size:44px!important;
  line-height:1.18!important;
  letter-spacing:0!important;
  margin-bottom:0!important;
}
.testimonial-area .site-heading p{
  color:#fff!important;
  font-size:17px!important;
  line-height:31px!important;
  margin-top:20px!important;
  margin-bottom:0!important;
}
.testimonial-area .sub-title{color:#eac337!important;}
.ki-testimonial-carousel{
  overflow:hidden!important;
  padding-top:0!important;
  padding-bottom:58px!important;
}
.ki-testimonial-carousel .ki-carousel-viewport{
  overflow:hidden!important;
  padding-top:0!important;
  padding-bottom:58px!important;
}
.ki-testimonial-carousel .ki-carousel-track{align-items:stretch!important;}
.ki-testimonial-carousel .ki-carousel-slide{
  padding:0 15px!important;
  box-sizing:border-box!important;
}
.ki-testimonial-carousel .ki-carousel-dots{display:none!important;}
.testimonial-item{
  position:relative!important;
  background:#fff!important;
  padding:15px 30px!important;
  border-bottom:5px solid #0c4da2!important;
  border-radius:50px 50px 0px 50px!important;
  margin-bottom:28px!important;
  min-height:246px!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.testimonial-quote{
  position:static!important;
  background:transparent!important;
  border-radius:0!important;
  padding:0!important;
  min-height:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.testimonial-quote::before{display:none!important;}
.testimonial-quote p{
  position:relative!important;
  color:#064e5a!important;
  font-size:16px!important;
  font-style:italic!important;
  font-weight:500!important;
  z-index:1!important;
  line-height:34px!important;
  margin:0!important;
}
.testimonial-content{
  position:relative!important;
  display:block!important;
  border-left:3px solid #064e5a!important;
  padding-left:15px!important;
  margin-top:15px!important;
  z-index:1!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
}
.testimonial-author-img{
  position:absolute!important;
  right:20px!important;
  bottom:-50px!important;
  width:70px!important;
  height:70px!important;
  border-radius:50px!important;
  border:4px solid #0c4da2!important;
  background:transparent!important;
  padding:0!important;
  order:initial!important;
  margin-left:0!important;
}
.testimonial-author-img img{
  border-radius:50%!important;
  border:4px solid #fff!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  background:#fff!important;
}
.testimonial-author-info h4{
  font-size:20px!important;
  color:#064e5a!important;
  margin-bottom:0!important;
  padding-left:0!important;
}
.testimonial-author-info h4::before{display:none!important;}
.testimonial-quote-icon{
  position:absolute!important;
  top:50%!important;
  left:50%!important;
  transform:translate(-50%,-50%)!important;
  opacity:.15!important;
  z-index:0!important;
}
.testimonial-quote-icon img{width:100%!important;height:100%!important;max-width:155px!important;}
@media(max-width:991px){
  .testimonial-area .sec-title{font-size:34px!important;line-height:1.25!important;}
  .testimonial-area .site-heading{margin-bottom:35px!important;}
}
@media(max-width:767px){
  .testimonial-item{padding:22px 22px!important;border-radius:40px 40px 0px 40px!important;}
  .testimonial-quote p{font-size:15px!important;line-height:29px!important;}
}

/* ======================================================
   Kailash v15: white sticky header + footer cleanup
   Fix: sticky header was turning dark navy and hiding text.
   ====================================================== */
@media (min-width: 992px){
  .main-header.sticky-header--cloned.active,
  .main-header--two.sticky-header--cloned.active{
    position:fixed!important;
    top:0!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    background:#ffffff!important;
    border-bottom:1px solid rgba(0,0,0,.08)!important;
    box-shadow:0 6px 28px rgba(0,0,0,.10)!important;
    z-index:9999!important;
    padding-top:0!important;
    padding-bottom:0!important;
    animation:slideDown .25s ease!important;
  }
  .main-header.sticky-header--cloned.active .main-header__inner,
  .main-header--two.sticky-header--cloned.active .main-header__inner{
    background:#ffffff!important;
    min-height:86px!important;
    padding:0 20px!important;
  }
  .main-header.sticky-header--cloned.active .main-menu__list > li > a,
  .main-header--two.sticky-header--cloned.active .main-menu__list > li > a{
    color:#101010!important;
    text-shadow:none!important;
  }
  .main-header.sticky-header--cloned.active .main-menu__list > li > a.active,
  .main-header.sticky-header--cloned.active .main-menu__list > li:hover > a,
  .main-header--two.sticky-header--cloned.active .main-menu__list > li > a.active,
  .main-header--two.sticky-header--cloned.active .main-menu__list > li:hover > a{
    color:#eac337!important;
  }
  .main-header.sticky-header--cloned.active .main-header__logo img,
  .main-header--two.sticky-header--cloned.active .main-header__logo img{
    width:88px!important;
    height:auto!important;
  }
  .main-header.sticky-header--cloned.active .nav-btn,
  .main-header--two.sticky-header--cloned.active .nav-btn{
    width:78px!important;
    height:78px!important;
    background:#eac337!important;
  }
}

/* Normal desktop header should stay clean and visible on light areas too */
.main-header .main-menu .main-menu__list > li > a{font-weight:800!important;}
.main-menu .sub-menu{z-index:10000!important;}

/* Mobile/tablet header: keep same clean white header instead of dark block */
@media (max-width:991px){
  .main-header,
  .main-header--two,
  .main-header.sticky-header--cloned.active{
    background:#ffffff!important;
    position:relative!important;
    border-bottom:1px solid rgba(0,0,0,.08)!important;
  }
  .main-header__inner{background:#ffffff!important;}
  .main-header__logo img{width:76px!important;}
  .mobile-nav__btn span{background:#111!important;}
  .main-header__right{background:#eac337!important;}
}

/* Home sections should not sit under the fixed header visually */
.work-section-one.work-process,
.testimonial-area.tm-bg,
.service-three.industries,
.site-footer-two{position:relative;z-index:1;}

/* Footer: same clean navy layout across all pages */
.site-footer-two{
  background:#002a5b!important;
  color:#ffffff!important;
  overflow:hidden!important;
  clear:both!important;
}
.site-footer-two__top{
  background:#002a5b!important;
  padding:64px 0 54px!important;
}
.site-footer-two__top-inner{width:100%!important;}
.site-footer-two__logo img,
.footer-widget-two__logo img{width:96px!important;height:auto!important;display:block!important;margin-bottom:24px!important;}
.footer-widget-two__about-text,
.footer-widget-two__service-list a,
.footer-widget-two__contact-list p,
.footer-widget-two__contact-list a{
  color:#ffffff!important;
  opacity:1!important;
  text-decoration:none!important;
}
.footer-widget-two__about-text{font-size:15px!important;line-height:28px!important;max-width:285px!important;margin:0!important;}
.footer-widget-two__title{
  color:#eac337!important;
  font-size:24px!important;
  line-height:1.2!important;
  font-weight:800!important;
  margin:0 0 26px!important;
}
.footer-widget-two__service-list{margin:0!important;padding:0!important;list-style:none!important;}
.footer-widget-two__service-list li{margin-bottom:13px!important;line-height:1.5!important;}
.footer-widget-two__service-list a{font-size:15px!important;font-weight:500!important;}
.footer-widget-two__service-list a:hover{color:#eac337!important;}
.footer-widget-two__contact-list{margin:0!important;padding:0!important;list-style:none!important;}
.footer-widget-two__contact-list li{display:flex!important;align-items:flex-start!important;gap:16px!important;margin-bottom:20px!important;}
.footer-widget-two__contact-list .icon{
  width:34px!important;height:34px!important;flex:0 0 34px!important;border-radius:50%!important;
  background:#eac337!important;color:#002a5b!important;display:flex!important;align-items:center!important;justify-content:center!important;
  margin-top:3px!important;
}
.footer-widget-two__contact-list .content{min-width:0!important;}
.footer-widget-two__contact-list p{font-size:15px!important;line-height:24px!important;font-weight:700!important;margin:0!important;}
.site-footer-two__bottom{
  background:#002a5b!important;
  border-top:1px solid rgba(255,255,255,.10)!important;
  padding:18px 0!important;
  text-align:center!important;
}
.site-footer-two__bottom-text{color:#fff!important;font-size:14px!important;font-weight:700!important;margin:0!important;}
.site-footer-two__bottom-text a{display:inline-flex!important;align-items:center!important;vertical-align:middle!important;margin-left:6px!important;}
.site-footer-two__bottom-text img{width:55px!important;height:auto!important;display:inline-block!important;}
@media(max-width:991px){
  .site-footer-two__top{padding:50px 0 28px!important;}
  .footer-widget-two__column{margin-bottom:28px!important;}
  .footer-widget-two__title{font-size:22px!important;margin-bottom:18px!important;}
}


/* -------------------------------------------------------
   Kailash v16: Home Green CTA section original design fix
   Scope: index.html .green-cta only
------------------------------------------------------- */
.home-green-fix-marker{display:none!important;}

/* Restore original React CTA-area design for the green sustainability section */
section.green-cta.cta-area,
.green-cta{
  position:relative!important;
  overflow:hidden!important;
  z-index:1!important;
  margin-top:30px!important;
  padding:60px 0!important;
  min-height:330px!important;
  display:flex!important;
  align-items:center!important;
  text-align:center!important;
  color:#ffffff!important;
  background-image:url('../images/01.png')!important;
  background-repeat:no-repeat!important;
  background-size:cover!important;
  background-position:center center!important;
  background-attachment:fixed!important;
}

section.green-cta.cta-area::before,
.green-cta::before{
  content:""!important;
  position:absolute!important;
  left:0!important;
  top:0!important;
  width:100%!important;
  height:100%!important;
  background:#065a3b!important;
  opacity:.85!important;
  z-index:-1!important;
}

section.green-cta.cta-area::after,
.green-cta::after{
  content:""!important;
  position:absolute!important;
  width:550px!important;
  height:550px!important;
  left:50%!important;
  top:-50px!important;
  transform:translateX(-50%)!important;
  background:#63c153!important;
  border-radius:50%!important;
  opacity:.20!important;
  z-index:-1!important;
  pointer-events:none!important;
}

.green-cta .container,
.green-cta .row,
.green-cta .cta-content{
  position:relative!important;
  z-index:2!important;
}

.green-cta .cta-content{
  text-align:center!important;
  max-width:780px!important;
  margin:0 auto!important;
}

.green-cta .cta-content h1,
.green-cta h1,
.green-cta h2{
  color:#ffffff!important;
  text-transform:capitalize!important;
  font-size:2.6rem!important;
  line-height:1.25!important;
  font-weight:700!important;
  letter-spacing:.6px!important;
  margin:0 0 12px!important;
}

.green-cta .cta-content p,
.green-cta p{
  color:#ffffff!important;
  font-size:16px!important;
  line-height:1.9!important;
  font-weight:500!important;
  max-width:720px!important;
  margin:0 auto 30px!important;
}

.green-cta .theme-btn,
.green-cta .rofiex-btn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#eac337!important;
  color:#ffffff!important;
  font-size:16px!important;
  line-height:1!important;
  padding:14px 28px!important;
  min-width:128px!important;
  min-height:46px!important;
  border-radius:10px!important;
  font-weight:600!important;
  text-transform:capitalize!important;
  text-decoration:none!important;
  border:none!important;
  box-shadow:0 0 40px 5px rgb(0 0 0 / 5%)!important;
  position:relative!important;
  overflow:hidden!important;
  z-index:2!important;
}

.green-cta .theme-btn:hover,
.green-cta .rofiex-btn:hover{
  background:#00459b!important;
  color:#ffffff!important;
}

.green-cta .theme-btn::after,
.green-cta .rofiex-btn::after{
  display:none!important;
  content:none!important;
}

@media(max-width:991px){
  section.green-cta.cta-area,
  .green-cta{
    background-attachment:scroll!important;
    min-height:300px!important;
    padding:55px 15px!important;
  }
  .green-cta .cta-content h1,
  .green-cta h1,
  .green-cta h2{
    font-size:2rem!important;
  }
  .green-cta .cta-content p,
  .green-cta p{
    font-size:15px!important;
    line-height:1.75!important;
  }
}

@media(max-width:575px){
  .green-cta .cta-content h1,
  .green-cta h1,
  .green-cta h2{
    font-size:1.65rem!important;
  }
  .green-cta .theme-btn,
  .green-cta .rofiex-btn{
    font-size:14px!important;
    padding:13px 24px!important;
  }
}
